Hello Mike Banon,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/31219
to review the following change.
Change subject: src/drivers/intel/wifi/Kconfig: add NO_INTEL_WIFI option ......................................................................
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