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.
This commit is contained in:
Peter Wemm 2002-07-08 04:03:21 +00:00
parent 08d6c46194
commit c00f7bc28b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99570

View File

@ -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