331892f85f
This drops the shebang from another bunch of files in various /lib folders, as these are sourced and the shebang is useless. Fix execute bit in one case, too. This should cover almost all trivial cases now, i.e. where /lib is actually used for library files. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
17 lines
370 B
Plaintext
17 lines
370 B
Plaintext
# Copyright (C) 2006-2010 OpenWrt.org
|
|
# Copyright (C) 2010 Vertical Communications
|
|
|
|
run_failsafe_hook() {
|
|
[ "$pi_preinit_no_failsafe" = "y" ] && return
|
|
if [ "$FAILSAFE" = "true" ]; then
|
|
lock /tmp/.failsafe
|
|
boot_run_hook failsafe
|
|
while [ ! -e /tmp/sysupgrade ]; do
|
|
lock -w /tmp/.failsafe
|
|
done
|
|
exit
|
|
fi
|
|
}
|
|
|
|
boot_hook_add preinit_main run_failsafe_hook
|