summaryrefslogtreecommitdiff
path: root/packages/altboot/files/altboot-menu/Advanced/55-bin-sh
blob: e4fe99ebaea755fa0a99ad8413f29c0e82bf2fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# !/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 >/dev/$OUT_TTY
	
	# Mount /proc, etc
	init_rootfs
	
	echo -e "\nBoot system with 'exec /sbin/init 5'\n"
	while true
	do
		exec $SH_SHELL </dev/$OUT_TTY >/dev/$OUT_TTY 2>&1
		echo "WARNING: Shell was killed!"
	done
}

case "$1" in
title)	echo "$M_TITLE";;
run)	run_module;;
esac