diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-03-31 12:17:08 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2015-03-31 12:17:08 +0000 |
commit | 64f0331645f2fae153269b57b7c52f7382f685c3 (patch) | |
tree | f14a9a276443ea657083a9d749a71baf32b19288 /target/linux/brcm47xx/image | |
parent | 5027f2bb4d995c4537db66e3da6fbada752fb752 (diff) | |
download | master-187ad058-64f0331645f2fae153269b57b7c52f7382f685c3.tar.gz master-187ad058-64f0331645f2fae153269b57b7c52f7382f685c3.tar.bz2 master-187ad058-64f0331645f2fae153269b57b7c52f7382f685c3.zip |
brcm47xx: image: convert generic subtarget to the new images system
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45183 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm47xx/image')
-rw-r--r-- | target/linux/brcm47xx/image/Makefile | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/target/linux/brcm47xx/image/Makefile b/target/linux/brcm47xx/image/Makefile index 2d1b230f27..273510253b 100644 --- a/target/linux/brcm47xx/image/Makefile +++ b/target/linux/brcm47xx/image/Makefile @@ -178,24 +178,17 @@ endef # Subtarget generic ################################################# -# $(1): filesystem type. -define Image/Build/generic/jffs2-64k - # BCM4705 with tg3 - $(call Image/Build/CyberTAN,$(1),wrt300n_v11,EWC2,1.51.2,$(patsubst jffs2-%,jffs2,$(1))) - $(call Image/Build/CyberTAN,$(1),wrt310n_v1,310N,1.0.10,$(patsubst jffs2-%,jffs2,$(1))) - $(call Image/Build/CyberTAN,$(1),wrt350n_v1,EWCG,1.04.1,$(patsubst jffs2-%,jffs2,$(1))) - $(call Image/Build/CyberTAN,$(1),wrt610n_v1,610N,1.0.1,$(patsubst jffs2-%,jffs2,$(1))) - - # BCMA SoC with SSB WiFi - $(call Image/Build/CyberTAN,$(1),wrt610n_v2,610N,2.0.0,$(patsubst jffs2-%,jffs2,$(1))) - $(call Image/Build/CyberTAN,$(1),e3000_v1,61XN,1.0.3,$(patsubst jffs2-%,jffs2,$(1))) -endef - -# $(1): filesystem type. -define Image/Build/generic/squashfs - $(call Image/Build/generic/jffs2-64k,$(1)) - $(call Image/Build/generic/jffs2-128k,$(1)) -endef +ifeq ($(SUBTARGET),generic) + # BCM4705 with tg3 + $(eval $(call LinksysDevice,wrt300n-v1.1,EWC2,1.51.2)) + $(eval $(call LinksysDevice,wrt310n-v1,310N,1.0.10)) + $(eval $(call LinksysDevice,wrt350n-v1,EWCG,1.04.1)) + $(eval $(call LinksysDevice,wrt610n-v1,610N,1.0.1)) + + # BCMA SoC with SSB WiFi + $(eval $(call LinksysDevice,wrt610n-v2,610N,2.0.0)) + $(eval $(call LinksysDevice,e3000-v1,61XN,1.0.3)) +endif ################################################# # Subtarget legacy |