mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
5e378003d5
This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
16 lines
374 B
C
16 lines
374 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) || defined(CONFIG_CMD_BSP)
|
|
U_BOOT_CMD(
|
|
menu, 1, 1, do_menu,
|
|
"menu - display BIOS setup menu\n",
|
|
""
|
|
);
|
|
#endif
|