From 8cc35dc1822efd83d38472b1cd3bc78fe889565d Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 26 Jun 2011 20:04:44 -0400 Subject: install/base: use private API call to add config We can't let add_file get its hands on the config file, because we need to be sure that an absolute path is honored. As a side effect, ensure that $BASEDIR is appended to the config file during preset processing. Thanks-to: Gerardo Exequiel Pozzi Signed-off-by: Dave Reisner --- install/base | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install/base b/install/base index d5fcef7..446167c 100644 --- a/install/base +++ b/install/base @@ -11,8 +11,10 @@ build() { add_file "/lib/initcpio/init_functions" "/init_functions" add_file "/lib/initcpio/init" "/init" - add_file "$CONFIG" "/config" add_file "/etc/modprobe.d/usb-load-ehci-first.conf" + + # private API call is required here + _add_file "/config" "$CONFIG" 644 } help() { -- cgit v1.2.3-24-g4f1b