mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
08d6c46194
commit
c00f7bc28b
1 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue