diff options
| author | Michael Brown | 2015-02-02 15:40:06 +0100 |
|---|---|---|
| committer | Michael Brown | 2015-02-03 13:33:28 +0100 |
| commit | fd53ada87cc3b715738e01d5470829b9948c1e09 (patch) | |
| tree | 9d61593756103fff88b190647dbdae5416491f71 /src/config | |
| parent | [usb] Add basic support for USB hubs (diff) | |
| download | ipxe-fd53ada87cc3b715738e01d5470829b9948c1e09.tar.gz ipxe-fd53ada87cc3b715738e01d5470829b9948c1e09.tar.xz ipxe-fd53ada87cc3b715738e01d5470829b9948c1e09.zip | |
[usb] Add support for xHCI host controllers
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/config_usb.c | 3 | ||||
| -rw-r--r-- | src/config/defaults/pcbios.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/config/config_usb.c b/src/config/config_usb.c index 9a714b24f..789bc5060 100644 --- a/src/config/config_usb.c +++ b/src/config/config_usb.c @@ -18,3 +18,6 @@ FILE_LICENCE ( GPL2_OR_LATER ); /* * Drag in USB controllers */ +#ifdef USB_HCD_XHCI +REQUIRE_OBJECT ( xhci ); +#endif diff --git a/src/config/defaults/pcbios.h b/src/config/defaults/pcbios.h index 7debc8d2f..ef20c3604 100644 --- a/src/config/defaults/pcbios.h +++ b/src/config/defaults/pcbios.h @@ -36,6 +36,8 @@ FILE_LICENCE ( GPL2_OR_LATER ); #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */ #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */ +#define USB_HCD_XHCI /* xHCI USB host controller */ + #define REBOOT_CMD /* Reboot command */ #define CPUID_CMD /* x86 CPU feature detection command */ |
