2a069b5cae
This patch updates rtl8821au to include an upstream commit which disables debug output, unless a runtime insmod parameter debug=level is passed when loading the module. This makes the old buildroot patch to remove hardcoded debug defines unnecessary: as such, it has been removed. Signed-off-by: Christian Stewart <christian@paral.in> Tested-by: Christian Stewart <christian@paral.in> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
852 B
Makefile
26 lines
852 B
Makefile
################################################################################
|
|
#
|
|
# rtl8821au
|
|
#
|
|
################################################################################
|
|
|
|
RTL8821AU_VERSION = fef8c9d67d076eee9dfb9e19cb7cb69815d5a207
|
|
RTL8821AU_SITE = $(call github,ulli-kroll,rtl8821au,$(RTL8821AU_VERSION))
|
|
RTL8821AU_LICENSE = GPLv2, proprietary (rtl8821au.bin firmware)
|
|
RTL8821AU_LICENSE_FILES = COPYING
|
|
|
|
RTL8821AU_MODULE_MAKE_OPTS = \
|
|
CONFIG_RTL8812AU_8821AU=m \
|
|
KVER=$(LINUX_VERSION_PROBED) \
|
|
USER_EXTRA_CFLAGS=-DCONFIG_$(call qstrip,$(BR2_ENDIAN))_ENDIAN
|
|
|
|
define RTL8821AU_FIRMWARE_INSTALL
|
|
mkdir -p $(TARGET_DIR)/lib/firmware/rtlwifi/
|
|
$(INSTALL) -D -m 0644 $(@D)/firmware/* $(TARGET_DIR)/lib/firmware/rtlwifi/
|
|
endef
|
|
|
|
RTL8821AU_POST_INSTALL_TARGET_HOOKS += RTL8821AU_FIRMWARE_INSTALL
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|