mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 12:44:23 +08:00
95b62b2e28
Today we can compile a self-contained hello world efi test binary that allows us to quickly verify whether the EFI loader framwork works. We can use that binary outside of the self-contained test case though, by providing it to a to-be-tested system via tftp. This patch separates compilation of the helloworld.efi file from including it in the u-boot binary for "bootefi hello". It also modifies the efi_loader test case to enable travis to pick up the compiled file. Because we're now no longer bloating the resulting u-boot binary, we can enable compilation always, giving us good travis test coverage. Signed-off-by: Alexander Graf <agraf@suse.de> Reviewed-by: Tom Rini <trini@konsulko.com>
14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
CONFIG_ARM=y
|
|
CONFIG_STM32=y
|
|
CONFIG_STM32F4=y
|
|
CONFIG_TARGET_STM32F429_DISCOVERY=y
|
|
CONFIG_BOOTDELAY=3
|
|
# CONFIG_DISPLAY_CPUINFO is not set
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
|
CONFIG_HUSH_PARSER=y
|
|
CONFIG_SYS_PROMPT="U-Boot > "
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_CMD_TIMER=y
|
|
CONFIG_OF_LIBFDT=y
|
|
# CONFIG_CMD_BOOTEFI_HELLO_COMPILE is not set
|