diff options
author | John Crispin <john@openwrt.org> | 2014-09-16 14:53:06 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-09-16 14:53:06 +0000 |
commit | 944820584a634406a4dfb379766b6493d8d87d00 (patch) | |
tree | 0625994def18dc0ba92c3c476a6f3f6a4ddfaa3f /target | |
parent | 3dd93e8336995450f57ddf818f4d4a2235cbd862 (diff) | |
download | upstream-944820584a634406a4dfb379766b6493d8d87d00.tar.gz upstream-944820584a634406a4dfb379766b6493d8d87d00.tar.bz2 upstream-944820584a634406a4dfb379766b6493d8d87d00.zip |
Lantiq: fix build warning from dsl_fs script
fix inclusion of functions.sh in dsl_fs init script
without this, the following error is seen during build:
./etc/init.d/dsl_fs: line 4: /lib/functions.sh: No such file or directory
Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
SVN-Revision: 42575
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/lantiq/base-files/etc/init.d/dsl_fs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/lantiq/base-files/etc/init.d/dsl_fs b/target/linux/lantiq/base-files/etc/init.d/dsl_fs index 09c8a4afa2..ccba4ae843 100755 --- a/target/linux/lantiq/base-files/etc/init.d/dsl_fs +++ b/target/linux/lantiq/base-files/etc/init.d/dsl_fs @@ -1,7 +1,7 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2014 OpenWrt.org -. /lib/functions.sh +. $IPKG_INSTROOT/lib/functions.sh START=30 |