[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 12/15] tests/data/acpi/rebuild-expected-aml.sh: Add RISC-V
From: |
Sunil V L |
Subject: |
[PATCH v3 12/15] tests/data/acpi/rebuild-expected-aml.sh: Add RISC-V |
Date: |
Fri, 21 Jun 2024 17:29:03 +0530 |
Update the list of supported architectures to include RISC-V.
Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
---
tests/data/acpi/rebuild-expected-aml.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/data/acpi/rebuild-expected-aml.sh
b/tests/data/acpi/rebuild-expected-aml.sh
index dcf2e2f221..c1092fb8ba 100755
--- a/tests/data/acpi/rebuild-expected-aml.sh
+++ b/tests/data/acpi/rebuild-expected-aml.sh
@@ -12,7 +12,7 @@
# This work is licensed under the terms of the GNU GPLv2.
# See the COPYING.LIB file in the top-level directory.
-qemu_arches="x86_64 aarch64"
+qemu_arches="x86_64 aarch64 riscv64"
if [ ! -e "tests/qtest/bios-tables-test" ]; then
echo "Test: bios-tables-test is required! Run make check before this
script."
@@ -36,7 +36,8 @@ fi
if [ -z "$qemu_bins" ]; then
echo "Only the following architectures are currently supported:
$qemu_arches"
echo "None of these configured!"
- echo "To fix, run configure --target-list=x86_64-softmmu,aarch64-softmmu"
+ echo "To fix, run configure \
+ --target-list=x86_64-softmmu,aarch64-softmmu,riscv64-softmmu"
exit 1;
fi
--
2.40.1
- Re: [PATCH v3 06/15] tests/qtest/bios-tables-test.c: Set "arch" for aarch64 tests, (continued)
- [PATCH v3 07/15] tests/qtest/bios-tables-test.c: Set "arch" for x86 tests, Sunil V L, 2024/06/21
- [PATCH v3 08/15] tests/data/acpi: Move x86 ACPI tables under x86/${machine} path, Sunil V L, 2024/06/21
- [PATCH v3 09/15] tests/data/acpi/virt: Move ARM64 ACPI tables under aarch64/${machine} path, Sunil V L, 2024/06/21
- [PATCH v3 10/15] meson.build: Add RISC-V to the edk2-target list, Sunil V L, 2024/06/21
- [PATCH v3 11/15] pc-bios/meson.build: Add support for RISC-V in unpack_edk2_blobs, Sunil V L, 2024/06/21
- [PATCH v3 12/15] tests/data/acpi/rebuild-expected-aml.sh: Add RISC-V,
Sunil V L <=
- [PATCH v3 13/15] tests/qtest/bios-tables-test: Add empty ACPI data files for RISC-V, Sunil V L, 2024/06/21
- [PATCH v3 15/15] tests/qtest/bios-tables-test: Add expected ACPI data files for RISC-V, Sunil V L, 2024/06/21
- [PATCH v3 14/15] tests/qtest/bios-tables-test.c: Enable basic testing for RISC-V, Sunil V L, 2024/06/21