Hello Mike Banon,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/31220
to review the following change.
Change subject: src/drivers/intel/wifi/Kconfig: enable NO_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
src/drivers/intel/wifi/Kconfig: enable NO_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP
Intel PCI-e WiFi adapters are rare outside of laptops. DRIVERS_INTEL_WIFI should not be selected by default if the mainboard is not a laptop.
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I93a9e8fc9ba92f755524250e6cbcf9d1ba1acbdc --- M src/drivers/intel/wifi/Kconfig 1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/20/31220/1
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig index 4082d7e..8fdd0a3 100644 --- a/src/drivers/intel/wifi/Kconfig +++ b/src/drivers/intel/wifi/Kconfig @@ -8,7 +8,9 @@
# Select this for mainboard which is unlikely to have Intel PCI-e WiFi adapter. config NO_INTEL_WIFI - def_bool n + bool + default y if !SYSTEM_TYPE_LAPTOP + default n
config USE_SAR bool