diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-24 20:01:54 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-24 20:01:54 +0000 |
commit | d5cdcc5708e4f40db7ce9dd3883ac002501b09cf (patch) | |
tree | 4fda5bef32503d05f4daccf1d6ad60ff565dc8da /target/linux/ppc40x/image/Makefile | |
parent | 2e1993f08ea83b23974d4a10c3f5604460676a8f (diff) |
[ppc40x] add support for the OpenRB Medium board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16970 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ppc40x/image/Makefile')
-rw-r--r-- | target/linux/ppc40x/image/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/ppc40x/image/Makefile b/target/linux/ppc40x/image/Makefile index 60d85bffdd..d9586dd153 100644 --- a/target/linux/ppc40x/image/Makefile +++ b/target/linux/ppc40x/image/Makefile @@ -43,6 +43,10 @@ define Image/Build/jffs2-64k dd if=$(LINUX_DIR)/arch/powerpc/boot/cuImage.openrb-light bs=1152k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ ) > $(BIN_DIR)/openwrt-$(BOARD)-openrb-light-jffs2.img + ( \ + dd if=$(LINUX_DIR)/arch/powerpc/boot/cuImage.openrb-medium bs=1152k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(BOARD)-openrb-medium-jffs2.img endef define Image/Build/squashfs @@ -64,6 +68,10 @@ define Image/Build/squashfs dd if=$(LINUX_DIR)/arch/powerpc/boot/cuImage.openrb-light bs=1152k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ ) > $(BIN_DIR)/openwrt-$(BOARD)-openrb-light-$(1).img + ( \ + dd if=$(LINUX_DIR)/arch/powerpc/boot/cuImage.openrb-medium bs=1152k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(BOARD)-openrb-medium-$(1).img endef $(eval $(call BuildImage)) |