Message ID | 20240315130924.2378849-7-sunilvl@ventanamicro.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add support for RISC-V ACPI tests | expand |
On Fri, Mar 15, 2024 at 11:10 PM Sunil V L <sunilvl@ventanamicro.com> wrote: > > Update list of images supported in unpack_edk2_blobs to enable RISC-V > ACPI table testing. > > Signed-off-by: Sunil V L <sunilvl@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Alistair > --- > pc-bios/meson.build | 2 ++ > tests/qtest/meson.build | 3 +++ > 2 files changed, 5 insertions(+) > > diff --git a/pc-bios/meson.build b/pc-bios/meson.build > index 0760612bea..8602b45b9b 100644 > --- a/pc-bios/meson.build > +++ b/pc-bios/meson.build > @@ -4,6 +4,8 @@ if unpack_edk2_blobs > 'edk2-aarch64-code.fd', > 'edk2-arm-code.fd', > 'edk2-arm-vars.fd', > + 'edk2-riscv-code.fd', > + 'edk2-riscv-vars.fd', > 'edk2-i386-code.fd', > 'edk2-i386-secure-code.fd', > 'edk2-i386-vars.fd', > diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build > index 36c5c13a7b..dd19711d9f 100644 > --- a/tests/qtest/meson.build > +++ b/tests/qtest/meson.build > @@ -252,6 +252,9 @@ qtests_s390x = \ > qtests_riscv32 = \ > (config_all_devices.has_key('CONFIG_SIFIVE_E_AON') ? ['sifive-e-aon-watchdog-test'] : []) > > +qtests_riscv64 = \ > + (unpack_edk2_blobs ? ['bios-tables-test'] : []) > + > qos_test_ss = ss.source_set() > qos_test_ss.add( > 'ac97-test.c', > -- > 2.40.1 >
diff --git a/pc-bios/meson.build b/pc-bios/meson.build index 0760612bea..8602b45b9b 100644 --- a/pc-bios/meson.build +++ b/pc-bios/meson.build @@ -4,6 +4,8 @@ if unpack_edk2_blobs 'edk2-aarch64-code.fd', 'edk2-arm-code.fd', 'edk2-arm-vars.fd', + 'edk2-riscv-code.fd', + 'edk2-riscv-vars.fd', 'edk2-i386-code.fd', 'edk2-i386-secure-code.fd', 'edk2-i386-vars.fd', diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index 36c5c13a7b..dd19711d9f 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -252,6 +252,9 @@ qtests_s390x = \ qtests_riscv32 = \ (config_all_devices.has_key('CONFIG_SIFIVE_E_AON') ? ['sifive-e-aon-watchdog-test'] : []) +qtests_riscv64 = \ + (unpack_edk2_blobs ? ['bios-tables-test'] : []) + qos_test_ss = ss.source_set() qos_test_ss.add( 'ac97-test.c',
Update list of images supported in unpack_edk2_blobs to enable RISC-V ACPI table testing. Signed-off-by: Sunil V L <sunilvl@ventanamicro.com> --- pc-bios/meson.build | 2 ++ tests/qtest/meson.build | 3 +++ 2 files changed, 5 insertions(+)