Do not use deprecated path to functions.sh (/etc/functions.sh -> /lib/functions.sh)
[openwrt/staging/dedeckeh.git] / target / linux / brcm47xx / base-files / lib / preinit / 20_failsafe_set_boot_wait_brcm
1 #!/bin/sh
2
3 . /lib/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