diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-18 17:53:17 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-18 17:53:17 +0000 |
commit | 3027ba96915703e0bd60b59a2eb3dcabcc3c7351 (patch) | |
tree | 06409af8ee0e0abc3129bb767f1815f4b75988f3 /target/linux/pxcab/base-files/lib | |
parent | 07a459539ad908b8dd93e4dc466c604cde32cebd (diff) |
pxcab: R.I.P.
It is broken and it is not maintained by anyone since long time.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34764 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/pxcab/base-files/lib')
-rw-r--r-- | target/linux/pxcab/base-files/lib/preinit/15_essential_fs_pxcab | 8 | ||||
-rw-r--r-- | target/linux/pxcab/base-files/lib/preinit/45_failsafe_pxcab | 14 |
2 files changed, 0 insertions, 22 deletions
diff --git a/target/linux/pxcab/base-files/lib/preinit/15_essential_fs_pxcab b/target/linux/pxcab/base-files/lib/preinit/15_essential_fs_pxcab deleted file mode 100644 index 2c607e260..000000000 --- a/target/linux/pxcab/base-files/lib/preinit/15_essential_fs_pxcab +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -#!/bin/sh - -do_mount_procfs() { - mount -t proc none /proc -} - diff --git a/target/linux/pxcab/base-files/lib/preinit/45_failsafe_pxcab b/target/linux/pxcab/base-files/lib/preinit/45_failsafe_pxcab deleted file mode 100644 index dd7330d5d..000000000 --- a/target/linux/pxcab/base-files/lib/preinit/45_failsafe_pxcab +++ /dev/null @@ -1,14 +0,0 @@ -#!/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" - echo -n "Press " - fs_wait_for_key f 'to enter failsafe mode' $fs_failsafe_wait_timeout && FAILSAFE=true && export FAILSAFE - fi -} - |