diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 15:32:48 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 15:32:48 +0000 |
commit | 342ab781f5c77960c061b1479286dbbe3d3370e0 (patch) | |
tree | 649abd677f04e0a389d29f8c6a3c53da7b04faf6 /target/linux/ar71xx/image/Makefile | |
parent | 891d26ab516f98600c8b41a6dc8878e1305c95dd (diff) | |
download | mtk-20170518-342ab781f5c77960c061b1479286dbbe3d3370e0.zip mtk-20170518-342ab781f5c77960c061b1479286dbbe3d3370e0.tar.gz mtk-20170518-342ab781f5c77960c061b1479286dbbe3d3370e0.tar.bz2 |
ar71xx: simplify WP543 image generation, and fix rootfs offset
SVN-Revision: 20063
Diffstat (limited to 'target/linux/ar71xx/image/Makefile')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index e2df87b..b16ee5d 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -205,22 +205,10 @@ define Image/Build/PB4X endef define Image/Build/MyLoader - -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) \ + -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) -s $(3) \ -p0x030000:0xe0000:al:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \ - -p0x100000:0:::rootfs:$(KDIR)/root.$(1) \ - $(call imgname,$(1),$(2))-2M.img - -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) -s 0x400000 \ - -p0x030000:0xe0000:al:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \ - -p0x100000:0:::rootfs:$(KDIR)/root.$(1) \ - $(call imgname,$(1),$(2))-4M.img - -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) -s 0x800000 \ - -p0x030000:0xe0000:al:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \ - -p0x100000:0:::rootfs:$(KDIR)/root.$(1) \ - $(call imgname,$(1),$(2))-8M.img - -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) -s 0x1000000 \ - -p0x030000:0xe0000:al:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \ - -p0x100000:0:::rootfs:$(KDIR)/root.$(1) \ - $(call imgname,$(1),$(2))-16M.img + -p0x110000:0:::rootfs:$(KDIR)/root.$(1) \ + $(call imgname,$(1),$(2))-$(4)-factory.img endef ubntxm_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1024k(kernel),6528k(rootfs),256k(cfg)ro,64k(EEPROM)ro,7552k@0x50000(firmware) @@ -404,7 +392,10 @@ define Image/Build/Profile/PB44 endef define Image/Build/Profile/WP543 - $(call Image/Build/Template/$(fs_64k)/$(1),MyLoader,wp543) + $(call Image/Build/Template/$(fs_64k)/$(1),MyLoader,wp543,0x200000,2M) + $(call Image/Build/Template/$(fs_64k)/$(1),MyLoader,wp543,0x400000,4M) + $(call Image/Build/Template/$(fs_64k)/$(1),MyLoader,wp543,0x800000,8M) + $(call Image/Build/Template/$(fs_64k)/$(1),MyLoader,wp543,0x1000000,16M) endef define Image/Build/Profile/DIR600A1 |