1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 09:12:08 +02:00

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>
This commit is contained in:
Heinrich Schuchardt
2019-04-07 23:58:50 +02:00
parent 8ec7d5d355
commit 084f093301

View File

@@ -38,14 +38,11 @@ config EFI_LOADER_BOUNCE_BUFFER
config EFI_LOADER_HII config EFI_LOADER_HII
bool "Expose HII protocols to EFI applications" bool "Expose HII protocols to EFI applications"
depends on EFI_LOADER depends on EFI_LOADER
default n default y
help help
The Human Interface Infrastructure is a complicated framework that The Human Interface Infrastructure is a complicated framework that
allows UEFI applications to draw fancy menus and hook strings using allows UEFI applications to draw fancy menus and hook strings using
a translation framework. a translation framework.
U-Boot implements enough of its features to be able to run the UEFI 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 Shell, but not more than that.
beware that your system might break with HII enabled.
If unsure, say n.