1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 02:34:06 +02:00

ar71xx: put squash image right after the kernel on TP-Link boards

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29545 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2011-12-15 22:03:44 +00:00
parent a7f91afe84
commit f2945360c1

View File

@ -11,6 +11,10 @@ define imgname
$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(patsubst jffs2-%,jffs2,$(patsubst squashfs-%,squashfs,$(1))) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(patsubst jffs2-%,jffs2,$(patsubst squashfs-%,squashfs,$(1)))
endef endef
define rootfs_align
$(patsubst %-128k,0x20000,$(patsubst %-64k,0x10000,$(patsubst squashfs-%,4,$(1))))
endef
define sysupname define sysupname
$(call imgname,$(1),$(2))-sysupgrade.bin $(call imgname,$(1),$(2))-sysupgrade.bin
endef endef
@ -333,12 +337,14 @@ define Image/Build/TPLINK
-$(STAGING_DIR_HOST)/bin/mktplinkfw \ -$(STAGING_DIR_HOST)/bin/mktplinkfw \
-H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\
-k $(KDIR)/kernel-$(2).bin \ -k $(KDIR)/kernel-$(2).bin \
-r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) -a 0x10000 \ -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \
-a $(call rootfs_align,$(1)) -j \
-o $(call factoryname,$(1),$(2)) -o $(call factoryname,$(1),$(2))
-$(STAGING_DIR_HOST)/bin/mktplinkfw \ -$(STAGING_DIR_HOST)/bin/mktplinkfw \
-H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\
-k $(KDIR)/kernel-$(2).bin \ -k $(KDIR)/kernel-$(2).bin \
-r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) -a 0x10000 \ -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \
-a $(call rootfs_align,$(1)) -j \
-o $(call sysupname,$(1),$(2)) -o $(call sysupname,$(1),$(2))
endef endef
@ -355,12 +361,14 @@ define Image/Build/TPLINK-LZMA
-$(STAGING_DIR_HOST)/bin/mktplinkfw \ -$(STAGING_DIR_HOST)/bin/mktplinkfw \
-H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\
-k $(KDIR)/vmlinux-$(2).bin.lzma \ -k $(KDIR)/vmlinux-$(2).bin.lzma \
-r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) -a 0x10000 \ -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \
-a $(call rootfs_align,$(1)) -j \
-o $(call factoryname,$(1),$(2)) -o $(call factoryname,$(1),$(2))
-$(STAGING_DIR_HOST)/bin/mktplinkfw \ -$(STAGING_DIR_HOST)/bin/mktplinkfw \
-H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s \
-k $(KDIR)/vmlinux-$(2).bin.lzma \ -k $(KDIR)/vmlinux-$(2).bin.lzma \
-r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) -a 0x10000 \ -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \
-a $(call rootfs_align,$(1)) -j \
-o $(call sysupname,$(1),$(2)) -o $(call sysupname,$(1),$(2))
endef endef