2018-12-08 01:11:06 +05:30
|
|
|
#!/bin/sh
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# 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
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
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()
|
|
|
|
{
|
2013-02-12 08:43:28 +05:30
|
|
|
local p="@SYSCONFDIR@/runlevels/$1/$2"
|
2012-02-09 15:19:04 +05:30
|
|
|
# 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
|
2020-01-02 19:58:25 +05:30
|
|
|
grep -Eqi "^[[:space:]]*keyword[[:space:]].*-$RC_SYS([[:space:]]|$)" "$p" && return 1
|
2012-02-09 15:19:04 +05:30
|
|
|
# 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
|
|
|
|
|
2018-02-28 22:54:55 +05:30
|
|
|
# Set the SELinux label on console before everything so we dont lose output
|
|
|
|
[ -x /sbin/restorecon ] && /sbin/restorecon -F /dev/console
|
|
|
|
|
2009-04-26 16:49:22 +05:30
|
|
|
# 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
|
2013-05-06 00:17:45 +05:30
|
|
|
if [ -r "$RC_LIBEXECDIR"/console/font ] && \
|
2013-12-02 06:55:01 +05:30
|
|
|
command -v setfont > /dev/null 2>&1; 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
|