cde69c668d
The author of the 8821cu repository has requested that we switch to a newer major version of the driver located at 8821cu-20210916: https://github.com/morrownr/8821cu-20210118/pull/93#issuecomment-1452675897 Switch to that new repository. Fixes a build issue against PowerPC64. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
1009 B
Makefile
34 lines
1009 B
Makefile
################################################################################
|
|
#
|
|
# rtl8821cu
|
|
#
|
|
################################################################################
|
|
|
|
RTL8821CU_VERSION = 69c903b75bde36293c66b25c051916a74dbadf58
|
|
RTL8821CU_SITE = $(call github,morrownr,8821cu-20210916,$(RTL8821CU_VERSION))
|
|
RTL8821CU_LICENSE = GPL-2.0
|
|
RTL8821CU_LICENSE_FILES = LICENSE
|
|
|
|
define RTL8821CU_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
|
|
|
|
RTL8821CU_USER_EXTRA_CFLAGS = \
|
|
-DCONFIG_$(call qstrip,$(BR2_ENDIAN))_ENDIAN \
|
|
-DCONFIG_IOCTL_CFG80211 \
|
|
-DRTW_USE_CFG80211_STA_EVENT \
|
|
-Wno-error
|
|
|
|
RTL8821CU_MODULE_MAKE_OPTS = \
|
|
CONFIG_PLATFORM_GENERIC=n \
|
|
CONFIG_RTL8821CU=m \
|
|
KVER=$(LINUX_VERSION_PROBED) \
|
|
USER_EXTRA_CFLAGS="$(RTL8821CU_USER_EXTRA_CFLAGS)"
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|