add preinit modularization work by Daniel Dickinson (cshore)

SVN-Revision: 19331
This commit is contained in:
Felix Fietkau
2010-01-25 17:11:17 +00:00
parent 35170c4892
commit 56bc02a305
79 changed files with 1449 additions and 438 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2010 Vertical Communications
do_mount_procfs() {
mount -t proc none /proc
}

View File

@@ -0,0 +1,14 @@
#!/bin/sh
# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2010 Vertical Communications
failsafe_wait() {
FAILSAFE=
grep 'failsafe=' /proc/cmdline > /dev/null && FAILSAFE=true && export FAILSAFE
if [ "$FAILSAFE" != "true" ]; then
preinit_net_echo "Please press button now to enter failsafe"
echo -n "Press CTRL-C or "
fs_wait_for_key f 'to enter failsafe mode' $fs_failsafe_wait_timeout && FAILSAFE=true && export FAILSAFE
fi
}