Add Qualcomm WiFi 6E support

And replace lspci from busybox with pci-utils (for all platforms
except arm (32bit).
This commit is contained in:
Mattias Walström
2026-04-17 13:32:16 +02:00
parent 1774e08219
commit b940e14eb7
6 changed files with 19 additions and 2 deletions
+9 -1
View File
@@ -35,5 +35,13 @@ config BR2_PACKAGE_FEATURE_WIFI_REALTEK
select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
select BR2_PACKAGE_LINUX_FIRMWARE_RTL_RTW88
select BR2_PACKAGE_LINUX_FIRMWARE_RTL_RTW89
help
Enables support for RTL81xx, RTW88, and RTW89 WiFi devices.
config BR2_PACKAGE_FEATURE_WIFI_QUALCOMM
bool "Qualcomm WiFi Devices"
depends on BR2_PACKAGE_FEATURE_WIFI
select BR2_PACKAGE_LINUX_FIRMWARE
select BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_11K_WCN6855
help
Enables support for RTL81xx, RTW88, and RTW89 WiFi devices.
Enables support for Qualcomm Atheros ath11k WiFi devices.
+3
View File
@@ -62,6 +62,9 @@ define FEATURE_WIFI_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_RTW89_8922AE)
$(call KCONFIG_ENABLE_OPT,CONFIG_RTW89_DEBUGMSG)
)
$(if $(filter y,$(BR2_PACKAGE_FEATURE_WIFI_QUALCOMM)),
$(call KCONFIG_ENABLE_OPT,CONFIG_ATH11K)
)
endef
$(eval $(generic-package))