diff options
author | peter <peter@FreeBSD.org> | 2002-07-08 04:03:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-07-08 04:03:21 +0000 |
commit | a01296978c4bac0e78281b2889451de806ff5009 (patch) | |
tree | 742110790af49289b69c7a8537d5458c21347d3f /etc | |
parent | 87f0fb50f1b92497f8e941b6efcf33ed6432f4d0 (diff) | |
download | FreeBSD-src-a01296978c4bac0e78281b2889451de806ff5009.zip FreeBSD-src-a01296978c4bac0e78281b2889451de806ff5009.tar.gz |
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.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.syscons | 5 |
1 files changed, 2 insertions, 3 deletions
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 |