1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 21:58:02 +03:00
openwrt-xburst/target/linux/x86/base-files/lib/preinit/45_failsafe_x86
jow 52cf5276c2 [x86] base-files: remove redundant "Press " when writing enter failsafe message
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20393 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-03-23 22:57:16 +00:00

14 lines
431 B
Bash

#!/bin/sh
# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2010 Vertical Communications
failsafe_wait() {
FAILSAFE=
grep -q 'failsafe=' /proc/cmdline && FAILSAFE=true && export FAILSAFE
if [ "$FAILSAFE" != "true" ]; then
preinit_net_echo "Please press button now to enter failsafe"
fs_wait_for_key f 'to enter failsafe mode' $fs_failsafe_wait_timeout && FAILSAFE=true && export FAILSAFE
fi
}