diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-28 10:56:32 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-28 10:56:32 +0000 |
commit | ea7f49d5131d1f89161706bbdaf643d439fa6e0a (patch) | |
tree | ce9bafd97c09f9dbc8f0d07c3421477264afbf9f /target/linux/ramips/image | |
parent | 793574f5718fb9a8557c40bb621efd7b9abc8325 (diff) |
ramips: rt305x: add support for the Netcore NW718 board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27813 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/image')
-rw-r--r-- | target/linux/ramips/image/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index 22eaaa088..69543990f 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -89,6 +89,24 @@ define BuildFirmware/Buffalo fi; fi endef +define BuildFirmware/NW718 + $(call PatchKernelLzma,$(2),$(3) $($(4))) + mkimage -A mips -O linux -T kernel -C lzma $(call kernel_entry) \ + -n "ARA1B4NCRNW718;1" \ + -d "$(KDIR)/vmlinux-$(2).bin.lzma" \ + "$(KDIR)/vmlinux-$(2).uImage" + if [ `stat -c%s "$(KDIR)/vmlinux-$(2).uImage"` -gt $(5) ]; then \ + echo "Warning: $(KDIR)/vmlinux-$(2).uImage is too big"; \ + else if [ `stat -c%s $(KDIR)/root.$(1)` -gt $(6) ]; then \ + echo "Warning: $(KDIR)/root.$(1) is too big"; \ + else \ + ( \ + dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(5) conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ + ) > $(call imgname,$(1),$(2))-factory.bin; \ + fi; fi +endef + mtdlayout_4M=mtdparts=physmap-flash.0:192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,832k(kernel),2944k(rootfs),3776k@0x50000(firmware) define Image/Build/Template/GENERIC_4M $(call BuildFirmware/Generic,$(1),$(2),board=$(3),mtdlayout_4M,851968,3014656) @@ -109,6 +127,12 @@ define Image/Build/Template/DIR300B1 -o $(call imgname,$(1),$(2))-factory.bin endef +mtdlayout_nw718=mtdparts=spi0.0:192k(u-boot)ro,128k(config)ro,64k(factory)ro,832k(kernel),2880k(rootfs),3712k@0x60000(firmware) +define Image/Build/Template/NW718 + $(call BuildFirmware/Generic,$(1),$(2),board=$(3),mtdlayout_nw718,851968,2949120) + $(call BuildFirmware/NW718,$(1),$(2),board=$(3),mtdlayout_nw718,851968,2949120) +endef + define Image/Build/Profile/DIR300B1 $(call Image/Build/Template/DIR300B1,$(1),dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b) $(call Image/Build/Template/DIR300B1,$(1),dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b) @@ -130,6 +154,10 @@ define Image/Build/Profile/FONERA20N $(call Image/Build/Template/GENERIC_8M,$(1),fonera20n,FONERA20N) endef +define Image/Build/Profile/NW718 + $(call Image/Build/Template/NW718,$(1),nw718,NW718) +endef + define Image/Build/Profile/PWH2004 $(call Image/Build/Template/GENERIC_8M,$(1),pwh2004,PWH2004) endef @@ -189,6 +217,7 @@ define Image/Build/Profile/Default $(call Image/Build/Profile/RTG32B1,$(1)) $(call Image/Build/Profile/FONERA20N,$(1)) $(call Image/Build/Profile/V22RW2X2,$(1)) + $(call Image/Build/Profile/NW718,$(1)) $(call Image/Build/Profile/PWH2004,$(1)) $(call Image/Build/Profile/WHRG300N,$(1)) $(call Image/Build/Profile/WCR150GN,$(1)) |