Root/target/linux/x86/base-files/lib/preinit/45_failsafe_x86

1#!/bin/sh
2# Copyright (C) 2006-2010 OpenWrt.org
3# Copyright (C) 2010 Vertical Communications
4
5failsafe_wait() {
6    FAILSAFE=
7    grep -q 'failsafe=' /proc/cmdline && FAILSAFE=true && export FAILSAFE
8    if [ "$FAILSAFE" != "true" ]; then
9        preinit_net_echo "Please press button now to enter failsafe"
10        fs_wait_for_key f 'to enter failsafe mode' $fs_failsafe_wait_timeout && FAILSAFE=true && export FAILSAFE
11    fi
12}
13
14

Archive Download this file



interactive