54ffa4bfd3
- Update patch - Update hash of license file (update in year, git.mk added, lintian warning fixed): -2a75afca6f
-429c259584
-bc71a14a4a
- json-c has been dropped since version 20.08.00 and1a663dd3b3
- Update indentation in hash file (two spaces) This bump will also fix the following build failure with bison 3.7.1 thanks tocfd5f58707
: libtool: compile: /home/peko/autobuild/instance-1/output-1/host/bin/aarch64-linux-gcc -DHAVE_CONFIG_H -I. -I../.. -Wall -Wstrict-prototypes -fno-strict-aliasing -D_LINUX -DACPI_ASL_COMPILER -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -I../acpica/source/include -I../acpica/source/compiler -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c aslcompiler.c -fPIC -DPIC -o .libs/libfwtsiasl_la-aslcompiler.o aslcompiler.tab.c:297:10: fatal error: aslcompiler.tab.h: No such file or directory Fixes: - http://autobuild.buildroot.org/results/3eeb20a24595ab1b790bd770ba745676225ef8b9 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Erico Nunes <nunes.erico@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_FWTS
|
|
bool "fwts"
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
|
depends on BR2_USE_MMU # libglib2
|
|
depends on BR2_USE_WCHAR # libglib2, libbsd
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, libbsd
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_LIBBSD
|
|
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
|
|
|
|
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
|
|
|
|
comment "fwts needs a glibc toolchain w/ wchar, threads"
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_USES_GLIBC
|