Root/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm

1#!/bin/sh
2
3. /etc/functions.sh
4
5set_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
14boot_hook_add failsafe set_boot_wait
15

Archive Download this file



interactive