2018-09-26 06:55:22 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
#include <command.h>
|
2019-12-28 10:45:07 -07:00
|
|
|
#include <hang.h>
|
2018-09-26 06:55:22 -07:00
|
|
|
|
2020-05-10 11:40:03 -06:00
|
|
|
int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2018-09-26 06:55:22 -07:00
|
|
|
{
|
|
|
|
|
printf("resetting ...\n");
|
|
|
|
|
|
2018-10-03 13:59:03 +08:00
|
|
|
printf("reset not supported yet\n");
|
2018-09-26 06:55:22 -07:00
|
|
|
hang();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|