diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-04-07 23:58:50 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-04-12 22:00:41 +0200 |
commit | 084f09330131656c3073ed51084b50cbc85a05e4 (patch) | |
tree | ead69eff14a33f2ff6a89b846f01122d09e2aeff /lib/efi_loader | |
parent | 8ec7d5d35531f9a321181e60b088980da8c68d1c (diff) | |
download | u-boot-084f09330131656c3073ed51084b50cbc85a05e4.zip u-boot-084f09330131656c3073ed51084b50cbc85a05e4.tar.gz u-boot-084f09330131656c3073ed51084b50cbc85a05e4.tar.bz2 |
efi_loader: enable HII protocols by default
As the UEFI shell requires the HII protocols let's enable them by default.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r-- | lib/efi_loader/Kconfig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 23487b8..a6489ca 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -38,14 +38,11 @@ config EFI_LOADER_BOUNCE_BUFFER config EFI_LOADER_HII bool "Expose HII protocols to EFI applications" depends on EFI_LOADER - default n + default y help The Human Interface Infrastructure is a complicated framework that allows UEFI applications to draw fancy menus and hook strings using a translation framework. U-Boot implements enough of its features to be able to run the UEFI - Shell, but not more than that. The code is experimental still, so - beware that your system might break with HII enabled. - - If unsure, say n. + Shell, but not more than that. |