2008-02-27 20:29:32 +00:00
|
|
|
#!@SHELL@
|
2015-12-04 16:52:19 -06:00
|
|
|
# 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-14 15:22:04 +00:00
|
|
|
|
2009-04-26 11:19:22 +00:00
|
|
|
: ${CONSOLE:=/dev/console}
|
2009-05-23 20:38:12 +01:00
|
|
|
: ${RC_LIBEXECDIR:=@LIBEXECDIR@}
|
2009-04-26 11:19:22 +00:00
|
|
|
|
2012-02-09 01:49:04 -08:00
|
|
|
service_present()
|
|
|
|
{
|
2013-02-11 22:13:28 -05:00
|
|
|
local p="@SYSCONFDIR@/runlevels/$1/$2"
|
2012-02-09 01:49:04 -08:00
|
|
|
# fail if the file doesn't exist
|
|
|
|
[ ! -e "$p" ] && return 1
|
|
|
|
# succeed if $RC_SYS empty, can't check further, assume script will run
|
|
|
|
[ -z "$RC_SYS" ] && return 0
|
|
|
|
# fail if file contains "-$RC_SYS", because then it won't run
|
|
|
|
egrep -qi "^[[:space:]]*keyword[[:space:]].*-$RC_SYS\>" "$p" && return 1
|
|
|
|
# succeed otherwise
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2009-05-23 20:38:12 +01:00
|
|
|
if [ -e "$RC_LIBEXECDIR"/console/unicode ]; then
|
2009-04-26 11:19:22 +00:00
|
|
|
termencoding="%G"
|
|
|
|
kmode="-u"
|
|
|
|
else
|
2007-07-01 08:45:23 +00:00
|
|
|
termencoding="(K"
|
2009-04-26 11:19:22 +00:00
|
|
|
kmode="-a"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Try and set a font and as early as we can
|
2012-02-09 01:49:04 -08:00
|
|
|
if service_present "$RC_DEFAULTLEVEL" consolefont ||
|
|
|
|
service_present "$RC_BOOTLEVEL" consolefont; then
|
2009-04-26 11:19:22 +00:00
|
|
|
printf "\033%s" "$termencoding" >"$CONSOLE" 2>/dev/null
|
2013-05-05 13:47:45 -05:00
|
|
|
if [ -r "$RC_LIBEXECDIR"/console/font ] && \
|
2013-12-01 19:25:01 -06:00
|
|
|
command -v setfont > /dev/null 2>&1; then
|
2009-04-26 11:19:22 +00:00
|
|
|
[ -c "$CONSOLE" ] && cons="-C $CONSOLE"
|
2013-02-11 22:13:27 -05:00
|
|
|
setfont $cons "$RC_LIBEXECDIR"/console/font 2>/dev/null
|
2009-04-26 11:19:22 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Try and set a keyboard map as early as possible
|
2012-02-09 01:49:04 -08:00
|
|
|
if service_present "$RC_DEFAULTLEVEL" keymaps ||
|
|
|
|
service_present "$RC_BOOTLEVEL" keymaps; then
|
2009-04-26 11:19:22 +00:00
|
|
|
kbd_mode $kmode -C "$CONSOLE" 2>/dev/null
|
2009-05-23 20:38:12 +01:00
|
|
|
if [ -r "$RC_LIBEXECDIR"/console/keymap ]; then
|
2010-09-30 07:33:52 -05:00
|
|
|
loadkeys -q "$RC_LIBEXECDIR"/console/keymap 2>/dev/null
|
2007-07-01 08:45:23 +00:00
|
|
|
fi
|
2007-04-26 13:08:34 +00:00
|
|
|
fi
|
2007-08-04 20:35:05 +00:00
|
|
|
|
|
|
|
# Ensure we exit 0 so the boot continues
|
|
|
|
exit 0
|