diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-12-18 17:53:17 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-12-18 17:53:17 +0000 |
commit | 6f794eeedb213b044da00ca89b61e6b6eca24f62 (patch) | |
tree | 927604fb4af5e5bb1d6e07967aaf425c408a3a05 /target/linux/pxcab/base-files | |
parent | 029553b69856be947b307efbe6179c75530ec3b0 (diff) | |
download | upstream-6f794eeedb213b044da00ca89b61e6b6eca24f62.tar.gz upstream-6f794eeedb213b044da00ca89b61e6b6eca24f62.tar.bz2 upstream-6f794eeedb213b044da00ca89b61e6b6eca24f62.zip |
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>
SVN-Revision: 34764
Diffstat (limited to 'target/linux/pxcab/base-files')
-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 2c607e2608..0000000000 --- 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 dd7330d5d7..0000000000 --- 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 -} - |