brcm47xx: improve suppressing printing if a module was found in preinit function.
[openwrt.git] / target / linux / brcm47xx / base-files / lib / preinit / 20_failsafe_set_boot_wait_brcm
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