summaryrefslogtreecommitdiff
path: root/scripts/init-top/keymap
blob: 10507fd0d215354df59d5de5e89c5749ca446594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

PREREQ=""
prereqs()
{
	echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
	prereqs
	exit 0
	;;
esac

OPTS="-q"

# Should terminal be in UTF8 mode?
if [ -x /bin/kbd_mode ]; then
	/bin/kbd_mode -u
	OPTS="${OPTS} -u"
fi

# Load custom keymap
if [ -x /bin/loadkeys ] && [ -r /etc/boottime.kmap.gz ]; then
	# shellcheck disable=SC2086
	loadkeys ${OPTS} /etc/boottime.kmap.gz
fi