Remote enable_rtos_riscv command.
I'd missed this when that functionality was removed. Change-Id: If5b697d9dbac517a077d9c1826c747fc95b19f1f Signed-off-by: Tim Newsome <tim@sifive.com>
This commit is contained in:
parent
0ce272ff74
commit
f31c130286
|
@ -6231,17 +6231,6 @@ COMMAND_HANDLER(handle_fast_load_command)
|
|||
return retval;
|
||||
}
|
||||
|
||||
bool enable_rtos_riscv;
|
||||
COMMAND_HANDLER(handle_enable_rtos_riscv_command)
|
||||
{
|
||||
if (CMD_ARGC != 0) {
|
||||
LOG_ERROR("Command takes no arguments");
|
||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||
}
|
||||
enable_rtos_riscv = true;
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
static const struct command_registration target_command_handlers[] = {
|
||||
{
|
||||
.name = "targets",
|
||||
|
@ -6258,14 +6247,6 @@ static const struct command_registration target_command_handlers[] = {
|
|||
.chain = target_subcommand_handlers,
|
||||
.usage = "",
|
||||
},
|
||||
{
|
||||
.name = "enable_rtos_riscv",
|
||||
.handler = handle_enable_rtos_riscv_command,
|
||||
.mode = COMMAND_CONFIG,
|
||||
.usage = "enable_rtos_riscv",
|
||||
.help = "Allow the use of `-rtos riscv` for just a little longer, "
|
||||
"until it will be completely removed at the end of 2020."
|
||||
},
|
||||
COMMAND_REGISTRATION_DONE
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue