cli: Make the sandbox board_run_command the default
If CONFIG_CMDLINE=n, common/cli.c calls board_run_command. This fails to link on most architectures. However, the sandbox architecture has an implementation which we can use. Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
3780e2d08e
commit
19464f4feb
@ -319,13 +319,6 @@ static int sandbox_cmdline_cb_show_of_platdata(struct sandbox_state *state,
|
|||||||
}
|
}
|
||||||
SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
|
SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
|
||||||
|
|
||||||
int board_run_command(const char *cmdline)
|
|
||||||
{
|
|
||||||
printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n");
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void setup_ram_buf(struct sandbox_state *state)
|
static void setup_ram_buf(struct sandbox_state *state)
|
||||||
{
|
{
|
||||||
/* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
|
/* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
|
||||||
|
@ -71,6 +71,13 @@ int run_command_repeatable(const char *cmd, int flag)
|
|||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
__weak int board_run_command(const char *cmdline)
|
||||||
|
{
|
||||||
|
printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n");
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
#endif /* CONFIG_CMDLINE */
|
#endif /* CONFIG_CMDLINE */
|
||||||
|
|
||||||
int run_command_list(const char *cmd, int len, int flag)
|
int run_command_list(const char *cmd, int len, int flag)
|
||||||
|
Loading…
Reference in New Issue
Block a user