diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-07-14 12:56:42 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2013-07-14 12:56:42 +0000 |
commit | e800436de35501dca50f1f086594197a55596c16 (patch) | |
tree | 243adc5fc84c18e68fe63790314a27c6235e1317 | |
parent | 9a5a262324ab55758ae0e55482563e97cbcbffab (diff) | |
download | upstream-e800436de35501dca50f1f086594197a55596c16.tar.gz upstream-e800436de35501dca50f1f086594197a55596c16.tar.bz2 upstream-e800436de35501dca50f1f086594197a55596c16.zip |
brcm47xx: do not change nvram without user interaction
SVN-Revision: 37281
-rw-r--r-- | target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm | 14 |
1 files changed, 0 insertions, 14 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 deleted file mode 100644 index 001f5f4d3f..0000000000 --- a/target/linux/brcm47xx/base-files/lib/preinit/20_failsafe_set_boot_wait_brcm +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -. /lib/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 |