aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-06-26 20:41:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-06-26 20:41:49 +0000
commit812f02632308229c2ed9ee56bc11adba2e3c365a (patch)
tree379da06c21f4742ad1f7bb84d24fa7960188024d /target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm
parent519b6a2f4c652a59df4fd0dacab6875976dc75bc (diff)
downloadupstream-812f02632308229c2ed9ee56bc11adba2e3c365a.tar.gz
upstream-812f02632308229c2ed9ee56bc11adba2e3c365a.tar.bz2
upstream-812f02632308229c2ed9ee56bc11adba2e3c365a.zip
add back the base-files/image code from brcm-2.4 to brcm47xx
SVN-Revision: 21945
Diffstat (limited to 'target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm')
-rw-r--r--target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm b/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm
new file mode 100644
index 0000000000..da721b8484
--- /dev/null
+++ b/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+. /etc/functions.sh
+
+set_boot_wait() {
+ [ -x "/usr/sbin/nvram" ] && {
+ [ "$(nvram get boot_wait)" != "on" ] && {
+ nvram set boot_wait=on
+ nvram commit
+ }
+ }
+}
+
+boot_hook_add failsafe set_boot_wait