summaryrefslogtreecommitdiffstats
path: root/src/config/usb.h
diff options
context:
space:
mode:
authorMichael Brown2015-03-18 12:37:51 +0100
committerMichael Brown2015-03-18 13:35:16 +0100
commite1feb7bcab139a9b1114b8cc9e081d1144f53d75 (patch)
treecf0ac5727c98af0c6eeb63ee187a3804384b898c /src/config/usb.h
parent[autoboot] Match against parent devices when matching by bus type and location (diff)
downloadipxe-e1feb7bcab139a9b1114b8cc9e081d1144f53d75.tar.gz
ipxe-e1feb7bcab139a9b1114b8cc9e081d1144f53d75.tar.xz
ipxe-e1feb7bcab139a9b1114b8cc9e081d1144f53d75.zip
[usb] Add config/usb.h for USB configuration options
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/usb.h')
-rw-r--r--src/config/usb.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/config/usb.h b/src/config/usb.h
new file mode 100644
index 00000000..ad8b3b72
--- /dev/null
+++ b/src/config/usb.h
@@ -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 */