From: Jo-Philipp Wich Date: Sat, 9 May 2009 01:54:09 +0000 (+0000) Subject: base-files: show reboot notification is sysupgrade X-Git-Tag: reboot~23649 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=d8aee6e471fc0e19ba19fa20c3eb2765622d5e66;p=openwrt%2Fstaging%2Fblogic.git base-files: show reboot notification is sysupgrade SVN-Revision: 15730 --- diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 7739275becc0..361c73a5ee17 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -165,5 +165,8 @@ do_upgrade() { } v "Upgrade completed" [ -n "$DELAY" ] && sleep "$DELAY" - ask_bool 1 "Reboot" && reboot + ask_bool 1 "Reboot" && { + v "Rebooting system..." + reboot + } }