2014-11-20 20:27:36 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mt76
|
2016-11-03 11:37:00 +00:00
|
|
|
PKG_VERSION:=2016-11-03
|
2014-11-20 20:27:36 +00:00
|
|
|
PKG_RELEASE=1
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
|
|
|
PKG_SOURCE_URL:=https://github.com/openwrt/mt76
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2016-11-03 11:37:00 +00:00
|
|
|
PKG_SOURCE_VERSION:=adf1bbd03cc7e1117d44b3da4e584f6dd590c4d0
|
2014-11-20 20:27:36 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
|
|
|
|
|
2016-06-07 06:58:31 +00:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2014-11-20 20:27:36 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
2016-05-05 18:39:21 +00:00
|
|
|
STAMP_CONFIGURED_DEPENDS := $(STAGING_DIR)/usr/include/mac80211-backport/backport/autoconf.h
|
|
|
|
|
2014-11-20 20:27:36 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define KernelPackage/mt76
|
|
|
|
SUBMENU:=Wireless Drivers
|
2016-02-28 09:55:18 +00:00
|
|
|
TITLE:=MediaTek MT76x2/MT7603 wireless driver
|
2016-05-31 23:15:20 +00:00
|
|
|
DEPENDS:=+kmod-mac80211 +@DRIVER_11N_SUPPORT @PCI_SUPPORT @!LINUX_3_18
|
2016-01-01 18:57:54 +00:00
|
|
|
FILES:=\
|
|
|
|
$(PKG_BUILD_DIR)/mt76.ko \
|
2016-02-28 09:55:18 +00:00
|
|
|
$(PKG_BUILD_DIR)/mt76x2e.ko \
|
|
|
|
$(PKG_BUILD_DIR)/mt7603e.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,mac80211 mt76 mt76x2e mt7603e)
|
2014-11-20 20:27:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
NOSTDINC_FLAGS = \
|
|
|
|
-I$(PKG_BUILD_DIR) \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport/uapi \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211/uapi \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
2015-05-08 21:46:42 +00:00
|
|
|
-include backport/autoconf.h \
|
2014-11-20 20:27:36 +00:00
|
|
|
-include backport/backport.h
|
|
|
|
|
2015-05-08 21:46:42 +00:00
|
|
|
ifdef CONFIG_PACKAGE_MAC80211_MESH
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_MAC80211_MESH
|
|
|
|
endif
|
|
|
|
|
2014-11-20 20:27:36 +00:00
|
|
|
define Build/Compile
|
|
|
|
+$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
|
|
|
NOSTDINC_FLAGS="$(NOSTDINC_FLAGS)" \
|
|
|
|
modules
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/mt76/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
2015-04-21 12:10:44 +00:00
|
|
|
cp \
|
2016-04-09 10:24:58 +00:00
|
|
|
$(if $(CONFIG_TARGET_ramips_mt7628) || $(CONFIG_TARGET_ramips_mt7688), \
|
2016-03-02 17:40:55 +00:00
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7628_e1.bin \
|
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7628_e2.bin \
|
|
|
|
) \
|
2016-02-28 09:55:18 +00:00
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7603_e1.bin \
|
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7603_e2.bin \
|
2015-04-21 12:10:44 +00:00
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7662_rom_patch.bin \
|
|
|
|
$(PKG_BUILD_DIR)/firmware/mt7662.bin \
|
|
|
|
$(1)/lib/firmware
|
2014-11-20 20:27:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mt76))
|