diff options
author | Michael Brown | 2011-03-16 04:22:45 +0100 |
---|---|---|
committer | Michael Brown | 2011-03-16 13:02:59 +0100 |
commit | 1febd879e340958c7a4a54823a82784fcb3672ca (patch) | |
tree | 2280bd30a465fa8bb2e4a4c25aef0ef85b417279 /src/Makefile | |
parent | [console] Add facility for rudimentary keyboard mapping (diff) | |
download | ipxe-1febd879e340958c7a4a54823a82784fcb3672ca.tar.gz ipxe-1febd879e340958c7a4a54823a82784fcb3672ca.tar.xz ipxe-1febd879e340958c7a4a54823a82784fcb3672ca.zip |
[console] Add keymap generator
Inspired by LILO's keytab-lilo.pl, genkeymap.pl uses "loadkeys -b" to
obtain a Linux keyboard map, and generates a file keymap_xx.c in
hci/keymap.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 8b691a71..e4a4fb42 100644 --- a/src/Makefile +++ b/src/Makefile @@ -45,6 +45,7 @@ ELF2EFI64 := ./util/elf2efi64 EFIROM := ./util/efirom ICCFIX := ./util/iccfix EINFO := ./util/einfo +GENKEYMAP := ./util/genkeymap.pl DOXYGEN := doxygen BINUTILS_DIR := /usr BFD_DIR := $(BINUTILS_DIR) @@ -80,6 +81,7 @@ SRCDIRS += tests SRCDIRS += crypto crypto/axtls crypto/matrixssl SRCDIRS += hci hci/commands hci/tui SRCDIRS += hci/mucurses hci/mucurses/widgets +SRCDIRS += hci/keymap SRCDIRS += usr SRCDIRS += config |