mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 03:09:08 +08:00
87266b3f7e
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org> (cherry picked from commit d6d00ec0701f2fdee36cae91fa86e71c9a66a0d2)
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2020 stepheny
|
|
# <https://github.com/aircrack-ng/rtl8812au/pull/619>
|
|
#
|
|
# Copyright (C) 2021-2022 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=rtl8812au-ac
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://github.com/aircrack-ng/rtl8812au.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2022-12-23
|
|
PKG_SOURCE_VERSION:=ee299797bcd54d5b8c58d2da8576c54cea1a03a2
|
|
PKG_MIRROR_HASH:=fb72b28e123f9dead470a0b94ef9d56e59c10e4f0baf09ba820e5c34a743decc
|
|
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Marty Jones <mj8263788@gmail.com>
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
STAMP_CONFIGURED_DEPENDS := $(STAGING_DIR)/usr/include/mac80211-backport/backport/autoconf.h
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/rtl8812au-ac
|
|
SUBMENU:=Wireless Drivers
|
|
TITLE:=Realtek RTL8812AU/21AU wireless drivers
|
|
DEPENDS:=+kmod-cfg80211 +kmod-usb-core +@DRIVER_11N_SUPPORT +@DRIVER_11AC_SUPPORT
|
|
FILES:=$(PKG_BUILD_DIR)/rtl8812au.ko
|
|
AUTOLOAD:=$(call AutoProbe,rtl8812au)
|
|
CONFLICTS:=kmod-rtl8812au-ct
|
|
endef
|
|
|
|
NOSTDINC_FLAGS:= \
|
|
$(KERNEL_NOSTDINC_FLAGS) \
|
|
-I$(PKG_BUILD_DIR) \
|
|
-I$(PKG_BUILD_DIR)/include \
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport \
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport/uapi \
|
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
|
-I$(STAGING_DIR)/usr/include/mac80211/uapi \
|
|
-include backport/autoconf.h \
|
|
-include backport/backport.h
|
|
|
|
NOSTDINC_FLAGS+= \
|
|
-DRTW_SINGLE_WIPHY \
|
|
-DRTW_USE_CFG80211_STA_EVENT \
|
|
-DCONFIG_IOCTL_CFG80211 \
|
|
-DBUILD_OPENWRT
|
|
|
|
ifeq ($(CONFIG_BIG_ENDIAN),y)
|
|
NOSTDINC_FLAGS+= -DCONFIG_BIG_ENDIAN
|
|
else
|
|
NOSTDINC_FLAGS+= -DCONFIG_LITTLE_ENDIAN
|
|
endif
|
|
|
|
define Build/Compile
|
|
+$(KERNEL_MAKE) $(PKG_JOBS) \
|
|
M="$(PKG_BUILD_DIR)" \
|
|
NOSTDINC_FLAGS="$(NOSTDINC_FLAGS)" \
|
|
CONFIG_88XXAU=m \
|
|
USER_MODULE_NAME=rtl8812au \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,rtl8812au-ac))
|