diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2012-11-29 16:28:21 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-11-30 19:02:58 +0100 |
commit | 78a1667cbc0a26c09079c81aa7b8f4387c5f3774 (patch) | |
tree | 4af041c0cae57bd09eb6d03906a282fc440a2992 /src/devices/Kconfig | |
parent | 3665ace13de68e798de31499197cc600d2426967 (diff) |
Create a a new configuration variable for PCI
Not all architectures have PCI. This new config variable allows control
of whether PCI support is configued in. It is selected for ARCH_X86.
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Change-Id: Ic5fe777b14fd6a16ba605ada1e22acf3e8a2c783
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-on: http://review.coreboot.org/1947
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/devices/Kconfig')
-rw-r--r-- | src/devices/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/devices/Kconfig b/src/devices/Kconfig index 72e8a53aa0..700516b902 100644 --- a/src/devices/Kconfig +++ b/src/devices/Kconfig @@ -175,28 +175,38 @@ config MULTIPLE_VGA_ADAPTERS bool default n +config PCI + bool + default n + config PCI_64BIT_PREF_MEM bool + depends on PCI default n config HYPERTRANSPORT_PLUGIN_SUPPORT bool + depends on PCI default n config PCIX_PLUGIN_SUPPORT bool + depends on PCI default y config PCIEXP_PLUGIN_SUPPORT bool + depends on PCI default y config AGP_PLUGIN_SUPPORT bool + depends on PCI default y config CARDBUS_PLUGIN_SUPPORT bool + depends on PCI default y config PCIEXP_COMMON_CLOCK |