From aacfad8da27cf275b9c11d7220f05d21a28d55ad 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 --- add-config-files.configure | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 add-config-files.configure (limited to 'add-config-files.configure') diff --git a/add-config-files.configure b/add-config-files.configure new file mode 100755 index 00000000..0094cf6b --- /dev/null +++ b/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 From ed741d8d090086e2380f7b9d68ddc3bd122acb9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Fri, 13 Mar 2015 18:18:55 +0000 Subject: Use the modern way of the GPL copyright header: URL instead real address Change-Id: I992dc0c1d40f563ade56a833162d409b02be90a0 --- add-config-files.configure | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'add-config-files.configure') diff --git a/add-config-files.configure b/add-config-files.configure index 0094cf6b..2cf96fd1 100755 --- a/add-config-files.configure +++ b/add-config-files.configure @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2013 Codethink Limited +# Copyright (C) 2013,2015 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 @@ -11,8 +11,7 @@ # 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. +# with this program. If not, see . # Copy all files located in $SRC_CONFIG_DIR to the image /etc. -- cgit v1.2.1