[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>
This commit is contained in:
Michael Brown
2015-09-10 17:22:03 +01:00
parent 668dc73d52
commit 5df081d6c0
6 changed files with 1409 additions and 5 deletions

View File

@@ -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