diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2007-05-26 15:36:22 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2007-05-26 15:36:22 +0000 |
commit | 8f83153369a227fe0531a8cbcdb53d76fba45756 (patch) | |
tree | 62e5584d5283eaaf46223779364e352ef34330c9 /target/linux/magicbox-2.6/image | |
parent | b62d62a3c401de0140f029918730d8bf40cf395f (diff) | |
download | upstream-8f83153369a227fe0531a8cbcdb53d76fba45756.tar.gz upstream-8f83153369a227fe0531a8cbcdb53d76fba45756.tar.bz2 upstream-8f83153369a227fe0531a8cbcdb53d76fba45756.zip |
fix magicbox, convert mtd mapping to platform_device, add support for combined flash layout
SVN-Revision: 7336
Diffstat (limited to 'target/linux/magicbox-2.6/image')
-rw-r--r-- | target/linux/magicbox-2.6/image/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/target/linux/magicbox-2.6/image/Makefile b/target/linux/magicbox-2.6/image/Makefile index fe68f35d5e..f99590f1ea 100644 --- a/target/linux/magicbox-2.6/image/Makefile +++ b/target/linux/magicbox-2.6/image/Makefile @@ -21,16 +21,17 @@ endef define Image/Build/jffs2-64k ( \ - dd if=$(KDIR)/uImage bs=65536 conv=sync; \ + dd if=$(KDIR)/uImage bs=1024k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \ ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img endef -#define Image/Build/jffs2-128k -# ( \ -# dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=131072 conv=sync; \ -# dd if=$(KDIR)/root.$(1) bs=131072 conv=sync; \ -# ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img -#endef +define Image/Build/squashfs + $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) + ( \ + dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=1024k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img +endef $(eval $(call BuildImage)) |