summaryrefslogtreecommitdiffstats
path: root/src/config/config_usb.c
diff options
context:
space:
mode:
authorMichael Brown2015-09-10 18:22:03 +0200
committerMichael Brown2015-09-14 23:11:37 +0200
commit5df081d6c039924506c07c0c7a2cf7e2c699709f (patch)
treebe5be151ecfc2372a1267372215dc49f3ca67340 /src/config/config_usb.c
parent[usb] Allow for wildcard USB class IDs (diff)
downloadipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.tar.gz
ipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.tar.xz
ipxe-5df081d6c039924506c07c0c7a2cf7e2c699709f.zip
[efi] Expose unused USB devices via EFI_USB_IO_PROTOCOL
Allow the UEFI platform firmware to provide drivers for unrecognised devices, by exposing our own implementation of EFI_USB_IO_PROTOCOL. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config_usb.c')
-rw-r--r--src/config/config_usb.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config/config_usb.c b/src/config/config_usb.c
index 4e5843b9..17296d27 100644
--- a/src/config/config_usb.c
+++ b/src/config/config_usb.c
@@ -53,3 +53,10 @@ REQUIRE_OBJECT ( usbio );
#ifdef USB_KEYBOARD
REQUIRE_OBJECT ( usbkbd );
#endif
+
+/*
+ * Drag in USB external interfaces
+ */
+#ifdef USB_EFI
+REQUIRE_OBJECT ( efi_usb );
+#endif