da721b84841a37b32a643ef298d38c6dcfdab72a
[openwrt-10.03/.git] / target / linux / brcm-2.4 / base-files / lib / preinit / 20_failsafe_set_boot_wait_brcm-2.4
1 #!/bin/sh
2
3 . /etc/functions.sh
4
5 set_boot_wait() {
6         [ -x "/usr/sbin/nvram" ] && {
7                 [ "$(nvram get boot_wait)" != "on" ] && {
8                         nvram set boot_wait=on
9                         nvram commit
10                 }
11         }
12 }
13
14 boot_hook_add failsafe set_boot_wait