From e1bcf65998defaf69482648f415d95457851f92f Mon Sep 17 00:00:00 2001 From: Jonathon Hall Date: Thu, 5 Sep 2024 14:23:50 -0400 Subject: [PATCH] config/coreboot-librem_11.config: Fix build, restore Wi-Fi coreboot cfg a9e6dfe8 ("config/coreboot-*: Turn off WIFI support in coreboot. If regression, will turn on case by case") broke builds for Librem 11. CONFIG_DRIVER_WIFI_GENERIC is required for Librem 11 as it describes its built-in Wi-Fi card in the device tree. The CONFIG_DRIVER_INTEL_WIFI driver does not actually seem to be needed directly, but this is the only way to bring in the generic driver, which is not selectable itself. Signed-off-by: Jonathon Hall --- config/coreboot-librem_11.config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/coreboot-librem_11.config b/config/coreboot-librem_11.config index 573baee6..b153955f 100644 --- a/config/coreboot-librem_11.config +++ b/config/coreboot-librem_11.config @@ -140,7 +140,7 @@ CONFIG_DCACHE_BSP_STACK_SIZE=0x30400 CONFIG_MAX_ACPI_TABLE_SIZE_KB=144 CONFIG_HAVE_INTEL_FIRMWARE=y CONFIG_MRC_SETTINGS_CACHE_SIZE=0x10000 -# CONFIG_DRIVERS_INTEL_WIFI is not set +CONFIG_DRIVERS_INTEL_WIFI=y CONFIG_IFD_BIN_PATH="3rdparty/purism-blobs/mainboard/purism/librem_jsl/librem_11/flashdescriptor.bin" CONFIG_ME_BIN_PATH="3rdparty/purism-blobs/mainboard/purism/librem_jsl/librem_11/me.bin" CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x20000 @@ -563,6 +563,7 @@ CONFIG_USE_PC_CMOS_ALTCENTURY=y CONFIG_PC_CMOS_BASE_PORT_BANK0=0x70 # CONFIG_DRIVERS_SIL_3114 is not set CONFIG_DRIVERS_USB_ACPI=y +CONFIG_DRIVERS_WIFI_GENERIC=y # CONFIG_DRIVERS_MTK_WIFI is not set CONFIG_MP_SERVICES_PPI=y CONFIG_MP_SERVICES_PPI_V1=y