Solved How is /usr/src/sys/dev/kbd/kbdtables.h generated?

How is /usr/src/sys/dev/kbd/kbdtables.h generated? The header indicates this file is auto generated from /usr/share/syscons/keymaps/us.iso.kbd. How do I go about generating a version from another keymap?
 
The following seems to be at least the main part of it:
Code:
kbdcontrol -L /usr/share/syscons/keymaps/some.keymap.kbd
From the kbdcontrol man page:
-L keymap_file
Load keyboard map file from keymap_file and write the struct
keymap compiled from it to stdout. This option is primarily
intended for programmers and is probably of little use under nor-
mal circumstances.
 
Back
Top