diff options
author | Luis Araneda <luaraneda@gmail.com> | 2019-08-18 10:59:11 -0400 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-09-04 13:41:21 +0200 |
commit | 3112703077f43f269a71a0de37cbafa4ca77c49b (patch) | |
tree | 690903d5fbc9b877ecbb7d0a7da45f2c5813a9e6 /include/u-boot.mk | |
parent | 730befb9e6241d335d5609cb6daed560f7bf090b (diff) | |
download | upstream-3112703077f43f269a71a0de37cbafa4ca77c49b.tar.gz upstream-3112703077f43f269a71a0de37cbafa4ca77c49b.tar.bz2 upstream-3112703077f43f269a71a0de37cbafa4ca77c49b.zip |
u-boot.mk: use openwrt url instead of lede project
The LEDE URL is automatically redirected to the OpenWRT one,
returning an HTTP 301 code (Moved Permanently).
Also, use https, as indicated by the redirect.
Signed-off-by: Luis Araneda <luaraneda@gmail.com>
(cherry picked from commit b39ded4ab7e02cedd50810a206dadd71e1ea7fb7)
Diffstat (limited to 'include/u-boot.mk')
-rw-r--r-- | include/u-boot.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/u-boot.mk b/include/u-boot.mk index 26e1685b8e..02e37d0f4c 100644 --- a/include/u-boot.mk +++ b/include/u-boot.mk @@ -3,7 +3,7 @@ PKG_NAME ?= u-boot ifndef PKG_SOURCE_PROTO PKG_SOURCE = $(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL = \ - http://sources.lede-project.org \ + https://sources.openwrt.org \ ftp://ftp.denx.de/pub/u-boot endif |