2008-02-28 01:59:32 +05:30
|
|
|
#!@SHELL@
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2009-04-26 16:49:22 +05:30
|
|
|
: ${CONSOLE:=/dev/console}
|
2009-05-24 01:08:12 +05:30
|
|
|
: ${RC_LIBEXECDIR:=@LIBEXECDIR@}
|
2009-04-26 16:49:22 +05:30
|
|
|
|
2012-02-09 15:19:04 +05:30
|
|
|
service_present()
|
|
|
|
{
|
|
|
|
local p="/etc/runlevels/$1/$2"
|
|
|
|
# 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-24 01:08:12 +05:30
|
|
|
if [ -e "$RC_LIBEXECDIR"/console/unicode ]; then
|
2009-04-26 16:49:22 +05:30
|
|
|
termencoding="%G"
|
|
|
|
kmode="-u"
|
|
|
|
else
|
2007-07-01 14:15:23 +05:30
|
|
|
termencoding="(K"
|
2009-04-26 16:49:22 +05:30
|
|
|
kmode="-a"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Try and set a font and as early as we can
|
2012-02-09 15:19:04 +05:30
|
|
|
if service_present "$RC_DEFAULTLEVEL" consolefont ||
|
|
|
|
service_present "$RC_BOOTLEVEL" consolefont; then
|
2009-04-26 16:49:22 +05:30
|
|
|
printf "\033%s" "$termencoding" >"$CONSOLE" 2>/dev/null
|
2010-09-30 18:03:52 +05:30
|
|
|
if [ -r "$RC_LIBEXECDIR"/console/font -a -x /usr/bin/setfont ]; then
|
2009-04-26 16:49:22 +05:30
|
|
|
[ -c "$CONSOLE" ] && cons="-C $CONSOLE"
|
2013-02-12 08:43:27 +05:30
|
|
|
setfont $cons "$RC_LIBEXECDIR"/console/font 2>/dev/null
|
2009-04-26 16:49:22 +05:30
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Try and set a keyboard map as early as possible
|
2012-02-09 15:19:04 +05:30
|
|
|
if service_present "$RC_DEFAULTLEVEL" keymaps ||
|
|
|
|
service_present "$RC_BOOTLEVEL" keymaps; then
|
2009-04-26 16:49:22 +05:30
|
|
|
kbd_mode $kmode -C "$CONSOLE" 2>/dev/null
|
2009-05-24 01:08:12 +05:30
|
|
|
if [ -r "$RC_LIBEXECDIR"/console/keymap ]; then
|
2010-09-30 18:03:52 +05:30
|
|
|
loadkeys -q "$RC_LIBEXECDIR"/console/keymap 2>/dev/null
|
2007-07-01 14:15:23 +05:30
|
|
|
fi
|
2007-04-26 18:38:34 +05:30
|
|
|
fi
|
2007-08-05 02:05:05 +05:30
|
|
|
|
|
|
|
# Ensure we exit 0 so the boot continues
|
|
|
|
exit 0
|