|
|
@@ -8,9 +8,9 @@ PKG_LICENSE_FILES:=
|
|
|
|
|
|
PKG_SOURCE_URL:=https://github.com/openwrt/mt76
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
-PKG_SOURCE_DATE:=2019-03-27
|
|
|
-PKG_SOURCE_VERSION:=a11b67348aeb2d3175c5995c747e7fc050c7df60
|
|
|
-PKG_MIRROR_HASH:=6ea603308fa568c8ab39eddd86d9c8110a10aa93971348f52ceda0e5bd423ec6
|
|
|
+PKG_SOURCE_DATE:=2019-06-25
|
|
|
+PKG_SOURCE_VERSION:=d680ab01cddd4aea1849363e0ef84df45d538fd5
|
|
|
+PKG_MIRROR_HASH:=be9deb1ed96cabf41010723caee9babf51ed3f70b31c48c63d649c85b07ab64e
|
|
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <[email protected]>
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
@@ -138,6 +138,15 @@ define KernelPackage/mt7603
|
|
|
AUTOLOAD:=$(call AutoProbe,mt7603e)
|
|
|
endef
|
|
|
|
|
|
+define KernelPackage/mt7615e
|
|
|
+ $(KernelPackage/mt76-default)
|
|
|
+ TITLE:=MediaTek MT7615 wireless driver
|
|
|
+ DEPENDS+=@PCI_SUPPORT +kmod-mt76-core
|
|
|
+ FILES:=\
|
|
|
+ $(PKG_BUILD_DIR)/mt7615/mt7615e.ko
|
|
|
+ AUTOLOAD:=$(call AutoProbe,mt7615e)
|
|
|
+endef
|
|
|
+
|
|
|
NOSTDINC_FLAGS = \
|
|
|
-I$(PKG_BUILD_DIR) \
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport/uapi \
|
|
|
@@ -181,6 +190,9 @@ endif
|
|
|
ifdef CONFIG_PACKAGE_kmod-mt7603
|
|
|
PKG_MAKE_FLAGS += CONFIG_MT7603E=m
|
|
|
endif
|
|
|
+ifdef CONFIG_PACKAGE_kmod-mt7615e
|
|
|
+ PKG_MAKE_FLAGS += CONFIG_MT7615E=m
|
|
|
+endif
|
|
|
|
|
|
define Build/Compile
|
|
|
+$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
|
|
@@ -233,6 +245,15 @@ define KernelPackage/mt7603/install
|
|
|
$(1)/lib/firmware
|
|
|
endef
|
|
|
|
|
|
+define KernelPackage/mt7615e/install
|
|
|
+ $(INSTALL_DIR) $(1)/lib/firmware
|
|
|
+ cp \
|
|
|
+ $(PKG_BUILD_DIR)/firmware/mt7615_cr4.bin \
|
|
|
+ $(PKG_BUILD_DIR)/firmware/mt7615_n9.bin \
|
|
|
+ $(PKG_BUILD_DIR)/firmware/mt7615_rom_patch.bin \
|
|
|
+ $(1)/lib/firmware
|
|
|
+endef
|
|
|
+
|
|
|
$(eval $(call KernelPackage,mt76-core))
|
|
|
$(eval $(call KernelPackage,mt76-usb))
|
|
|
$(eval $(call KernelPackage,mt76x02-usb))
|
|
|
@@ -244,4 +265,5 @@ $(eval $(call KernelPackage,mt76x2-common))
|
|
|
$(eval $(call KernelPackage,mt76x2u))
|
|
|
$(eval $(call KernelPackage,mt76x2))
|
|
|
$(eval $(call KernelPackage,mt7603))
|
|
|
+$(eval $(call KernelPackage,mt7615e))
|
|
|
$(eval $(call KernelPackage,mt76))
|