From: Petr Štetiar Date: Tue, 31 Dec 2019 09:34:29 +0000 (+0100) Subject: base-files: sysupgrade: exit if the firmware download failed X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=cf3da66d2ce11a30ae2993b56276ade10c9bddb9;p=openwrt%2Fstaging%2Fynezz.git base-files: sysupgrade: exit if the firmware download failed Sysupgrade process shouldn't continue if the firmware image couldn't be downloaded. Ref: http://lists.infradead.org/pipermail/openwrt-devel/2019-December/020940.html Reported-by: Petr Novák Signed-off-by: Petr Štetiar --- diff --git a/package/base-files/Makefile b/package/base-files/Makefile index cf5166772d..f203c29e95 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=base-files -PKG_RELEASE:=210 +PKG_RELEASE:=211 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index 935d08048e..6c518b780e 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -294,7 +294,7 @@ type platform_check_image >/dev/null 2>/dev/null || { case "$IMAGE" in http://*|\ https://*) - wget -O/tmp/sysupgrade.img "$IMAGE" + wget -O/tmp/sysupgrade.img "$IMAGE" || exit 1 IMAGE=/tmp/sysupgrade.img ;; esac