mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01:00
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# load keymap, if existing
|
|
|
|
KERNEL_MAJMIN=`uname -r | cut -d '.' -f 1,2`
|
|
if [ -e /etc/keymap-$KERNEL_MAJMIN.map ]; then
|
|
loadkeys /etc/keymap-$KERNEL_MAJMIN.map
|
|
fi
|