X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2Fppc44x%2Fimage%2FMakefile;h=aa6851341a654b6d89ff62a7ad994b7b25df1333;hb=0b686a0ab95aca103224dcbed2e48e6722f07452;hp=bd284eb975e5fd5ae8a1efbbf1370bc01bf14d34;hpb=402669ffa1b1e78f1b6bcbffca7e5b8966a209a9;p=openwrt-10.03%2F.git diff --git a/target/linux/ppc44x/image/Makefile b/target/linux/ppc44x/image/Makefile index bd284eb97..aa6851341 100644 --- a/target/linux/ppc44x/image/Makefile +++ b/target/linux/ppc44x/image/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2007 OpenWrt.org +# +# Copyright (C) 2007-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,7 +10,8 @@ include $(INCLUDE_DIR)/image.mk JFFS2_BLOCKSIZE=256k define Image/Prepare - cp $(LINUX_DIR)/arch/ppc/boot/images/uImage $(KDIR)/uImage + cp $(LINUX_DIR)/arch/powerpc/boot/cuImage.taishan $(KDIR)/uImage + $(LINUX_DIR)/scripts/dtc/dtc -O dtb -R 4 -S 0x20000 $(LINUX_DIR)/arch/powerpc/boot/dts/canyonlands.dts > $(KDIR)/openwrt-canyonlands.dtb endef define Image/BuildKernel @@ -23,7 +24,7 @@ endef define Image/Build/jffs2-256k ( \ - dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=4096k conv=sync; \ + dd if=$(KDIR)/uImage bs=2048k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \ ) > $(BIN_DIR)/openwrt-$(BOARD)-jffs2.img endef @@ -31,9 +32,14 @@ endef define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) ( \ - dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=4096k conv=sync; \ + dd if=$(KDIR)/uImage bs=2048k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(BOARD)-taishan-$(1).img + ( \ + dd if=$(LINUX_DIR)/arch/powerpc/boot/uImage bs=1920k conv=sync; \ + dd if=$(KDIR)/openwrt-canyonlands.dtb bs=128k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \ - ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img + ) > $(BIN_DIR)/openwrt-$(BOARD)-canyonlands-$(1).img endef $(eval $(call BuildImage))