diff options
author | John Crispin <blogic@openwrt.org> | 2014-07-01 10:26:14 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-07-01 10:26:14 +0000 |
commit | b174e169b7061ba7a4fc5000127351d4ae5a7ed2 (patch) | |
tree | b0e5550d7ea0876967783c14e61a5e2f3dbe8d60 /package/base-files/files | |
parent | 43372da18a3a46e7041a2f9ccfd8629bd4af3413 (diff) | |
download | upstream-b174e169b7061ba7a4fc5000127351d4ae5a7ed2.tar.gz upstream-b174e169b7061ba7a4fc5000127351d4ae5a7ed2.tar.bz2 upstream-b174e169b7061ba7a4fc5000127351d4ae5a7ed2.zip |
base-files: fix ramfs / nand upgrade
/lib/{imx6,lantiq,...}.sh are needed in the ramfs for sysupgrade to work.
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41440 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files')
-rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index b641f55156..6f1880fba6 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -74,7 +74,7 @@ run_ramfs() { # <command> [...] for file in $RAMFS_COPY_BIN; do install_bin ${file//:/ } done - install_file /etc/resolv.conf /lib/functions.sh /lib/functions/*.sh /lib/upgrade/*.sh $RAMFS_COPY_DATA + install_file /etc/resolv.conf /lib/*.sh /lib/functions/*.sh /lib/upgrade/*.sh $RAMFS_COPY_DATA [ -L "/lib64" ] && ln -s /lib $RAM_ROOT/lib64 |