mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
2fb2604d5c
Remove command name from all command "usage" fields and update common/command.c to display "name - usage" instead of just "usage". Also remove newlines from command usage fields. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16 lines
327 B
C
16 lines
327 B
C
#include <common.h>
|
|
#include <command.h>
|
|
|
|
int do_menu( cmd_tbl_t *cmdtp, /*bd_t *bd,*/ int flag, int argc, char *argv[] )
|
|
{
|
|
/* printf("<NOT YET IMPLEMENTED>\n"); */
|
|
return 0;
|
|
}
|
|
|
|
#if defined(CONFIG_AMIGAONEG3SE) && defined(CONFIG_CMD_BSP)
|
|
U_BOOT_CMD(
|
|
menu, 1, 1, do_menu,
|
|
"display BIOS setup menu",
|
|
""
|
|
);
|
|
#endif
|