Home
last modified time | relevance | path

Searched refs:bootmenu (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/u-boot/doc/
H A DREADME.bootmenu7 ANSI terminal bootmenu command
9 The "bootmenu" command uses U-Boot menu interfaces and provides
17 The "bootmenu" command interprets ANSI escape sequencies, so
41 First (optional) argument of the "bootmenu" command is a delay specifier
44 the argument of the "bootmenu" command is not specified, the default delay
47 be called immediately. If delay is less then 0, bootmenu will be shown and
52 the bootmenu terminates and the usual U-Boot command prompt is presented
61 bootmenu 20 # Run bootmenu with autoboot delay 20s
85 To enable the "bootmenu" command add following definitions to the
91 To run the bootmenu at startup add these additional definitions:
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dbootmenu.c364 struct bootmenu_data *bootmenu; in bootmenu_show() local
384 bootmenu = bootmenu_create(delay); in bootmenu_show()
385 if (!bootmenu) in bootmenu_show()
388 menu = menu_create(NULL, bootmenu->delay, 1, bootmenu_print_entry, in bootmenu_show()
389 bootmenu_choice_entry, bootmenu); in bootmenu_show()
391 bootmenu_destroy(bootmenu); in bootmenu_show()
395 for (iter = bootmenu->first; iter; iter = iter->next) { in bootmenu_show()
417 bootmenu_destroy(bootmenu); in bootmenu_show()
496 bootmenu, 2, 1, do_bootmenu,
H A DMakefile32 obj-$(CONFIG_CMD_BOOTMENU) += bootmenu.o
H A DKconfig237 bool "bootmenu"