X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b806b008065672cf155ff31b757d36b8f67cac17..16cbe040ffadb2e79c42766c59305bf9ab8629e8:/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 77ff88f52..f99590f1e 100644 --- a/target/linux/magicbox-2.6/image/Makefile +++ b/target/linux/magicbox-2.6/image/Makefile @@ -7,9 +7,6 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -define Build/Clean -endef - define Image/Prepare cp $(LINUX_DIR)/arch/ppc/boot/images/uImage $(KDIR)/uImage endef @@ -24,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))