mikeb mikeb would like Mike Banon to review this change.

View Change

src/drivers/intel/wifi/Kconfig: add NO_INTEL_WIFI option

This NO_INTEL_WIFI option will help to disable DRIVERS_INTEL_WIFI by
default for the boards which are unlikely to have Intel PCI-e WiFi adapters.

Signed-off-by: Mike Banon <mikebdp2@gmail.com>
Change-Id: Ia21a141e25e58f6126a6d48d83cdfb4f746f3320
---
M src/drivers/intel/wifi/Kconfig
1 file changed, 5 insertions(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/19/31219/1
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig
index 4dc4d7f..4082d7e 100644
--- a/src/drivers/intel/wifi/Kconfig
+++ b/src/drivers/intel/wifi/Kconfig
@@ -1,11 +1,15 @@
config DRIVERS_INTEL_WIFI
bool "Support Intel PCI-e WiFi adapters"
depends on ARCH_X86
- default y if PCIEXP_PLUGIN_SUPPORT
+ default y if PCIEXP_PLUGIN_SUPPORT && !NO_INTEL_WIFI
help
When enabled, add identifiers in ACPI and SMBIOS tables to
make OS drivers work with certain Intel PCI-e WiFi chipsets.

+# Select this for mainboard which is unlikely to have Intel PCI-e WiFi adapter.
+config NO_INTEL_WIFI
+ def_bool n
+
config USE_SAR
bool
default n

To view, visit change 31219. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia21a141e25e58f6126a6d48d83cdfb4f746f3320
Gerrit-Change-Number: 31219
Gerrit-PatchSet: 1
Gerrit-Owner: mikeb mikeb <mikebdp2@gmail.com>
Gerrit-Reviewer: Mike Banon <mikebdp2@gmail.com>
Gerrit-MessageType: newchange