From 5b6b8b13615bdd80de66566d6b04223c19afc60f Mon Sep 17 00:00:00 2001 From: mycroft Date: Mon, 31 Jan 1994 17:09:33 +0000 Subject: [PATCH] Add appropriate DDB calls on startup. --- sys/arch/hp300/hp300/machdep.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index 82f427eecb48..be121a546f02 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -37,7 +37,7 @@ * * from: Utah Hdr: machdep.c 1.63 91/04/24 * from: @(#)machdep.c 7.16 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.26 1994/01/30 18:21:47 mycroft Exp $ + * $Id: machdep.c,v 1.27 1994/01/31 17:09:33 mycroft Exp $ */ #include "param.h" @@ -149,6 +149,12 @@ consinit() * Initialize the console before we print anything out. */ cninit(); + +#ifdef DDB + ddb_init(); + if (boothowto & RB_KDB) + Debugger(); +#endif } /*