1
2
3menu "Drivers"
4
5config DRIVER_PCI
6	bool "PCI driver"
7	default y
8	help
9	  Builtin PCI driver
10
11config DEBUG_PCI
12	bool "Debug PCI driver"
13	default n
14	help
15	  Debug PCI driver
16
17config DRIVER_IDE
18	depends X86 || AMD64 || PPC
19	bool "Legacy IDE"
20	default y
21	help
22	  If you want to be able to boot from IDE, enable this option.
23
24config IDE_NUM_CHANNELS
25	depends DRIVER_IDE
26	int "Number of IDE channels to be probed"
27	default 4
28	help
29	  Number of IDE channels to be probed. This should be set to
30	  one or two if you build OpenBIOS for the Total Impact BRIQ.
31
32config DEBUG_IDE
33	depends DRIVER_IDE
34        bool "Debug IDE driver"
35	default n
36	help
37	  Debug IDE driver
38
39config DRIVER_USB
40	bool "USB Support"
41	default n
42	help
43	  If you want to be able to use USB devices, enable this option.
44
45config DEBUG_USB
46	depends DRIVER_USB
47	bool "Debug USB driver"
48	default n
49	help
50	  Debug USB driver
51
52config USB_HID
53	depends DRIVER_USB
54	bool "USB driver for HID devices"
55	default n
56	help
57	  If you want to be able to use USB keyboard, enable this option.
58
59endmenu
60