ar71xx: fix new mktplinkfw image code - flags for sysupgrade vs factory were swapped...
[openwrt.git] / target / linux / ar71xx / image / Makefile
index 9459683..8766756 100644 (file)
@@ -57,8 +57,8 @@ define Build/mktplinkfw
                -r $@ \
                -o $@.new \
                -a $(call rootfs_align,$(FILESYSTEM)) \
-               $(if $(findstring sysupgrade,$1),-j -X 0x40000) \
-               $(if $(findstring factory,$1),-j -X 0x40000 -s) \
+               $(if $(findstring sysupgrade,$1),-j -X 0x40000 -s) \
+               $(if $(findstring factory,$1),-j -X 0x40000) \
                $(if $(findstring initramfs,$1),-s -c)
        @mv $@.new $@
 endef