diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-06-29 20:43:20 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-07-02 11:46:53 +0000 |
commit | afa5383fdced8829689894a1833162b7361d9224 (patch) | |
tree | 65329593a01c42ece86ff22dbff364702f3e641d /util/crossgcc/patches/acpica-unix2-20230628_iasl.patch | |
parent | d736ae5b5770ebb52ebd48003ad630be2cbff1bf (diff) |
crossgcc: Upgrade IASL from 20230331 to 20230628
Changes: https://acpica.org/node/204
Change-Id: I4a1be7ffa6cb363d3fe0cddc59f0f4283fcc5257
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76164
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'util/crossgcc/patches/acpica-unix2-20230628_iasl.patch')
-rw-r--r-- | util/crossgcc/patches/acpica-unix2-20230628_iasl.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/util/crossgcc/patches/acpica-unix2-20230628_iasl.patch b/util/crossgcc/patches/acpica-unix2-20230628_iasl.patch new file mode 100644 index 0000000000..55adb83af2 --- /dev/null +++ b/util/crossgcc/patches/acpica-unix2-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': |