The qemu* "generic" targets (i.e. not those emulating a particular
board) are typically used for testing as many features as possible,
especially in CI so it makes sense to have UNIT_TEST enabled for
all of the defconfigs for these targets.
Not enabling UNIT_TEST in qemu-x86_defconfig due to:
LD u-boot
ld.bfd: section .rel.dyn VMA wraps around address space
ld.bfd: section .start16 LMA [fffff800,fffff86f] overlaps section .rel.dyn LMA [ffffb77c,0002ac93]
make: *** [Makefile:1824: u-boot] Error 1
Suggested-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Drop ppc due to build warning:
test/lib/str.c:230:50: error: left shift count >= width of type [-Werror=shift-count-overflow]
+ 230 | simple_itoa((1UL << 63) - 1));
Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
294 B
Plaintext
13 lines
294 B
Plaintext
CONFIG_ARM=y
|
|
CONFIG_ARCH_QEMU=y
|
|
CONFIG_BLOBLIST_SIZE_RELOC=0x20000
|
|
CONFIG_TARGET_QEMU_ARM_SBSA=y
|
|
CONFIG_EFI_VARIABLE_NO_STORE=y
|
|
CONFIG_USE_BOOTCOMMAND=y
|
|
CONFIG_BOOTCOMMAND="bootflow scan"
|
|
CONFIG_EFI_PARTITION=y
|
|
CONFIG_PARTITION_TYPE_GUID=y
|
|
CONFIG_EFI_MEDIA=y
|
|
CONFIG_FS_FAT=y
|
|
CONFIG_UNIT_TEST=y
|