mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Benetti Engineering just took over Larry Finger(lwfinger)'s repository [0]
rtl8821au since Larry unfortunately passed away[1](RIP) and there are
pending PRs that will never be checked as stated here. So basically move
github user to benetti-engineering-sas and update version with latest that
fixes build failure with Linux version 6.15. And of course let's update
package's URL due to the moving.
[0]: https://github.com/lwfinger/rtl8812au/issues/32
[1]: https://lwn.net/Articles/979419/
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 2dd7a4a374)
[thomas: only change the upstream]
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
28 lines
873 B
Makefile
28 lines
873 B
Makefile
################################################################################
|
|
#
|
|
# rtl8821au
|
|
#
|
|
################################################################################
|
|
|
|
RTL8821AU_VERSION = 8ea0ed9da764448c7310a27744ab5814289f35a8
|
|
RTL8821AU_SITE = $(call github,benetti-engineering-sas,rtl8821au,$(RTL8821AU_VERSION))
|
|
RTL8821AU_LICENSE = GPL-2.0
|
|
RTL8821AU_LICENSE_FILES = LICENSE
|
|
|
|
define RTL8821AU_LINUX_CONFIG_FIXUPS
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_USB_SUPPORT)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_USB)
|
|
endef
|
|
|
|
RTL8821AU_MODULE_MAKE_OPTS = \
|
|
CONFIG_RTL8812AU_8821AU=m \
|
|
KVER=$(LINUX_VERSION_PROBED) \
|
|
USER_EXTRA_CFLAGS="-DCONFIG_$(call qstrip,$(BR2_ENDIAN))_ENDIAN \
|
|
-Wno-error"
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|