diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-02-08 13:56:33 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-02-10 13:05:39 +0100 |
commit | 75d494df01c6edd25abdde98e700cc117a066180 (patch) | |
tree | a1e1064b8bf34213b07ce5108615109b56d3dfad | |
parent | 454a9442fbce761db7655381fdfaded8f09c8cf3 (diff) | |
download | u-boot-75d494df01c6edd25abdde98e700cc117a066180.tar.gz u-boot-75d494df01c6edd25abdde98e700cc117a066180.tar.bz2 u-boot-75d494df01c6edd25abdde98e700cc117a066180.zip |
cmd: CONFIG_CMD_EFICONFIG requires CONFIG_MENU
The eficonfig command invokes functions implemented in common/menu.c like
* menu_default_set()
* menu_get_choice()
* menu_destroy()
* menu_item_add()
Fixes: 87d791423ac6 ("eficonfig: menu-driven addition of UEFI boot option")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index c7344ee1f6..aef99d2eb8 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2001,6 +2001,7 @@ config CMD_EFIDEBUG config CMD_EFICONFIG bool "eficonfig - provide menu-driven uefi variables maintenance interface" depends on CMD_BOOTEFI_BOOTMGR + select MENU help Enable the 'eficonfig' command which provides the menu-driven UEFI variable maintenance interface. |