menu: always show the menu regardless of the number of entry
authorMasahisa Kojima <masahisa.kojima@linaro.org>
Thu, 28 Apr 2022 08:09:36 +0000 (17:09 +0900)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Tue, 3 May 2022 19:39:22 +0000 (21:39 +0200)
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>
common/menu.c
test/py/tests/test_bootmenu.py

index 5fb2ffb..b577d80 100644 (file)
@@ -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);
index fb03fa4..b4baa53 100644 (file)
@@ -42,7 +42,5 @@ def test_bootmenu(u_boot_console):
     assert 'rc:0' in response
     u_boot_console.run_command('setenv bootmenu_default')
     u_boot_console.run_command('setenv bootmenu_0')
-    # Without bootmenu_0 no menu should be shown.
-    u_boot_console.run_command('bootmenu 2')
     u_boot_console.run_command('setenv bootmenu_1')
     u_boot_console.run_command('setenv bootmenu_2')