diff options
author | Leah Rowe <leah@libreboot.org> | 2023-07-16 03:01:39 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-07-16 03:01:39 +0100 |
commit | e6002b91557bc4da7dccf06cd861a33a67262672 (patch) | |
tree | f738ea2490ab7f137cdf77306328f29fda32a6bf /resources/coreboot/cros/patches | |
parent | f34e07ae27e3e6e8508cdebcbd09fdf73fca302d (diff) |
coreboot/cros: fix acpica downloads
upstream died. i put the corresponding tarball on
libreboot rsync. this is used by the coreboot build
system, specifically in crossgcc (cross compilers)
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/coreboot/cros/patches')
-rw-r--r-- | resources/coreboot/cros/patches/0004-crossgcc-cros-also-fix-acpica-downloads-here.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/resources/coreboot/cros/patches/0004-crossgcc-cros-also-fix-acpica-downloads-here.patch b/resources/coreboot/cros/patches/0004-crossgcc-cros-also-fix-acpica-downloads-here.patch new file mode 100644 index 00000000..9f78f31f --- /dev/null +++ b/resources/coreboot/cros/patches/0004-crossgcc-cros-also-fix-acpica-downloads-here.patch @@ -0,0 +1,31 @@ +From a7fb02b80bc4ddae00ce7578054eb35d5c06b57b Mon Sep 17 00:00:00 2001 +From: Leah Rowe <leah@libreboot.org> +Date: Sun, 16 Jul 2023 02:25:23 +0100 +Subject: [PATCH 1/1] crossgcc/cros: also fix acpica downloads here + +my last revision said in libreboot/gnuboot it was +only broken in fam15h boards, but the fix is needed +here too. i've already put the correct tarball on +libreboot rsync, for this purpose + +Signed-off-by: Leah Rowe <leah@libreboot.org> +--- + util/crossgcc/buildgcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc +index b25b260807..327297cea3 100755 +--- a/util/crossgcc/buildgcc ++++ b/util/crossgcc/buildgcc +@@ -52,7 +52,7 @@ MPFR_ARCHIVE="https://ftpmirror.gnu.org/mpfr/mpfr-${MPFR_VERSION}.tar.xz" + MPC_ARCHIVE="https://ftpmirror.gnu.org/mpc/mpc-${MPC_VERSION}.tar.gz" + GCC_ARCHIVE="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz" + BINUTILS_ARCHIVE="https://ftpmirror.gnu.org/binutils/binutils-${BINUTILS_VERSION}.tar.xz" +-IASL_ARCHIVE="https://acpica.org/sites/acpica/files/acpica-unix2-${IASL_VERSION}.tar.gz" ++IASL_ARCHIVE="https://mirror.math.princeton.edu/pub/libreboot/misc/acpica/acpica-unix2-${IASL_VERSION}.tar.gz" + # CLANG toolchain archive locations + LLVM_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}/llvm-${CLANG_VERSION}.src.tar.xz" + CLANG_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}/clang-${CLANG_VERSION}.src.tar.xz" +-- +2.40.1 + |