From 38153ff6cc71ed5d0010869a68e88477d7ebb4e9 Mon Sep 17 00:00:00 2001 From: Tiago Gomes Date: Fri, 10 May 2013 09:08:59 +0000 Subject: Rename the drop-config-files extension to add-config-files --- morphlib/exts/add-config-files.configure | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 morphlib/exts/add-config-files.configure (limited to 'morphlib/exts/add-config-files.configure') diff --git a/morphlib/exts/add-config-files.configure b/morphlib/exts/add-config-files.configure new file mode 100755 index 00000000..0094cf6b --- /dev/null +++ b/morphlib/exts/add-config-files.configure @@ -0,0 +1,27 @@ +#!/bin/sh +# Copyright (C) 2013 Codethink Limited +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + +# Copy all files located in $SRC_CONFIG_DIR to the image /etc. + + +set -e + +if [ "x${SRC_CONFIG_DIR}" != x ] +then + cp -r "$SRC_CONFIG_DIR"/* "$1/etc/" +fi + -- cgit v1.2.1