mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
241 B

  1. #!/bin/bash
  2. for x in `cat /proc/cmdline` ; do
  3. if [[ $x = *keymap* ]] ; then
  4. keymap=`find /usr/share/kbd/keymaps -name "${x##*=}.map*" 2>/dev/null`
  5. if [ -f "${keymap}" ] ; then
  6. cd ${keymap%/*}
  7. loadkeys ${keymap##*/}
  8. fi
  9. fi
  10. done