From a9e97268fed2f29830159b984492351a05cef6b6 Mon Sep 17 00:00:00 2001 From: Zhixing Ma Date: Wed, 2 Jul 2025 18:18:12 -0700 Subject: [PATCH] crossgcc: Fix acpica base url version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to a recent acpica version upgrade, the acpica tool is now failing to download due to an incorrect url. This commit aims to fix the issue by updating the iasl base url to match the upgraded version. Change-Id: I7eddff2d17587f5d90295928800c10068c8cf281 Signed-off-by: Zhixing Ma Reviewed-on: https://review.coreboot.org/c/coreboot/+/88278 Tested-by: build bot (Jenkins) Reviewed-by: Jérémy Compostella Reviewed-by: Matt DeVillier Reviewed-by: Elyes Haouas --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 2f513d8333..1984054fa9 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -86,7 +86,7 @@ MPC_BASE_URL="https://ftpmirror.gnu.org/mpc" GCC_BASE_URL="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}" LIBSTDCXX_BASE_URL="${GCC_BASE_URL}" BINUTILS_BASE_URL="https://ftpmirror.gnu.org/binutils" -IASL_BASE_URL="https://github.com/acpica/acpica/releases/download/R2024_12_12" +IASL_BASE_URL="https://downloadmirror.intel.com/852044" # CLANG toolchain archive locations LLVM_BASE_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}" CLANG_BASE_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}"