Hello Mike Banon,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/31222
to review the following change.
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
drivers/intel/wifi/Kconfig: disable DRIVERS_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: I9a7e5cd515da4ee4c4176227eea2e863ed55c420 --- M src/drivers/intel/wifi/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/31222/1
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig index 4dc4d7f..80a7ef8 100644 --- a/src/drivers/intel/wifi/Kconfig +++ b/src/drivers/intel/wifi/Kconfig @@ -1,7 +1,7 @@ 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 && !SYSTEM_TYPE_LAPTOP help When enabled, add identifiers in ACPI and SMBIOS tables to make OS drivers work with certain Intel PCI-e WiFi chipsets.
Hello Patrick Rudolph, Mike Banon, build bot (Jenkins), Nico Huber,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/31222
to look at the new patch set (#2).
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
drivers/intel/wifi/Kconfig: disable DRIVERS_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: I9a7e5cd515da4ee4c4176227eea2e863ed55c420 --- M src/drivers/intel/wifi/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/31222/2
Hello Patrick Rudolph, Mike Banon, build bot (Jenkins), Nico Huber,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/31222
to look at the new patch set (#3).
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
drivers/intel/wifi/Kconfig: disable DRIVERS_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: I9a7e5cd515da4ee4c4176227eea2e863ed55c420 --- M src/drivers/intel/wifi/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/31222/3
mikeb mikeb has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31222 )
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
Patch Set 4:
Sorry I fixed my mistake (should've been "default y if PCIEXP_PLUGIN_SUPPORT && SYSTEM_TYPE_LAPTOP" without any ! ) and Jenkins failed a couple of times, but it is ready now
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31222 )
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
Patch Set 4:
What about Chromeboxes and the like? they often come with wifi. If your intention isn't some honest inves- tigation into every board in the tree if this option makes sense or not, it looks like your only incentive is user patronizing?
mikeb mikeb has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31222 )
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
Patch Set 4:
Patch Set 4:
What about Chromeboxes and the like? they often come with wifi. If your intention isn't some honest inves- tigation into every board in the tree if this option makes sense or not, it looks like your only incentive is user patronizing?
Sorry, I forgot there are Chromeboxes and other "MiniPC" computers which could have a MiniPCIe slot while not belonging to SYSTEM_TYPE_LAPTOP class. I'm going to look at coreboot-supporting boards to see their technical specs and if I could improve/expand this "default y if" option or not; marking this change as WIP meanwhile...
mikeb mikeb has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/31222 )
Change subject: drivers/intel/wifi/Kconfig: disable DRIVERS_INTEL_WIFI if !SYSTEM_TYPE_LAPTOP ......................................................................
Abandoned
Abandoned for the same reasons as CB:31308