mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Use more thorough redirection to make the impact of allscreens_flags
more comprehensive. Previously, at least colour changes were not applied to all virtual consoles. PR: 15066 Reported by: Andy Farkas <andyf@speednet.com.au> Submitted by: yokota
This commit is contained in:
parent
722636354c
commit
faf052a79e
2 changed files with 2 additions and 2 deletions
|
|
@ -204,7 +204,7 @@ esac
|
|||
if [ -n "${allscreens_flags}" ]; then
|
||||
echo -n ' allscreens'
|
||||
for ttyv in /dev/ttyv*; do
|
||||
vidcontrol < ${ttyv} ${allscreens_flags}
|
||||
vidcontrol ${allscreens_flags} < ${ttyv} > ${ttyv} 2>&1
|
||||
done
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ esac
|
|||
if [ -n "${allscreens_flags}" ]; then
|
||||
echo -n ' allscreens'
|
||||
for ttyv in /dev/ttyv*; do
|
||||
vidcontrol < ${ttyv} ${allscreens_flags}
|
||||
vidcontrol ${allscreens_flags} < ${ttyv} > ${ttyv} 2>&1
|
||||
done
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue