diff options
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r-- | sys/ddb/db_command.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 4f9244cdb9d..d1eccefdfa4 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_command.c,v 1.84 2018/09/18 18:36:27 anton Exp $ */ +/* $OpenBSD: db_command.c,v 1.85 2019/04/01 07:00:52 tedu Exp $ */ /* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */ /* @@ -105,6 +105,7 @@ void db_boot_crash_cmd(db_expr_t, int, db_expr_t, char *); void db_boot_dump_cmd(db_expr_t, int, db_expr_t, char *); void db_boot_halt_cmd(db_expr_t, int, db_expr_t, char *); void db_boot_reboot_cmd(db_expr_t, int, db_expr_t, char *); +void db_boot_reset_cmd(db_expr_t, int, db_expr_t, char *); void db_boot_poweroff_cmd(db_expr_t, int, db_expr_t, char *); void db_stack_trace_cmd(db_expr_t, int, db_expr_t, char *); void db_dmesg_cmd(db_expr_t, int, db_expr_t, char *); @@ -812,7 +813,7 @@ db_boot_halt_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif) void db_boot_reboot_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif) { - db_reboot(RB_AUTOBOOT | RB_NOSYNC | RB_TIMEBAD | RB_USERREQ); + boot(RB_RESET | RB_AUTOBOOT | RB_NOSYNC | RB_TIMEBAD | RB_USERREQ); } void |