diff options
author | Felix Singer <felixsinger@posteo.net> | 2024-02-24 18:52:54 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-04-17 17:18:58 +0000 |
commit | 055c6d5c349c6e12842d4ba6cf4235642dabc3de (patch) | |
tree | 0e8c168883e797c1e891e5ba9c0d0656ffcfa2de /util/crossgcc/patches/acpica-unix-20230628_iasl.patch | |
parent | 072e8c34f119db4ed2e287bc54e6f9fca595dc77 (diff) |
util/crossgcc/buildgcc: Use Intel mirror for ACPICA
The binary hashes from GitHub releases are not stable. Use the Intel
mirror.
Change-Id: If3738b0cdab07c37ac1459a53e399e5de54435d5
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80721
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'util/crossgcc/patches/acpica-unix-20230628_iasl.patch')
-rw-r--r-- | util/crossgcc/patches/acpica-unix-20230628_iasl.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/util/crossgcc/patches/acpica-unix-20230628_iasl.patch b/util/crossgcc/patches/acpica-unix-20230628_iasl.patch new file mode 100644 index 0000000000..55adb83af2 --- /dev/null +++ b/util/crossgcc/patches/acpica-unix-20230628_iasl.patch @@ -0,0 +1,28 @@ +diff --git a/source/compiler/asloptions.c b/source/compiler/asloptions.c +index 4bf9465ba..14c61a122 100644 +--- a/source/compiler/asloptions.c ++++ b/source/compiler/asloptions.c +@@ -234,6 +234,7 @@ AslCommandLine ( + if (AslGbl_DoSignon) + { + printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME)); ++ printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION); + if (AslGbl_IgnoreErrors) + { + printf ("Ignoring all errors, forcing AML file generation\n\n"); +@@ -866,6 +867,7 @@ AslDoOptions ( + case '^': + + printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME)); ++ printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION); + exit (0); + + case 'a': +@@ -879,6 +881,7 @@ AslDoOptions ( + + printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME)); + printf (ACPI_COMMON_BUILD_TIME); ++ printf ("%s\n", COREBOOT_TOOLCHAIN_VERSION); + exit (0); + + case 'e': |