X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9353ef4694b128c7b9a8083e940223959770139b..fd5cb878895238e81533c528a162954efc354c23:/target/linux/adm5120/image/router_be.mk

diff --git a/target/linux/adm5120/image/router_be.mk b/target/linux/adm5120/image/router_be.mk
index c45d28169..5a166722f 100644
--- a/target/linux/adm5120/image/router_be.mk
+++ b/target/linux/adm5120/image/router_be.mk
@@ -1,79 +1,48 @@
 #
-# Copyright (C) 2007 OpenWrt.org
+# Copyright (C) 2007,2008 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
 #
 
 define Image/Build/ZyXEL
+	$(call Image/Build/Loader,$(2),bin,0x80500000,0,y,$(2))
 	$(call Image/Build/TRXNoloader,$(call imgname,$(1),$(2)).trx,$(1))
+	$(STAGING_DIR_HOST)/bin/mkzynfw -B $(2) \
+		-b $(KDIR)/loader-$(2).bin \
+		-r $(call imgname,$(1),$(2)).trx:0x10000 \
+		-o $(call imgname,$(1),$(2))-webui.bin
 endef
 
-#
-# ZyXEL Prestige 334WT
-#
-define Image/Build/Board/P-334WT
-	$(call Image/Build/ZyXEL,$(1),p-334wt)
+define Image/Build/Template/ZyXEL
+	$(call Image/Build/ZyXEL,$(1),$(2))
 endef
 
-define Image/Build/Board/P-334WT/squashfs
-	$(call Image/Build/Board/P-334WT,squashfs)
+define Image/Build/Template/ZyXEL/squashfs
+	$(call Image/Build/Template/ZyXEL,squashfs,$(1))
 endef
 
-define Image/Build/Board/P-334WT/jffs2-64k
-	$(call Image/Build/Board/P-334WT,jffs2-64k)
+define Image/Build/Template/ZyXEL/jffs2
+	$(call Image/Build/Template/ZyXEL,jffs2,$(1))
 endef
 
-define Image/Build/Board/P-334WT/Initramfs
-	$(call Image/Build/LZMAKernel/KArgs,p-334wt,bin)
-endef
-
-#
-# ZyXEL Prestige 335WT
-#
-define Image/Build/Board/P-335WT
-	$(call Image/Build/ZyXEL,$(1),p-335wt)
-endef
-
-define Image/Build/Board/P-335WT/squashfs
-	$(call Image/Build/Board/P-335WT,$(1))
-endef
-
-define Image/Build/Board/P-335WT/jffs2-64k
-	$(call Image/Build/Board/P-335WT,$(1))
-endef
-
-define Image/Build/Board/P-335WT/Initramfs
-	$(call Image/Build/LZMAKernel/KArgs,p-335wt,bin)
-endef
-
-#
-# Groups
-#
-define Image/Build/Group/All
-	$(call Image/Build/Board/P-334WT/$(1))
-	$(call Image/Build/Board/P-335WT/$(1))
+define Image/Build/Template/ZyXEL/Initramfs
+	$(call Image/Build/LZMAKernel/KArgs,$(1),bin)
 endef
 
 #
 # Profiles
 #
-define Image/Build/Profile/Generic
-	$(call Image/Build/Group/All,$(1))
-endef
-
-define Image/Build/Profile/Atheros
-	$(call Image/Build/Group/All,$(1))
+define Image/Build/Profile/P334WT
+	$(call Image/Build/Template/ZyXEL/$(1),p-334wt)
 endef
 
-define Image/Build/Profile/Texas
-	$(call Image/Build/Group/All,$(1))
+define Image/Build/Profile/P335WT
+	$(call Image/Build/Template/ZyXEL/$(1),p-335wt)
 endef
 
-define Image/Build/Profile/P-334WT
-	$(call Image/Build/Board/P-334WT/$(1))
+define Image/Build/Profile/Generic
+	$(call Image/Build/Profile/P334WT,$(1))
+	$(call Image/Build/Profile/P335WT,$(1))
 endef
 
-define Image/Build/Profile/P-335WT
-	$(call Image/Build/Board/P-335WT/$(1))
-endef