[brcm63xx] fix ethernet driver removal
[openwrt.git] / package / base-files / files / lib / upgrade / common.sh
index 7739275..2750018 100644 (file)
@@ -107,7 +107,7 @@ get_image() {
        local from="$1"
        local conc="cat"
 
-       [ $GZIPED -eq 1 ] && conc="zcat"
+       [ "$GZIPED" -eq 1 ] && conc="zcat"
 
        case "$from" in
                http://*|ftp://*) wget -O- -q "$from" | "$conc";;
@@ -165,5 +165,9 @@ do_upgrade() {
        }
        v "Upgrade completed"
        [ -n "$DELAY" ] && sleep "$DELAY"
-       ask_bool 1 "Reboot" && reboot
+       ask_bool 1 "Reboot" && {
+               v "Rebooting system..."
+               echo b 2>/dev/null >/proc/sysrq-trigger
+               reboot
+       }
 }
This page took 0.021737 seconds and 4 git commands to generate.