diff options
author | AKASHI Takahiro | 2019-09-12 15:31:22 +0900 |
---|---|---|
committer | Tom Rini | 2019-10-04 12:21:23 -0400 |
commit | dd2d9899720895881e5c60fb38f91f22c53c97cc (patch) | |
tree | 555a81bff046972ddd9ef7b6205eda9402cc4c18 /cmd | |
parent | 12e800cdab629beec634d30b9bfe6d655ea14cc9 (diff) |
autoboot: add necessary dependency at AUTOBOOT_MENU_SHOW
Otherwise, menu_show() will be undefined in bootdelay_process().
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 98647f58b7a..c61c8516229 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -172,6 +172,7 @@ config AUTOBOOT_MENUKEY config AUTOBOOT_MENU_SHOW bool "Show a menu on boot" + depends on CMD_BOOTMENU help This enables the boot menu, controlled by environment variables defined by the board. The menu starts after running the 'preboot' |