mirror of https://github.com/ipxe/ipxe.git
41 lines
758 B
C
41 lines
758 B
C
#ifndef CONFIG_USB_H
|
|
#define CONFIG_USB_H
|
|
|
|
/** @file
|
|
*
|
|
* USB configuration
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
|
|
#include <config/defaults.h>
|
|
|
|
/*
|
|
* USB host controllers (all enabled by default)
|
|
*
|
|
*/
|
|
//#undef USB_HCD_XHCI /* xHCI USB host controller */
|
|
//#undef USB_HCD_EHCI /* EHCI USB host controller */
|
|
//#undef USB_HCD_UHCI /* UHCI USB host controller */
|
|
//#define USB_HCD_USBIO /* Very slow EFI USB host controller */
|
|
|
|
/*
|
|
* USB peripherals
|
|
*
|
|
*/
|
|
//#undef USB_KEYBOARD /* USB keyboards */
|
|
|
|
/*
|
|
* USB external interfaces
|
|
*
|
|
*/
|
|
//#undef USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
|
|
|
|
#include <config/named.h>
|
|
#include NAMED_CONFIG(usb.h)
|
|
#include <config/local/usb.h>
|
|
#include LOCAL_NAMED_CONFIG(usb.h)
|
|
|
|
#endif /* CONFIG_USB_H */
|