diff options
| author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-06 19:07:47 +0000 | 
|---|---|---|
| committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-06 19:07:47 +0000 | 
| commit | 136e608800cdf0f02b063719ac70b5d66fe5787c (patch) | |
| tree | 9f871ca9eea07c071e6e5203a350890b41bc4486 | |
| parent | dad8416aecc31c7f701ab3a541261679d1848850 (diff) | |
[ar71xx] create firmware image for the WRT160NL board (thanks to Gerry Rozema)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17151 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | target/linux/ar71xx/image/Makefile | 37 | 
1 files changed, 37 insertions, 0 deletions
| diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index d1d4b47fd..816f27e63 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -159,6 +159,26 @@ define Image/Build/TPLINK  		-o $(call imgname,$(1),$(2)).uni  endef +define Image/Build/CyberTAN +	cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2) +	$(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))' +	gzip -9 -c $(KDIR)/vmlinux-$(2) > $(KDIR)/vmlinux-$(2).bin.gzip +	mkimage -A mips -O linux -T kernel -a 0x80060000 -C gzip -e \ +		0x80060000 \ +		-n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \ +		-d $(KDIR)/vmlinux-$(2).bin.gzip $(KDIR)/vmlinux-$(2).uImage +	( \ +		dd if=$(KDIR)/vmlinux-$(2).uImage bs=64k conv=sync; \ +		dd if=/dev/zero bs=1 count=65476; \ +		dd if=$(KDIR)/root.$(1) bs=64k; \ +	) > $(KDIR)/vmlinux-$(2).image +	$(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/vmlinux-$(2).trx \ +		-f $(KDIR)/vmlinux-$(2).image +	-$(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(4) -g \ +		-i $(KDIR)/vmlinux-$(2).trx \ +		-o $(call imgname,$(1),$(2)).bin +endef +  define Image/Build/Template/Compex  	$(call Image/Build/MyLoader,$(1),$(2))  endef @@ -179,6 +199,18 @@ define Image/Build/Template/WRT400N/jffs2-64k  	$(call Image/Build/Template/WRT400N,jffs2-64k,$(1),$(2),$(3))  endef +define Image/Build/Template/CyberTAN +	$(call Image/Build/CyberTAN,$(1),$(2),$(3),$(4)) +endef + +define Image/Build/Template/CyberTAN/squashfs +	$(call Image/Build/Template/CyberTAN,squashfs,$(1),$(2),$(3)) +endef + +define Image/Build/Template/CyberTAN/jffs2-64k +	$(call Image/Build/Template/CyberTAN,jffs2-64k,$(1),$(2),$(3)) +endef +  define Image/Build/Template/AP81  	$(call Image/Build/AP81,$(1),$(2),$(3),$(4))  endef @@ -305,6 +337,10 @@ define Image/Build/Profile/WRT400N  	$(call Image/Build/Template/WRT400N/$(1),wrt400n,board=WRT400N)  endef +define Image/Build/Profile/WRT160NL +	$(call Image/Build/Template/CyberTAN/$(1),wrt160nl,board=WRT160NL,1.00.01) +endef +  define Image/Build/Profile/Default  	$(call Image/Build/Profile/AP83,$(1))  	$(call Image/Build/Profile/A02RBW300N,$(1)) @@ -319,6 +355,7 @@ define Image/Build/Profile/Default  	$(call Image/Build/Profile/UBNT,$(1))  	$(call Image/Build/Profile/WP543,$(1))  	$(call Image/Build/Profile/WRT400N,$(1)) +	$(call Image/Build/Profile/WRT160NL,$(1))  endef  define Image/Build/Profile/Madwifi | 
