Skip to content

Commit

Permalink
trusted-firmware-a.mk: fix release download URL
Browse files Browse the repository at this point in the history
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 <[email protected]>
Link: openwrt/openwrt#17360
Signed-off-by: Robert Marko <[email protected]>
  • Loading branch information
aiamadeus authored and robimarko committed Dec 28, 2024
1 parent cee18af commit 4b6eb63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/trusted-firmware-a.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 1 addition & 4 deletions package/boot/arm-trusted-firmware-stm32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>

include $(INCLUDE_DIR)/kernel.mk
Expand Down

0 comments on commit 4b6eb63

Please sign in to comment.