From: Jo-Philipp Wich Date: Sat, 9 May 2009 01:54:09 +0000 (+0000) Subject: [package] base-files: show reboot notification is sysupgrade X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=f70f5517d33dfb062316fa6bfb528b950c90017c [package] 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 7739275bec..361c73a5ee 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 + } }