2016-10-04 16:52:22 +02:00
|
|
|
config BR2_PACKAGE_FWTS
|
|
|
|
bool "fwts"
|
|
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
2018-09-27 00:39:14 +02:00
|
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
2019-08-12 18:37:44 +02:00
|
|
|
depends on BR2_USE_MMU # libglib2
|
2018-09-27 00:39:14 +02:00
|
|
|
depends on BR2_USE_WCHAR # libglib2, libbsd
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, libbsd
|
2016-10-04 16:52:22 +02:00
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h
|
|
|
|
select BR2_PACKAGE_LIBGLIB2
|
2018-09-27 00:39:14 +02:00
|
|
|
select BR2_PACKAGE_LIBBSD
|
2016-10-04 16:52:22 +02:00
|
|
|
help
|
|
|
|
Firmware Test Suite (FWTS) is a test suite that performs
|
|
|
|
sanity checks on firmware. It is intended to identify BIOS and
|
|
|
|
ACPI errors and if appropriate it will try to explain the
|
|
|
|
errors and give advice to help workaround or fix firmware
|
|
|
|
bugs.
|
|
|
|
|
|
|
|
dtc (libfdt) is an optional dependency for fdt related tests.
|
|
|
|
|
|
|
|
https://wiki.ubuntu.com/FirmwareTestSuite
|
|
|
|
|
2018-11-05 13:03:24 +01:00
|
|
|
if BR2_PACKAGE_FWTS
|
|
|
|
config BR2_PACKAGE_FWTS_EFI_RUNTIME_MODULE
|
|
|
|
bool "efi_runtime module"
|
|
|
|
depends on BR2_LINUX_KERNEL
|
|
|
|
help
|
|
|
|
Firmware Test Suite (FWTS) provides a EFI runtime kernel
|
|
|
|
module required to run UEFI tests.
|
|
|
|
|
|
|
|
comment "efi_runtime module needs a Linux kernel to be built"
|
|
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
endif
|
|
|
|
|
2016-10-04 16:52:22 +02:00
|
|
|
comment "fwts needs a glibc toolchain w/ wchar, threads"
|
|
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
2018-09-27 00:39:14 +02:00
|
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
2016-10-04 16:52:22 +02:00
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_USES_GLIBC
|