[openwrt/openwrt] build: switch VERSION_REPO to HTTPS

LEDE Commits lede-commits at lists.infradead.org
Mon Aug 31 06:30:00 EDT 2020


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c1875d1ebbd4c4bad45d7c93cf012317f8ce1810

commit c1875d1ebbd4c4bad45d7c93cf012317f8ce1810
Author: Paul Spooren <mail at aparcar.org>
AuthorDate: Thu Aug 27 11:47:08 2020 -1000

    build: switch VERSION_REPO to HTTPS
    
    The variable VERSION_REPO is used by opkg to download package(list)s.
    Now that the default installation support encrypted HTTP opkg should
    make use of it.
    
    Suggested-by: Petr Štetiar <ynezz at true.cz>
    Suggested-by: Baptiste Jonglez <baptiste at bitsofnetworks.org>
    Signed-off-by: Paul Spooren <mail at aparcar.org>
    Acked-by: Baptiste Jonglez <baptiste at bitsofnetworks.org>
---
 include/version.mk                 | 2 +-
 package/base-files/image-config.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/version.mk b/include/version.mk
index 7d3c1ad640..b7f42e13bb 100644
--- a/include/version.mk
+++ b/include/version.mk
@@ -32,7 +32,7 @@ VERSION_CODE:=$(call qstrip,$(CONFIG_VERSION_CODE))
 VERSION_CODE:=$(if $(VERSION_CODE),$(VERSION_CODE),$(REVISION))
 
 VERSION_REPO:=$(call qstrip,$(CONFIG_VERSION_REPO))
-VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),http://downloads.openwrt.org/snapshots)
+VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),https://downloads.openwrt.org/snapshots)
 
 VERSION_DIST:=$(call qstrip,$(CONFIG_VERSION_DIST))
 VERSION_DIST:=$(if $(VERSION_DIST),$(VERSION_DIST),OpenWrt)
diff --git a/package/base-files/image-config.in b/package/base-files/image-config.in
index 3432db525a..b5cd90f615 100644
--- a/package/base-files/image-config.in
+++ b/package/base-files/image-config.in
@@ -183,7 +183,7 @@ if VERSIONOPT
 	config VERSION_REPO
 		string
 		prompt "Release repository"
-		default "http://downloads.openwrt.org/snapshots"
+		default "https://downloads.openwrt.org/snapshots"
 		help
 			This is the repository address embedded in the image, it defaults
 			to the trunk snapshot repo; the url may contain the following placeholders:



More information about the lede-commits mailing list