diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-11-25 09:51:25 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-11-25 09:51:25 +0000 |
commit | 523aba9ff9f9f4489f9c390ed703f29b0d8d9f43 (patch) | |
tree | b70d52bcead52442613683dfe57432dad2e35b24 /target/linux/ar71xx/image/Makefile | |
parent | 1efac75b08d5cea49a71d44887c5944b2d835d1f (diff) | |
download | mtk-20170518-523aba9ff9f9f4489f9c390ed703f29b0d8d9f43.zip mtk-20170518-523aba9ff9f9f4489f9c390ed703f29b0d8d9f43.tar.gz mtk-20170518-523aba9ff9f9f4489f9c390ed703f29b0d8d9f43.tar.bz2 |
ar71xx: create combined images for the RS, RS-PRO and LS-SR71 boards, and add sysupgrade support for them
SVN-Revision: 18531
Diffstat (limited to 'target/linux/ar71xx/image/Makefile')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 24b1fa3..30663f1 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -161,7 +161,11 @@ define Image/Build/UBNT -B $(4) -v $(5).$(6).OpenWrt.$(REVISION) \ -k $(KDIR)/vmlinux-$(2).lzma \ -r $(BIN_DIR)/openwrt-$(BOARD)-root.$(1) \ - -o $(call imgname,$(1),$(2)).bin + -o $(call imgname,$(1),$(2))-factory.bin + -sh $(TOPDIR)/scripts/combined-image.sh \ + "$(KDIR)/vmlinux-$(2).lzma" \ + "$(BIN_DIR)/openwrt-$(BOARD)-root.$(1)" \ + $(call imgname,$(1),$(2))-sysupgrade.bin endef define Image/Build/Planex @@ -431,6 +435,11 @@ endef define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) + dd if=$(KDIR)/root.squashfs of=$(KDIR)/root.squashfs-4k.tmp0 bs=4k conv=sync + $(call add_jffs2_mark,$(KDIR)/root.squashfs-4k.tmp0) + dd if=$(KDIR)/root.squashfs-4k.tmp0 of=$(IMGNAME)-root.squashfs-4k bs=4k conv=sync + $(call add_jffs2_mark,$(IMGNAME)-root.squashfs-4k) + rm -f $(KDIR)/root.squashfs-4k.tmp0 endef define Image/Build |