diff options
| author | John Crispin | 2014-09-16 18:35:05 +0000 |
|---|---|---|
| committer | John Crispin | 2014-09-16 18:35:05 +0000 |
| commit | ce4efde2da4a05c58b0b809efdac8827f4e6dacd (patch) | |
| tree | e2b4d26625ce996cdfef48e1d9f4c777d7b3dfcf | |
| parent | 3702f278304434a0896d04e634bc163d8e842624 (diff) | |
| download | archive-ce4efde2da4a05c58b0b809efdac8827f4e6dacd.tar.gz | |
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>
Backport of r42575
SVN-Revision: 42580
| -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 |