diff options
author | Matthias Hentges <oe@hentges.net> | 2006-10-29 12:18:17 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2006-10-29 12:18:17 +0000 |
commit | 64f3604bee14c5ea9bb877e89667f92bafd2b9da (patch) | |
tree | a9576e2a75d56a7efd5aaae2137d7dcfeacb9a7f /packages/altboot/files | |
parent | f57b1caaca53da39b519c31db80e74dc19945394 (diff) |
altboot: Update to -wip-20061029
- Added a work-around for the broken OUT_TTY assignment on Collie
Diffstat (limited to 'packages/altboot/files')
-rw-r--r-- | packages/altboot/files/init.altboot | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/packages/altboot/files/init.altboot b/packages/altboot/files/init.altboot index dc3ff07ad8..b872af2d20 100644 --- a/packages/altboot/files/init.altboot +++ b/packages/altboot/files/init.altboot @@ -6,7 +6,7 @@ # test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!" - + CURRENT_ENV="`set`" VERSION="DEVELOPER SNAPSHOT" @@ -17,8 +17,21 @@ REAL_INIT="/sbin/init.sysvinit" INIT_RUNLEVEL="`cat /etc/inittab | sed -n "/^id\:/s/id\:\([0-9]\)\:.*$/\1/p"`" test -z "$INIT_RUNLEVEL" && INIT_RUNLEVEL=5 +# If this step fails the results are fatal. Seen on Collie / kernel 2.4 (where else...) OUT_TTY="`tty`" ; test -z "$OUT_TTY" && OUT_TTY="/dev/tty1" +if test -z "$OUT_TTY" +then + OUT_TTY="/dev/tty1" + echo "WARNING: Assgnment of OUT_TTY failed!" > "$OUT_TTY" +fi + +if ( echo "$OUT_TTY" | grep -q "not" ) +then + OUT_TTY="/dev/tty1" + echo "WARNING: Assignment of OUT_TTY failed (2)!" > "$OUT_TTY" +fi + case "`uname -r`" in 2.6*) ALTBOOT_CFG_FILE="/etc/altboot-2.6.cfg";; 2.4*) ALTBOOT_CFG_FILE="/etc/altboot-2.4.cfg";; @@ -34,6 +47,8 @@ then rm "${ALTBOOT_CFG_FILE}.next-reboot" fi +test "$ENABLE_DEBUGGING" = "yes" && ENABLE_DEBUG="yes" + C_RED="\033[31m" C_YELLOW="\033[33m" C_BLUE="\033[34m" @@ -167,9 +182,7 @@ show_sub_menu() { #echo "[$d_entries]" echo -e "\naltboot v$VERSION: $dirname menu\n" - - #debug_echo "show_sub_menu(): ping" - + for d_entry in $d_entries do d_entry_number="`echo "$d_entry"| sed -n "s/\(.*\)\#\#\(.*\)\#\#\#/\1/p"`" @@ -416,7 +429,7 @@ else exec $REAL_INIT $INIT_RUNLEVEL exit 0 fi - + # Execute scripts in /etc/altboot.rc before doing anything else. # Required in special situations, like booting spitz RC_FILES=`ls /etc/altboot.rc | grep \.sh$` |