X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=target%2Flinux%2Flantiq%2Fimage%2FMakefile;h=28cb96c8b7c3af4f8a8629c7422fb36a43eb9701;hb=e36568e74b406f5c718904b330fcc7cb34ab2a17;hp=0dbdb83854a22f38b3903311cffb5d29a712998b;hpb=d13cbb04adf221d6625fe52a8bb191b9381e0a5b;p=openwrt%2Fopenwrt.git diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 0dbdb83854..28cb96c8b7 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -1,4 +1,4 @@ -# +# # Copyright (C) 2010-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. @@ -6,8 +6,7 @@ # # boards missing since devicetree update -#EASY50712 ARV3527P GIGASX76X BTHOMEHUBV2B BTHOMEHUBV2BOPENRG -#WBMR P2601HNFX H201L +#EASY50712 ARV3527P BTHOMEHUBV2B BTHOMEHUBV2BOPENRG include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk @@ -50,14 +49,15 @@ define MkImageLzma endef define TPLinkImageLzma - mktplinkfw -c -B $(2) -W 2 -F 8Mltq -s \ + mktplinkfw2 -c -B $(2) -s \ -k $(KDIR)/vmlinux$(3)-$(1).lzma -o $(KDIR)/uImage-$(1)$(3) endef define MkImageEVA lzma2eva 0x80002000 0x80002000 $(KDIR)/vmlinux-$(1).lzma $(KDIR)/$(1).eva.prealign - dd if=$(KDIR)/$(1).eva.prealign of=$(KDIR)/$(1).eva bs=64k conv=sync - cat ./eva.dummy.squashfs >> $(KDIR)/$(1).eva + dd if=$(KDIR)/$(1).eva.prealign of=$(KDIR)/$(1).eva.align.64k bs=64k conv=sync + dd if=$(KDIR)/$(1).eva.prealign of=$(KDIR)/$(1).eva.align.128k bs=128k conv=sync + cat ./eva.dummy.squashfs >> $(KDIR)/$(1).eva.align.64k endef define CompressGzip @@ -82,8 +82,14 @@ define Image/Build/squashfs $(if $(3),$(call MkBrnImage,$(3),$(4),$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(3)-brnImage,$(2),$(1),$(5))) endef +define Image/BuildTPLink/squashfs + mktplinkfw2 -B $(3) -s -a 0x4 -j \ + -k $(KDIR)/vmlinux-$(2).lzma -r $(KDIR)/root.$(1) \ + -o $(BIN_DIR)/$(IMG_PREFIX)-$(2)-sysupgrade.image +endef + define Image/BuildEVA/squashfs - cat $(KDIR)/$(2).eva $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva + cat $(KDIR)/$(2).eva.align.64k $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva $(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva) endef @@ -93,8 +99,8 @@ define Image/BuildLoader/squashfs $(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image) endef -define Image/BuildNANDEVA/jffs2-128k - cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).rootfs +define Image/BuildEVA/jffs2-128k + cat $(KDIR)/$(2).eva.align.128k $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva endef define Image/Build/jffs2-64k @@ -112,6 +118,45 @@ define Image/Build/jffs2-256k cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image endef +define Image/Build/ubifs + +ifneq ($($(PROFILE)_UBIFS_OPTS),) + $(CP) $(KDIR)/root.ubifs $(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-rootfs.ubifs +endif +endef + +define Image/Build/ubi + +ifneq ($($(PROFILE)_UBI_OPTS),) + $(CP) $(KDIR)/root.ubi $(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-rootfs.ubi +endif +endef + +define Image/InstallKernel/Template + +ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),) + $(INSTALL_DIR) $(TARGET_DIR)/boot + +ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),) + $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage $(TARGET_DIR)/boot/ + ln -sf $(IMG_PREFIX)-$(1)-uImage $(TARGET_DIR)/boot/uImage +endif + +ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),) + $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-zImage $(TARGET_DIR)/boot/ + ln -sf $(IMG_PREFIX)-$(1)-zImage $(TARGET_DIR)/boot/zImage +endif +endif + +ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),) + $(INSTALL_DIR) $(TARGET_DIR)/boot + +ifneq ($(1),) + $(CP) $(KDIR)/$(1).dtb $(TARGET_DIR)/boot/ +endif +endif +endef + define Image/BuildKernel/Template $(call PatchKernelLzma,$(1)) $(call MkImageLzma,$(1)) @@ -142,16 +187,16 @@ define Image/BuildKernelTPLink/Template $(CP) $(KDIR)/uImage-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) $(call PatchKernelLzma,$(1),-initramfs) - $(call Image/BuildLoader/Template,$(1),-initramfs) - $(CP) $(KDIR)/loader-initramfs-$(1).bin $(BIN_DIR)/$(IMG_PREFIX)-$(1)-vmlinux-initramfs-loader - $(CP) $(KDIR)/vmlinux-initramfs-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-vmlinux-initramfs + $(call TPLinkImageLzma,$(1),$(2),-initramfs) + $(CP) $(KDIR)/uImage-$(1)-initramfs $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage-initramfs endif endef define Image/BuildKernelEVA/Template $(call PatchKernelLzma,$(1)) $(call MkImageEVA,$(1)) - $(CP) $(KDIR)/$(1).eva $(BIN_DIR)/$(IMG_PREFIX)-$(1).eva + $(CP) $(KDIR)/$(1).eva.align.64k $(BIN_DIR)/$(IMG_PREFIX)-$(1).eva.align.64k + $(CP) $(KDIR)/$(1).eva.align.128k $(BIN_DIR)/$(IMG_PREFIX)-$(1).eva.align.128k endef define Image/BuildKernelGzip/Template @@ -177,7 +222,6 @@ Image/Build/Profile/EASY98000SFLASH=$(call Image/Build/$(1),$(1),EASY98000SFLASH endif - ifeq ($(CONFIG_TARGET_lantiq_ase),y) Image/BuildKernel/Profile/DGN1000B=$(call Image/BuildKernel/Template,DGN1000B) @@ -186,7 +230,6 @@ Image/Build/Profile/DGN1000B=$(call Image/Build/$(1),$(1),DGN1000B) endif - ifeq ($(CONFIG_TARGET_lantiq_xway),y) # Danube @@ -220,15 +263,24 @@ Image/Build/Profile/ARV4520PW=$(call Image/Build/$(1),$(1),ARV4520PW) Image/BuildKernel/Profile/ARV452CQW=$(call Image/BuildKernel/Template,ARV452CQW) Image/Build/Profile/ARV452CQW=$(call Image/Build/$(1),$(1),ARV452CQW) +Image/BuildKernel/Profile/ARV7510PW22=$(call Image/BuildKernel/Template,ARV7510PW22) +Image/Build/Profile/ARV7510PW22=$(call Image/Build/$(1),$(1),ARV7510PW22) + Image/BuildKernel/Profile/ARV7518PW=$(call Image/BuildKernel/Template,ARV7518PW) Image/Build/Profile/ARV7518PW=$(call Image/Build/$(1),$(1),ARV7518PW) +Image/BuildKernel/Profile/ARV7519PW=$(call Image/BuildKernel/Template,ARV7519PW) +Image/Build/Profile/ARV7519PW=$(call Image/Build/$(1),$(1),ARV7519PW) + Image/BuildKernel/Profile/ARV752DPW=$(call Image/BuildKernel/Template,ARV752DPW) Image/Build/Profile/ARV752DPW=$(call Image/Build/$(1),$(1),ARV752DPW) Image/BuildKernel/Profile/ARV752DPW22=$(call Image/BuildKernel/Template,ARV752DPW22) Image/Build/Profile/ARV752DPW22=$(call Image/Build/$(1),$(1),ARV752DPW22) +Image/BuildKernel/Profile/GIGASX76X=$(call Image/BuildKernel/Template,GIGASX76X) +Image/Build/Profile/GIGASX76X=$(call Image/Build/$(1),$(1),GIGASX76X) + # AR9 Image/BuildKernel/Profile/DGN3500=$(call Image/BuildKernel/Template,DGN3500) @@ -249,8 +301,28 @@ Image/Build/Profile/FRITZ7320=$(call Image/BuildEVA/$(1),$(1),FRITZ7320) Image/BuildKernel/Profile/GR7000=$(call Image/BuildKernel/Template,GR7000) Image/Build/Profile/GR7000=$(call Image/Build/$(1),$(1),GR7000) +Image/BuildKernel/Profile/H201L=$(call Image/BuildKernel/Template,H201L) +Image/Build/Profile/H201L=$(call Image/Build/$(1),$(1),H201L) + +Image/BuildKernel/Profile/P2601HNFX=$(call Image/BuildKernel/Template,P2601HNFX) +Image/Build/Profile/P2601HNFX=$(call Image/Build/$(1),$(1),P2601HNFX) + +Image/BuildKernel/Profile/ARV7519RWV11=$(call Image/BuildKernel/Template,ARV7519RWV11,$(1)) +Image/Build/Profile/ARV7519RWV11=$(call Image/Build/$(1), $(1),ARV7519RWV11) + +Image/BuildKernel/Profile/ARV7519RWV12=$(call Image/BuildKernel/Template,ARV7519RWV12,$(1)) +Image/Build/Profile/ARV7519RWV12=$(call Image/Build/$(1), $(1),ARV7519RWV12) + +endif + + +ifeq ($(CONFIG_TARGET_lantiq_xrx200),y) # VR9 +Image/BuildKernel/Profile/P2812HNUFX=$(call Image/BuildKernel/Template,P2812HNUFX) +Image/InstallKernel/Template/P2812HNUFX=$(call Image/InstallKernel/Template,P2812HNUFX) +Image/Build/Profile/P2812HNUFX=$(call Image/Build/$(1),$(1),P2812HNUFX) + Image/BuildKernel/Profile/EASY80920NAND=$(call Image/BuildKernel/Template,EASY80920NAND) Image/Build/Profile/EASY80920NAND=$(call Image/Build/$(1),$(1),EASY80920NAND) @@ -258,16 +330,21 @@ Image/BuildKernel/Profile/EASY80920NOR=$(call Image/BuildKernel/Template,EASY809 Image/Build/Profile/EASY80920NOR=$(call Image/Build/$(1),$(1),EASY80920NOR) Image/BuildKernel/Profile/FRITZ3370=$(call Image/BuildKernelEVA/Template,FRITZ3370) -Image/Build/Profile/FRITZ3370=$(call Image/BuildNANDEVA/$(1),$(1),FRITZ3370) +Image/Build/Profile/FRITZ3370=$(call Image/BuildEVA/$(1),$(1),FRITZ3370) Image/BuildKernel/Profile/VG3503J=$(call Image/BuildKernelLoader/Template,VG3503J) Image/Build/Profile/VG3503J=$(call Image/BuildLoader/$(1),$(1),VG3503J) Image/BuildKernel/Profile/TDW8970=$(call Image/BuildKernelTPLink/Template,TDW8970,TD-W8970v1,$(1)) -Image/Build/Profile/TDW8970=$(call Image/Build/$(1),$(1),TDW8970) +Image/Build/Profile/TDW8970=$(call Image/BuildTPLink/$(1),$(1),TDW8970,TD-W8970v1) -endif +Image/BuildKernel/Profile/VGV7519NOR=$(call Image/BuildKernel/Template,VGV7519NOR,$(1)) +Image/Build/Profile/VGV7519NOR=$(call Image/Build/$(1),$(1),VGV7519NOR) + +Image/BuildKernel/Profile/VGV7519BRN=$(call Image/BuildKernel/Template,VGV7519BRN,$(1)) +Image/Build/Profile/VGV7519BRN=$(call Image/Build/$(1),$(1),VGV7519BRN,5D00008000,0x12345678,$(1)) +endif ifeq ($(CONFIG_TARGET_lantiq_svip_be),y) @@ -282,6 +359,10 @@ define Image/BuildKernel $(call Image/BuildKernel/Profile/$(PROFILE)) endef +define Image/InstallKernel + $(call Image/InstallKernel/Template/$(PROFILE)) +endef + define Image/Build $(call Image/Build/Profile/$(PROFILE),$(1)) endef