aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2022-04-28 17:09:36 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-03 21:39:22 +0200
commitc23bb03465c1107495b90c4b396d37a0bbe90bfc (patch)
tree31161c2fc644fdd6e05f79e996c0b7ab66399458 /common
parentb8cd1e7fc2802fb4a9f42caf5d8f8e194eb8266f (diff)
downloadu-boot-c23bb03465c1107495b90c4b396d37a0bbe90bfc.zip
u-boot-c23bb03465c1107495b90c4b396d37a0bbe90bfc.tar.gz
u-boot-c23bb03465c1107495b90c4b396d37a0bbe90bfc.tar.bz2
menu: always show the menu regardless of the number of entry
To make user aware of the menu entry selection, menu always appears regardless of the number of entry. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Adjust test/py/tests/test_bootmenu.py Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'common')
-rw-r--r--common/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/menu.c b/common/menu.c
index 5fb2ffb..b577d80 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -271,7 +271,7 @@ int menu_get_choice(struct menu *m, void **choice)
if (!m || !choice)
return -EINVAL;
- if (!m->prompt || m->item_cnt == 1)
+ if (!m->prompt)
return menu_default_choice(m, choice);
return menu_interactive_choice(m, choice);