aboutsummaryrefslogtreecommitdiffstats
path: root/packages/altboot/files/nslu2le/altboot-menu/55-bin-sh
diff options
context:
space:
mode:
Diffstat (limited to 'packages/altboot/files/nslu2le/altboot-menu/55-bin-sh')
-rw-r--r--packages/altboot/files/nslu2le/altboot-menu/55-bin-sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/altboot/files/nslu2le/altboot-menu/55-bin-sh b/packages/altboot/files/nslu2le/altboot-menu/55-bin-sh
deleted file mode 100644
index 1c3fccd9d9..0000000000
--- a/packages/altboot/files/nslu2le/altboot-menu/55-bin-sh
+++ /dev/null
@@ -1,27 +0,0 @@
-# !/bin/sh
-M_TITLE="init=/bin/sh"
-
-test "$DISABLE_BINSH_BOOT" = yes && exit 0
-
-run_module() {
-
- test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
-
- test "$ASK_PW_ON_BOOT" != "yes" && verify_master_pw >$OUT_TTY
-
- # Mount /proc, etc
- init_rootfs
-
- echo -e "\nBoot system with 'exec /sbin/init 5'\n"
- while true
- do
- exec $SH_SHELL <$OUT_TTY >$OUT_TTY 2>&1
- echo "WARNING: Shell was killed!"
- done
-}
-
-case "$1" in
-title) echo "$M_TITLE";;
-run) run_module;;
-esac
-