Browse Source

lantiq: fix TD-W8970 image generation to work with the new tool

Signed-off-by: John Crispin <[email protected]>

SVN-Revision: 37727
John Crispin 12 years ago
parent
commit
94666dad1c
1 changed files with 8 additions and 2 deletions
  1. 8 2
      target/linux/lantiq/image/Makefile

+ 8 - 2
target/linux/lantiq/image/Makefile

@@ -50,7 +50,7 @@ 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
 
@@ -82,6 +82,12 @@ 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
 	$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva)
@@ -264,7 +270,7 @@ Image/BuildKernel/Profile/VG3503J=$(call Image/BuildKernelLoader/Template,VG3503
 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