From a01296978c4bac0e78281b2889451de806ff5009 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 8 Jul 2002 04:03:21 +0000 Subject: GRRR! rc.* cannot do an "exit 0" or it aborts the entire /etc/rc process. We do a '. /etc/rc.syscons' - not run it in a seperate shell. --- etc/rc.syscons | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'etc') diff --git a/etc/rc.syscons b/etc/rc.syscons index 3a6ed80..6798b29 100644 --- a/etc/rc.syscons +++ b/etc/rc.syscons @@ -35,9 +35,7 @@ viddev=/dev/ttyv0 # Handle diskless boots, and other situations where syscons is not present # -if [ ! -c "${kbddev}" ]; then - exit 0 -fi +if [ -c "${kbddev}" ]; then echo -n 'Configuring syscons:' @@ -196,3 +194,4 @@ if [ -n "${allscreens_kbdflags}" ]; then fi echo '.' +fi -- cgit v1.1