From 8a5f66f65a6414fcf0077aa4ecf60f1a8050dd0b Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Wed, 24 Dec 2008 10:19:12 -0600 Subject: Revert to just running /bin/bash on /dev/console for serial. We still start getty on tty2-6 --- netboot/linuxrc.x | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'netboot') diff --git a/netboot/linuxrc.x b/netboot/linuxrc.x index 674cde3..8586ff6 100755 --- a/netboot/linuxrc.x +++ b/netboot/linuxrc.x @@ -307,8 +307,13 @@ LaunchShell() { getty -n -l /bin/ashlogin 38400 tty${i} & done - # We run the getty for tty1 in the foreground so our pid 1 doesn't end - getty -n -l /bin/ashlogin 38400 tty1 +# # We run the getty for tty1 in the foreground so our pid 1 doesn't end +# getty -n -l /bin/ashlogin 38400 tty1 + + # We were running the above code, but that doesn't work well on serial. Until + # we can autodetect a serial console and start a getty there, we'll just run + # ash on /dev/console + /bin/ash } #//-------------------------------------------------------------------------------- -- cgit v1.2.3-65-gdbad