diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-06-07 20:07:32 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-06-07 20:07:32 +0000 |
commit | 2cda2ff5752de60b39ced1e445364f76f5c13bdd (patch) | |
tree | c956b82d62e66737711cc34e344f6a1ca7d50507 /target/linux/ar71xx/image | |
parent | 2b67efae7c80c4b604420a2364648e46b0d5b407 (diff) | |
download | upstream-2cda2ff5752de60b39ced1e445364f76f5c13bdd.tar.gz upstream-2cda2ff5752de60b39ced1e445364f76f5c13bdd.tar.bz2 upstream-2cda2ff5752de60b39ced1e445364f76f5c13bdd.zip |
create jffs2 images
SVN-Revision: 16374
Diffstat (limited to 'target/linux/ar71xx/image')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 02efef03b5..e1b36c209f 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -119,7 +119,7 @@ define Image/Build/UBNT -B $(4) -v $(5).$(6).OpenWrt.$(REVISION) \ -k $(KDIR)/vmlinux-$(2).bin.lzma \ -r $(BIN_DIR)/openwrt-$(BOARD)-root.$(1) \ - -o $(BIN_DIR)/openwrt-$(BOARD)-$(2)-$(1).bin + -o $(call imgname,$(1),$(2)).bin endef define Image/Build/Planex @@ -174,6 +174,10 @@ define Image/Build/Template/Linksys8M/squashfs $(call Image/Build/Template/Linksys8M,squashfs,$(1),$(2),$(3)) endef +define Image/Build/Template/Linksys8M/jffs2-64k + $(call Image/Build/Template/Linksys8M,jffs2-64k,$(1),$(2),$(3)) +endef + define Image/Build/Template/AP81 $(call Image/Build/AP81,$(1),$(2),$(3),$(4)) endef @@ -190,6 +194,10 @@ define Image/Build/Template/AP83/squashfs $(call Image/Build/Template/AP83,squashfs,$(1),$(2)) endef +define Image/Build/Template/AP83/jffs2-64k + $(call Image/Build/Template/AP83,jffs2-64k,$(1),$(2)) +endef + define Image/Build/Template/TPLINK $(call Image/Build/TPLINK,$(1),$(2),$(3),$(4)) endef @@ -206,6 +214,10 @@ define Image/Build/Template/UBNT/squashfs $(call Image/Build/Template/UBNT,squashfs,$(1),$(2),$(3),$(4),$(5)) endef +define Image/Build/Template/UBNT/jffs2-64k + $(call Image/Build/Template/UBNT,jffs2-64k,$(1),$(2),$(3),$(4),$(5)) +endef + define Image/Build/Template/Planex $(call Image/Build/Planex,$(1),$(2),$(3)) endef @@ -214,6 +226,10 @@ define Image/Build/Template/Planex/squashfs $(call Image/Build/Template/Planex,squashfs,$(1),$(2)) endef +define Image/Build/Template/Planex/jffs2-64k + $(call Image/Build/Template/Planex,jffs2-64k,$(1),$(2)) +endef + define Image/Build/Profile/AP83 $(call Image/Build/Template/AP83/$(1),ap83,board=AP83) endef |