mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 11:09:57 +08:00
c741baa9e8
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2021 ImmortalWrt
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mt7601u-ap
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2020-05-01
|
|
PKG_SOURCE_URL:=https://github.com/Anthony96922/mt7601u-ap.git
|
|
PKG_SOURCE_VERSION:=624307427149e53b75937ccbe7cb235ec3ef2f58
|
|
PKG_MIRROR_HASH:=70e8f7e94ddca09e1f55ef1b30a47fa7c504750ec654bc0c500f1a3d491eca97
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/mt7601u-ap
|
|
SUBMENU:=Wireless Drivers
|
|
TITLE:=AP driver for MT7601U dongles
|
|
DEPENDS:=+kmod-usb-core +wireless-tools @USB_SUPPORT
|
|
FILES:=$(PKG_BUILD_DIR)/os/linux/mt7601Uap.ko
|
|
AUTOLOAD:=$(call AutoProbe,mt7601Uap)
|
|
CONFLICTS:=kmod-mt7601u
|
|
endef
|
|
|
|
define KernelPackage/mt7601u-ap/description
|
|
AP driver for MT7601U chipset based adapters
|
|
endef
|
|
|
|
MAKE_OPTS:= \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
CROSS_COMPILE="$(KERNEL_CROSS)" \
|
|
LINUX_SRC="$(LINUX_DIR)" \
|
|
RT28xx_DIR="$(PKG_BUILD_DIR)" \
|
|
RT28xx_MODE=AP \
|
|
CHIPSET=7601U \
|
|
MODULE=7601U \
|
|
OSABL=NO \
|
|
|
|
define Build/Prepare
|
|
$(Build/Prepare/Default)
|
|
$(CP) $(PKG_BUILD_DIR)/os/linux/Makefile.6 $(PKG_BUILD_DIR)/os/linux/Makefile
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
$(MAKE_OPTS) \
|
|
M="$(PKG_BUILD_DIR)/os/linux" \
|
|
modules
|
|
endef
|
|
|
|
define KernelPackage/mt7601u-ap/install
|
|
$(INSTALL_DIR) $(1)/etc/wifi/RT2870AP
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/RT2870AP.txt $(1)/etc/wifi/RT2870AP/
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,mt7601u-ap))
|