diff --git a/etc/rc.syscons b/etc/rc.syscons index 3a6ed8019cd..6798b29c4b6 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