kbd.init 344 B

1234567891011121314151617181920212223242526
  1. #!/bin/sh
  2. #PKG bkeymaps
  3. #INIT 6
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. [[ $kbd = NO ]] && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. [ -f /usr/share/keymaps/keymap.bmap ] || exit
  13. loadkmap < /usr/share/keymaps/keymap.bmap
  14. ;;
  15. stop)
  16. ;;
  17. restart)
  18. sh $0 stop
  19. sh $0 start
  20. ;;
  21. *)
  22. echo "Usage: $0 {start | stop | restart}"
  23. ;;
  24. esac
  25. exit $?