diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-03-08 00:21:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-03-08 00:21:25 +0000 |
commit | 8a6acee2e2c469eb4db82e1b96d79b63c4b07658 (patch) | |
tree | e82a543e0061ad9d6ed238e6f5bfa70e93e328dc /package/base-files/files/lib | |
parent | 5d57dbaebac08368eb84f3ece9a3ce845d86bdfd (diff) | |
download | mtk-20170518-8a6acee2e2c469eb4db82e1b96d79b63c4b07658.zip mtk-20170518-8a6acee2e2c469eb4db82e1b96d79b63c4b07658.tar.gz mtk-20170518-8a6acee2e2c469eb4db82e1b96d79b63c4b07658.tar.bz2 |
sysupgrade: install /bin/sleep into ramdisk too and add completition notice (#4747)
SVN-Revision: 14784
Diffstat (limited to 'package/base-files/files/lib')
-rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index cf8977a..d4fb04b 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -45,7 +45,7 @@ pivot() { # <new_root> <old_root> } run_ramfs() { # <command> [...] - install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump + install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump /bin/sleep install_bin /sbin/mtd for file in $RAMFS_COPY_BIN; do install_bin $file @@ -160,6 +160,7 @@ do_upgrade() { jffs2_copy_config fi } + v "Upgrade completed" [ -n "$DELAY" ] && sleep "$DELAY" ask_bool 1 "Reboot" && reboot } |