X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/636f4cc8ac224f27632009f6314287961d1ccc31..f7bbf53880298080015cc9f9b9e7a1405fe83c49:/target/linux/magicbox-2.6/image/Makefile diff --git a/target/linux/magicbox-2.6/image/Makefile b/target/linux/magicbox-2.6/image/Makefile index fe68f35d5..f99590f1e 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))