diff options
author | Alexander Graf <agraf@suse.de> | 2016-11-17 22:40:10 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-11-27 09:53:39 -0500 |
commit | 95b62b2e28dbc3419f49eeae2e4fdccc862fccea (patch) | |
tree | 07df4c9929f7dbe55e2bf39de1b67813d436da1a /configs/stm32f429-discovery_defconfig | |
parent | 4ca4b265ad5398d96ba46a734910c0bbf3239359 (diff) | |
download | u-boot-95b62b2e28dbc3419f49eeae2e4fdccc862fccea.tar.gz |
efi_loader: Allow to compile helloworld.efi w/o bundling it
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>
Diffstat (limited to 'configs/stm32f429-discovery_defconfig')
-rw-r--r-- | configs/stm32f429-discovery_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/stm32f429-discovery_defconfig b/configs/stm32f429-discovery_defconfig index 24e2221d01..bb161d4f95 100644 --- a/configs/stm32f429-discovery_defconfig +++ b/configs/stm32f429-discovery_defconfig @@ -10,3 +10,4 @@ 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 |