Document syscons MODE and allow to run on all terminals

This commit is contained in:
Roy Marples
2007-11-20 15:49:04 +00:00
parent 5884660582
commit 739d51c349
3 changed files with 10 additions and 5 deletions

View File

@@ -30,13 +30,14 @@ depend() {
start() {
if [ -n "${MODE}" ]; then
ebegin "Setting mode to ${MODE}"
vidcontrol "${MODE}"
local tty=
for tty in /dev/tty*; do
[ -e "${tty}" ] || continue
vidcontrol "${MODE}" <"${tty}" >"${tty}" 2>&1
done
eend $?
fi
# XXX: This should handle serial consoles.
# Set the keymap.
if [ -n "${KEYMAP}" ]; then
ebegin "Setting keymap to ${KEYMAP}"
kbdcontrol -l ${KEYMAP} </dev/console