diff options
author | Matthias Hentges <oe@hentges.net> | 2007-03-27 22:22:45 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2007-03-27 22:22:45 +0000 |
commit | e55d052b8fe7279f2fc23944fd5dd75e743d1a4b (patch) | |
tree | b84cfe224db5d5956437b9efcd73271d60961174 /packages/altboot/files/altboot-menu/Advanced/55-bin-sh | |
parent | 1944b83357f5afec7e0560124ddfcf81b8fc07a5 (diff) |
altboot: Update to latest version
Diffstat (limited to 'packages/altboot/files/altboot-menu/Advanced/55-bin-sh')
-rw-r--r-- | packages/altboot/files/altboot-menu/Advanced/55-bin-sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh index 6c9aef3f3e..e4fe99ebae 100644 --- a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh +++ b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh @@ -7,7 +7,7 @@ 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/tty0 + test "$ASK_PW_ON_BOOT" != "yes" && verify_master_pw >/dev/$OUT_TTY # Mount /proc, etc init_rootfs @@ -15,7 +15,7 @@ run_module() { echo -e "\nBoot system with 'exec /sbin/init 5'\n" while true do - exec $SH_SHELL </dev/tty0 >/dev/tty0 2>&1 + exec $SH_SHELL </dev/$OUT_TTY >/dev/$OUT_TTY 2>&1 echo "WARNING: Shell was killed!" done } |