diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-05-08 23:47:58 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-05-08 23:47:58 +0200 |
commit | 78ebdba045f0dda699f0edab1bdbdb637bbf019b (patch) | |
tree | e59db3e45ac8a5aa4323934514ca7714bd215d74 /hooks | |
parent | 9114900c15b343c2e5585abe34d0e259f8d86478 (diff) | |
download | mkinitcpio-78ebdba045f0dda699f0edab1bdbdb637bbf019b.tar.gz mkinitcpio-78ebdba045f0dda699f0edab1bdbdb637bbf019b.tar.xz |
Formatting fixes
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@87 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/keymap | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hooks/keymap b/hooks/keymap index d00df9b..414338b 100644 --- a/hooks/keymap +++ b/hooks/keymap @@ -4,18 +4,18 @@ run_hook () msg -n ":: Loading keymap..." . /keymap if [ "$KEYMAP" != "" ]; then - /bin/loadkeys -q $KEYMAP + /bin/loadkeys -q $KEYMAP fi # If locale is *.utf set console to Unicode mode if [ "$UTF8" = "yes" ]; then - /bin/kbd_mode -u - /bin/dumpkeys | /bin/loadkeys --unicode - echo -ne "\e%G" >> /dev/console + /bin/kbd_mode -u + /bin/dumpkeys | /bin/loadkeys --unicode + echo -ne "\e%G" >> /dev/console fi if [ "$CONSOLEMAP" != "" ]; then - /bin/setfont -m $CONSOLEMAP $CONSOLEFONT -C /dev/console + /bin/setfont -m $CONSOLEMAP $CONSOLEFONT -C /dev/console else - /bin/setfont $CONSOLEFONT -C /dev/console + /bin/setfont $CONSOLEFONT -C /dev/console fi msg "done." } |