From: deraadt Date: Wed, 16 Apr 1997 22:14:15 +0000 (+0000) Subject: add RB_KDB support X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8ebb8562f2b283c9ee4250063c9ae9d0820b5063;p=openbsd add RB_KDB support --- diff --git a/sys/arch/i386/stand/boot/cmd.c b/sys/arch/i386/stand/boot/cmd.c index 05aeed84a2c..16cedf159e8 100644 --- a/sys/arch/i386/stand/boot/cmd.c +++ b/sys/arch/i386/stand/boot/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.7 1997/04/15 08:32:51 deraadt Exp $ */ +/* $OpenBSD: cmd.c,v 1.8 1997/04/16 22:14:15 deraadt Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -442,6 +442,9 @@ bootparse(cmd) case 's': boothowto |= RB_SINGLE; break; + case 'd': + boothowto |= RB_KDB; + break; } } } else { diff --git a/sys/stand/boot/cmd.c b/sys/stand/boot/cmd.c index 05aeed84a2c..16cedf159e8 100644 --- a/sys/stand/boot/cmd.c +++ b/sys/stand/boot/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.7 1997/04/15 08:32:51 deraadt Exp $ */ +/* $OpenBSD: cmd.c,v 1.8 1997/04/16 22:14:15 deraadt Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -442,6 +442,9 @@ bootparse(cmd) case 's': boothowto |= RB_SINGLE; break; + case 'd': + boothowto |= RB_KDB; + break; } } } else {