mirror of https://github.com/ipxe/ipxe.git
[usb] Add config/usb.h for USB configuration options
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/35/head
parent
75d6fec6c4
commit
e1feb7bcab
|
@ -21,7 +21,7 @@
|
|||
|
||||
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
||||
|
||||
#include <config/general.h>
|
||||
#include <config/usb.h>
|
||||
|
||||
/** @file
|
||||
*
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
#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 */
|
||||
|
||||
#include <config/named.h>
|
||||
#include NAMED_CONFIG(usb.h)
|
||||
#include <config/local/usb.h>
|
||||
#include LOCAL_NAMED_CONFIG(usb.h)
|
||||
|
||||
#endif /* CONFIG_USB_H */
|
Loading…
Reference in New Issue