diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-05-11 15:42:54 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-05-12 15:53:22 +0100 |
commit | 372672275e48a7f0fcd058476bd742bf950e4074 (patch) | |
tree | e4d781c7be57583d93aaac215c0fa5e01bd89d34 /src/config/usb.h | |
parent | a8e4187c455aa89f2de7376f959a24f6c7327e11 (diff) | |
download | ipxe-372672275e48a7f0fcd058476bd742bf950e4074.tar.gz |
[usb] Add basic support for USB keyboards
When USB network card drivers are used, the BIOS' legacy USB
capability is necessarily disabled since there is no way to share the
host controller between the BIOS and iPXE. This currently results in
USB keyboards becoming non-functional in USB-enabled builds of iPXE.
Fix by adding basic support for USB keyboards, enabled by default in
iPXE builds which include USB support.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/usb.h')
-rw-r--r-- | src/config/usb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config/usb.h b/src/config/usb.h index 0181c50e..52e82eaa 100644 --- a/src/config/usb.h +++ b/src/config/usb.h @@ -19,6 +19,12 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); //#undef USB_HCD_EHCI /* EHCI USB host controller */ //#undef USB_HCD_UHCI /* UHCI USB host controller */ +/* + * USB peripherals + * + */ +//#undef USB_KEYBOARD /* USB keyboards */ + #include <config/named.h> #include NAMED_CONFIG(usb.h) #include <config/local/usb.h> |