summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-05-22 05:28:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-05-22 05:28:59 +0000
commit44789e5b437b00159631d5a7b559e49ab2230bc1 (patch)
treef1c872865eb328ee376b36e1fc489245869f605f /sys
parent207d19a65651f6733f484644e3a4bf86b3b1a421 (diff)
-a support for rd; from mickey
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/i386/autoconf.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c
index 2a6be757bc3..d9af43eb9e3 100644
--- a/sys/arch/i386/i386/autoconf.c
+++ b/sys/arch/i386/i386/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.24 1996/12/15 01:34:49 deraadt Exp $ */
+/* $OpenBSD: autoconf.c,v 1.25 1997/05/22 05:28:58 deraadt Exp $ */
/* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */
/*-
@@ -147,7 +147,7 @@ static const char *devname[] = {
"", /* 14 */
"", /* 15 */
"", /* 16 */
- "", /* 17 */
+ "rd", /* 17 = rd */
"acd", /* 18 = acd */
"", /* 19 */
"" /* 20 */
@@ -240,6 +240,10 @@ extern struct cfdriver acd_cd;
#if NFD > 0
extern struct cfdriver fd_cd;
#endif
+#include "rd.h"
+#if NRD > 0
+extern struct cfdriver rd_cd;
+#endif
struct genericconf {
struct cfdriver *gc_driver;
@@ -261,6 +265,9 @@ struct genericconf {
#if NMCD > 0
{ &mcd_cd, "mcd", 7 },
#endif
+#if NRD > 0
+ { &rd_cd, "rd", 17 },
+#endif
#if NACD > 0
{ &acd_cd, "acd", 18 },
#endif