diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-16 22:14:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-16 22:14:16 +0000 |
commit | 4c53c20a8ca984b1573dd7e6ccbdb361ae1ff822 (patch) | |
tree | 61a9588c4fa5b3577e9267bc2ad16b7f1e89f89f /sys/stand | |
parent | 6204bd7bec7872f882eef4a0571ec03657d989f9 (diff) |
add RB_KDB support
Diffstat (limited to 'sys/stand')
-rw-r--r-- | sys/stand/boot/cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 { |