summaryrefslogtreecommitdiffstats
path: root/hooks/keymap
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-06-09 04:37:07 +0200
committerThomas Bächler <thomas@archlinux.org>2011-06-25 12:25:45 +0200
commit81e77426e554a61d85e1738af604359171a6062e (patch)
tree93cc1d2444fe29f466706ceda19d801978c99fd4 /hooks/keymap
parent6dba57232914a1952dedea70a1dad38142ba7258 (diff)
downloadmkinitcpio-81e77426e554a61d85e1738af604359171a6062e.tar.gz
mkinitcpio-81e77426e554a61d85e1738af604359171a6062e.tar.xz
init: declare PATH, remove absolute paths
We were never very consistent about this anyways. Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'hooks/keymap')
-rw-r--r--hooks/keymap6
1 files changed, 3 insertions, 3 deletions
diff --git a/hooks/keymap b/hooks/keymap
index 9557c26..3593168 100644
--- a/hooks/keymap
+++ b/hooks/keymap
@@ -5,13 +5,13 @@ run_hook ()
msg -n ":: Loading keymap..."
. /keymap.utf8
if [ "${UTF8}" = "yes" ]; then
- /usr/bin/kbd_mode -u -C /dev/console
+ kbd_mode -u -C /dev/console
printf "\033%%G" >> /dev/console
else
- /usr/bin/kbd_mode -a -C /dev/console
+ kbd_mode -a -C /dev/console
printf "\033%%@" >> /dev/console
fi
- /sbin/loadkmap < /keymap.bin
+ loadkmap < /keymap.bin
msg "done."
fi
}