openrc/init.d/syscons.in

91 lines
1.9 KiB
Plaintext
Raw Normal View History

#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2015 The OpenRC Authors.
# See the Authors file at the top-level directory of this distribution and
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
#
# This file is part of OpenRC. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
2007-11-20 20:30:45 +05:30
depend() {
need localmount
keyword -jail -prefix
2007-11-20 20:30:45 +05:30
}
start() {
2009-04-27 13:21:18 +05:30
if [ -n "$allscreen_flags" ]; then
ebegin "Setting mode to $allscreen_flags for all screens"
2007-11-21 21:16:56 +05:30
for v in /dev/ttyv*; do
2009-04-27 13:21:18 +05:30
vidcontrol $allscreen_flags <$v
done
2007-11-20 20:30:45 +05:30
eend $?
fi
2009-04-27 13:21:18 +05:30
if [ -n "$keymap" ]; then
ebegin "Setting keymap to $keymap"
kbdcontrol -l $keymap </dev/console
2007-11-20 20:30:45 +05:30
eend $?
fi
2009-04-27 13:21:18 +05:30
if [ -n "$keyrate" ]; then
ebegin "Setting keyrate to $keyrate"
kbdcontrol -r $keyrate </dev/console
2007-11-20 20:30:45 +05:30
eend $?
fi
2009-04-27 13:21:18 +05:30
if [ -n "$keychange" ]; then
2007-11-20 20:30:45 +05:30
ebegin "Changing function keys"
2009-04-27 13:21:18 +05:30
eval set -- "$keychange"
2007-11-20 20:30:45 +05:30
eindent
2007-11-28 21:15:03 +05:30
while [ $# -gt 0 ]; do
2007-11-20 20:30:45 +05:30
veinfo "F$1 -> \`$2'"
kbdcontrol -f "$1" "$2" </dev/console
veend $?
shift; shift
done
eoutdent
fi
2009-04-27 13:21:18 +05:30
if [ -n "$cursor" ]; then
2007-11-20 20:30:45 +05:30
ebegin "Setting cursor"
2009-04-27 13:21:18 +05:30
vidcontrol -c $cursor
2007-11-20 20:30:45 +05:30
eend $?
fi
local v= f=
for v in font8x16 font8x14 font8x8; do
2009-04-27 13:21:18 +05:30
eval f=\$$v
if [ -n "$f" ]; then
ebegin "Setting font $f"
vidcontrol -f ${v##font} $f
2007-11-20 20:30:45 +05:30
eend $?
fi
done
2009-04-27 13:21:18 +05:30
if [ -n "$blanktime" ]; then
2007-11-20 20:30:45 +05:30
ebegin "Setting blanktime"
2009-04-27 13:21:18 +05:30
vidcontrol -t $blanktime
2007-11-20 20:30:45 +05:30
eend $?
fi
2009-04-27 13:21:18 +05:30
if [ -n "$saver" ]; then
2007-11-20 20:30:45 +05:30
local i=
for i in $(kldstat | sed -n -e 's/.* \(splash_.*\)/\1/p'); do
2009-04-27 13:21:18 +05:30
kldunload "$i"
2007-11-20 20:30:45 +05:30
done
kldstat -v | grep -q _saver || kldload ${saver}_saver
2007-11-20 20:30:45 +05:30
fi
2009-04-27 13:21:18 +05:30
if [ -n "$kbdflags" ]; then
2007-11-20 20:30:45 +05:30
ebegin "Setting keyboard flags for all screens"
for v in /dev/ttyv*; do
2009-04-27 13:21:18 +05:30
kbdcontrol $kbdflags <$v
2007-11-20 20:30:45 +05:30
done
eend $?
fi
return 0
}