[openwrt/openwrt] trusted-firmware-a.mk: fix release download URL
LEDE Commits
lede-commits at lists.infradead.org
Sat Dec 28 02:20:23 PST 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/4b6eb631e18b3ccccada91d5bccbb684e6ccc5a4
commit 4b6eb631e18b3ccccada91d5bccbb684e6ccc5a4
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>
---
include/trusted-firmware-a.mk | 2 +-
package/boot/arm-trusted-firmware-stm32/Makefile | 5 +----
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/include/trusted-firmware-a.mk b/include/trusted-firmware-a.mk
index b44cec8d07..c0d11d68c4 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)
diff --git a/package/boot/arm-trusted-firmware-stm32/Makefile b/package/boot/arm-trusted-firmware-stm32/Makefile
index 7f486885d3..403f53acc8 100644
--- a/package/boot/arm-trusted-firmware-stm32/Makefile
+++ b/package/boot/arm-trusted-firmware-stm32/Makefile
@@ -10,10 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_VERSION:=2.12
PKG_RELEASE:=1
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=https://github.com/ARM-software/arm-trusted-firmware.git
-PKG_SOURCE_VERSION:=v$(PKG_VERSION)
-PKG_MIRROR_HASH:=51b2022baa25df7fd8f2e6d2709c9351c14b17447cda64759a8a1d432f9d1c11
+PKG_HASH:=b4c047493cac1152203e1ba121ae57267e4899b7bf56eb365e22a933342d31c9
PKG_MAINTAINER:=Thomas Richard <thomas.richard at bootlin.com>
include $(INCLUDE_DIR)/kernel.mk
More information about the lede-commits
mailing list