#!/bin/sh
# Begin /etc/init.d/loadkeys

#
# Include the functions declared in the /etc/init.d/functions file
#

source `PATH=$INIT_D/:/sbin/init.d:/etc/init.d:/etc/rc.d type -p functions`

#
# Include /etc/sysconfig/keyboard which contains the LAYOUT variable
#

source $sysconfig_keyboard

#
# Load the default keymap file
#

echo -n "Loading keymap..."
loadkeys $LAYOUT 2>/dev/null
evaluate_retval || exit_if_any_error

exit 0

# End /etc/init.d/loadkeys
