diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-01-12 22:13:33 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-01-12 22:13:33 +0100 |
commit | b2093f6c9d4f039e7944aebfb6b5c558218dabc6 (patch) | |
tree | b4efe8917f7e5bd2d03895a23ff35fd6c590ff4f /hooks | |
parent | 93a8be170ff841dd345084b5f5eda66c76e6534f (diff) | |
download | mkinitcpio-b2093f6c9d4f039e7944aebfb6b5c558218dabc6.tar.gz mkinitcpio-b2093f6c9d4f039e7944aebfb6b5c558218dabc6.tar.xz |
Add keymap hook
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/keymap | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hooks/keymap b/hooks/keymap new file mode 100644 index 0000000..fd53f5f --- /dev/null +++ b/hooks/keymap @@ -0,0 +1,15 @@ +# vim: set ft=sh: +run_hook () +{ + msg -n ":: Loading keymap..." + . /keymap.utf8 + if [ "${UTF8}" = "yes" ]; then + /usr/bin/kbd_mode -u -C /dev/console + printf "\033%%G" >> /dev/console + else + /usr/bin/kbd_mode -a -C /dev/console + printf "\033%%@" >> /dev/console + fi + /sbin/loadkmap < /keymap.bin + msg "done." +} |