- remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
17 lines
380 B
C
17 lines
380 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) && (CONFIG_COMMANDS & CFG_CMD_BSP)
|
|
cmd_tbl_t U_BOOT_CMD(MENU) = MK_CMD_ENTRY(
|
|
"menu", 1, 1, do_menu,
|
|
"menu - display BIOS setup menu\n",
|
|
""
|
|
);
|
|
#endif
|