diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-15 00:49:35 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-15 00:51:51 +0100 |
commit | faadc04180ef05acfd6523b49a2abf37ae61afad (patch) | |
tree | 11808fbd629c801b42f13051ea78446462cb6a22 /lib | |
parent | 30ed1d4bbbe0501bb86d0a62a08b98d3b084a6c7 (diff) | |
download | u-boot-faadc04180ef05acfd6523b49a2abf37ae61afad.tar.gz |
efi_loader: imply VIDEO_ANSI
UEFI programs like GRUB make change terminal colors which requires support
for ANSI escape sequences.
Let CONFIG_EFI_LOADER=y imply CONFIG_VIDEO_ANSI.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 6727336169..a7afa3f29e 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -16,6 +16,7 @@ config EFI_LOADER select REGEX imply CFB_CONSOLE_ANSI imply USB_KEYBOARD_FN_KEYS + imply VIDEO_ANSI help Select this option if you want to run UEFI applications (like GNU GRUB or iPXE) on top of U-Boot. If this option is enabled, U-Boot |