diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:32 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:32 +0000 |
commit | ea211c4d907574d0a8b3b4667fd7ac9a013fe4d9 (patch) | |
tree | c55e8441e9ce43e1ac236f74ee7f3011d6a0d3aa /target/linux/ramips/image | |
parent | 437e1844849ab385f5ab4cbaa0dc819bc3fba201 (diff) | |
download | mtk-20170518-ea211c4d907574d0a8b3b4667fd7ac9a013fe4d9.zip mtk-20170518-ea211c4d907574d0a8b3b4667fd7ac9a013fe4d9.tar.gz mtk-20170518-ea211c4d907574d0a8b3b4667fd7ac9a013fe4d9.tar.bz2 |
ramips: rt305x: add support for the Netcore NW718 board
SVN-Revision: 27813
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 22eaaa0..6954399 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)) |