diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-04-21 12:10:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-04-21 12:10:44 +0000 |
commit | 5f066898f2520e14a3c10fd3e013d3a1e92d3138 (patch) | |
tree | fe7bd1dfb02e7d6ef5cd7c1a3a2178d15a78bda2 /package | |
parent | 7e2be0b51688d175bba71c0693f925a2a29a49b0 (diff) | |
download | upstream-5f066898f2520e14a3c10fd3e013d3a1e92d3138.tar.gz upstream-5f066898f2520e14a3c10fd3e013d3a1e92d3138.tar.bz2 upstream-5f066898f2520e14a3c10fd3e013d3a1e92d3138.zip |
mt76: remove specific firmware versions from makefile
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45549 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/mt76/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package/kernel/mt76/Makefile b/package/kernel/mt76/Makefile index 345c038dce..31cd1208cb 100644 --- a/package/kernel/mt76/Makefile +++ b/package/kernel/mt76/Makefile @@ -10,7 +10,7 @@ PKG_LICENSE_FILES:= PKG_SOURCE_URL:=https://github.com/openwrt/mt76 PKG_SOURCE_PROTO:=git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=a94e01211aed8eac39331bc030fd3474357f05e0 +PKG_SOURCE_VERSION:=d637dc05ab56d103908d50353d9020f119611163 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> @@ -46,8 +46,10 @@ endef define KernelPackage/mt76/install $(INSTALL_DIR) $(1)/lib/firmware - $(CP) $(PKG_BUILD_DIR)/firmware/mt7662_patch_e3_hdr_v0.0.2_P48.bin $(1)/lib/firmware/mt7662_rom_patch.bin - $(CP) $(PKG_BUILD_DIR)/firmware/mt7662_firmware_e3_v1.5.bin $(1)/lib/firmware/mt7662.bin + cp \ + $(PKG_BUILD_DIR)/firmware/mt7662_rom_patch.bin \ + $(PKG_BUILD_DIR)/firmware/mt7662.bin \ + $(1)/lib/firmware endef $(eval $(call KernelPackage,mt76)) |