[openwrt/openwrt] trusted-firmware-a.mk: fix release download URL

LEDE Commits lede-commits at lists.infradead.org
Wed Jan 1 14:15:09 PST 2025


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-24.10:
https://git.openwrt.org/f91d8e9f37dd77b6dd4b0ea2e3d3c34f8dc3f2a3

commit f91d8e9f37dd77b6dd4b0ea2e3d3c34f8dc3f2a3
Author: Chukun Pan <amadeus at jmu.edu.cn>
AuthorDate: Fri Dec 20 22:30:01 2024 +0800

    trusted-firmware-a.mk: fix release download URL
    
    The URL of trusted-firmware-a is no longer available for
    downloading release:
    https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/
    curl: (22) The requested URL returned error: 401 Unauthorized
    
    So we switch to the GitHub mirror repository to download.
    
    Signed-off-by: Chukun Pan <amadeus at jmu.edu.cn>
    Link: https://github.com/openwrt/openwrt/pull/17360
    Signed-off-by: Robert Marko <robimarko at gmail.com>
    (cherry picked from commit 4b6eb631e18b3ccccada91d5bccbb684e6ccc5a4)
---
 include/trusted-firmware-a.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/trusted-firmware-a.mk b/include/trusted-firmware-a.mk
index e469dae984..40c9023f1d 100644
--- a/include/trusted-firmware-a.mk
+++ b/include/trusted-firmware-a.mk
@@ -3,7 +3,7 @@ PKG_CPE_ID ?= cpe:/a:arm:trusted_firmware-a
 
 ifndef PKG_SOURCE_PROTO
 PKG_SOURCE = trusted-firmware-a-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot
+PKG_SOURCE_URL:=https://codeload.github.com/TrustedFirmware-A/trusted-firmware-a/tar.gz/v$(PKG_VERSION)?
 endif
 
 PKG_BUILD_DIR = $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)




More information about the lede-commits mailing list