diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-03-27 19:38:13 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-03-27 19:38:13 +0000 |
commit | 6455178a6a66c36a916e4ba6bdffe18846e637b5 (patch) | |
tree | 9eb20980de0ee5aef5cc2fe5c38202f61e0b6782 | |
parent | e2bd975a2a26e615a7c253f9a8296a0efe1e3349 (diff) | |
download | upstream-6455178a6a66c36a916e4ba6bdffe18846e637b5.tar.gz upstream-6455178a6a66c36a916e4ba6bdffe18846e637b5.tar.bz2 upstream-6455178a6a66c36a916e4ba6bdffe18846e637b5.zip |
ar71xx: image: build initramfs images for more boards
SVN-Revision: 31116
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index da4d1fde5c..46eac5e12d 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -221,11 +221,19 @@ define Image/Build/Cameo913x $(call Image/Build/Cameo,$(1),$(2),$(3),$(cameo913x_mtdlayout),983040,2949120,$(4)) endef +define Image/Build/Cameo913x/initramfs + $(call MkuImageLzma/initramfs,$(2),$(3) $(cameo913x_mtdlayout)) +endef + cameo7240_mtdlayout=mtdparts=spi0.0:192k(u-boot)ro,64k(nvram)ro,960k(kernel),2752k(rootfs),64k(mac)ro,64k(art)ro,3712k@0x40000(firmware) define Image/Build/Cameo7240 $(call Image/Build/Cameo,$(1),$(2),$(3),$(cameo7240_mtdlayout),983040,2818048,$(4)) endef +define Image/Build/Cameo7240/initramfs + $(call MkuImageLzma/initramfs,$(2),$(3) $(cameo7240_mtdlayout)) +endef + define Image/Build/Ath $(call Sysupgrade/$(7),$(1),$(2),$(5),$(6)) if [ -e "$(call sysupname,$(1),$(2))" ]; then \ @@ -342,6 +350,10 @@ define Image/Build/ALFA fi endef +define Image/Build/ALFA/initramfs + $(call MkuImageLzma/initramfs,$(2),$(3)) +endef + define Image/Build/TPLINKOLD/loader $(call Image/BuildLoaderAlone,$(1),gz,$(2),0x22000,0) endef @@ -568,6 +580,10 @@ define Image/Build/Zcomax fi endef +define Image/Build/Zcomax/initramfs + $(call MkuImageLzma/initramfs,$(2),$(3)) +endef + define Image/Build/Template/initramfs/initramfs $(call Image/Build/$(1)/initramfs,initramfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) endef |