#!/bin/sh # console Loads console font and keyboard table # # chkconfig: 345 70 30 # # description: Loads the console font, the application-charset map \ # and the keyboard table. # This must be executed *after* /usr is mounted. # This means, if /usr is NFS-mounted it needs to # be run after networking and NFS mounts are up. [ -f /etc/sysconfig/console ] || exit 0 [ -f /bin/loadkeys -o -f /usr/bin/loadkeys ] || exit 0 [ -f /bin/setfont -o -f /usr/bin/setfont ] || exit 0 [ -f /etc/sysconfig/i18n ] && . /etc/sysconfig/i18n # Source function library . /etc/rc.d/init.d/functions if is_yes "$VSERVER"; then exit 0 fi . /etc/sysconfig/console start() { # Checking if we have framebuffer enabled if [ -f /proc/fb ]; then # /proc shows as files with size=0, this is workaround if cat /proc/fb | grep -q "."; then FB=yes; fi fi if [ -n "$SVGATEXTMODE" ]; then run_cmd "Setting Text Mode $SVGATEXTMODE" SVGATextMode $SVGATEXTMODE fi # Check for devfs (workaround: -a option doesn't work at all) if [ -d /dev/vc ]; then pattern="s/\/dev\/vc\///g" else pattern="s/\/dev\/tty//g" fi # save old tty number tty=`/usr/bin/tty | sed $pattern` if [ "$tty" = "/dev/console" ]; then tty=1 fi if [ -n "$CONSOLEFONT" -a -x /sbin/setsysfont ]; then CMD="/sbin/setsysfont" show "Loading console font and map" busy # don't initialize on multiple terminals if we use fbset # (assume that, in this case fb is loaded as a module) if [ ! -z "$FB" ]; then # check if devfs (workaround: -a option doesn't work at all) if [ -d /dev/vc ]; then DEVICES="`ls /dev/vc/* | sed 's|/dev/vc/||g'`" else DEVICES="`cat /etc/inittab | grep '^[0-9]*:' | cut -f1 -d :`" fi [ -z "$SET_FONT_TERMINALS" ] && SET_FONT_TERMINALS="$DEVICES" for cons in $SET_FONT_TERMINALS; do /usr/bin/open -c $cons -s -w -- $CMD if [ "$NUM_LOCK" ]; then if [ $NUM_LOCK = "on" ]; then /usr/bin/open -c $cons -s -w -- /usr/bin/setleds -D +num else /usr/bin/open -c $cons -s -w -- /usr/bin/setleds -D -num fi fi done /usr/bin/switchto $tty else $CMD fi ok fi if [ -n "$KEYTABLE" ]; then case "$LANG" in *.utf8|*.UTF-8) run_cmd "Loading keyboard table" loadkeys -u $KEYTABLE < /dev/tty0 > /dev/tty0 ;; *) run_cmd "Loading keyboard table" loadkeys $KEYTABLE < /dev/tty0 > /dev/tty0 esac fi run_cmd "Enabling SAK sequence" /bin/sh -c "echo Control Alt keycode 101 = SAK | loadkeys" power_option="" if [ "$POWER_SAVE" ]; then if [ "$BLANK_TIME" ]; then power_option="-blank $BLANK_TIME"; fi if [ "$POWERDOWN_TIME" ]; then power_option="-powerdown $POWERDOWN_TIME $power_option"; fi fi setterm_option="$power_option" if [ "$FOREGROUND_COLOUR" ]; then setterm_option="$setterm_option -foreground $FOREGROUND_COLOUR" fi if [ "$BACKGROUND_COLOUR" ]; then setterm_option="$setterm_option -background $BACKGROUND_COLOUR" fi if [ "$BEEP_LENGTH" ]; then setterm_option="$setterm_option -blength $BEEP_LENGTH" fi setterm_option="$setterm_option -store" for cons in $SET_FONT_TERMINALS; do /usr/bin/open -c $cons -s -w -- /usr/bin/setterm $setterm_option done /usr/bin/switchto $tty } case "$1" in start) if [ ! -f /var/lock/subsys/console ]; then start touch /var/lock/subsys/console fi ;; restart|reload|force-reload) start touch /var/lock/subsys/console ;; stop) if [ -f /var/lock/subsys/console ]; then run_cmd "Setting terminals to default values" /usr/bin/setterm -default rm -f /var/lock/subsys/console fi ;; status) /usr/bin/setleds ;; *) msg_usage "$0 {start|stop|restart|reload|force-reload|status}" exit 3 esac exit 0