
It is useful to have a basic sanity check for EFI loader support. Enable this for ARM.
Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v4: - Use the build-generated 'hello world' program instead of a binary blob
Changes in v3: - Include a link to the program instead of adding it to the tree - Fix several typos - Align backslashes to the same column
Changes in v2: None
cmd/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/cmd/Kconfig b/cmd/Kconfig index a5d030b..d3b675c 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -184,6 +184,7 @@ config CMD_BOOTEFI config CMD_BOOTEFI_HELLO bool "Allow booting a standard EFI hello world for testing" depends on CMD_BOOTEFI + default y if CMD_BOOTEFI help This adds a standard EFI hello world application to U-Boot so that it can be used with the 'bootefi hello' command. This is useful