summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-05 14:27:51 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-05 14:27:51 +0000
commitb7da1555b94fc7ec00532fa3b913ce2e231733e3 (patch)
tree9d62887bf28e9b7fa18849937743ab11353f74c6 /sys
parent9c2235a1caa477c619747890582dc7a0c6baf309 (diff)
do setroot() based on wd.h/NWD and fd.h/NFD
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/i386/autoconf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c
index 7a83cccc6ce..30e794ebf03 100644
--- a/sys/arch/i386/i386/autoconf.c
+++ b/sys/arch/i386/i386/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.21 1996/11/10 21:31:52 downsj Exp $ */
+/* $OpenBSD: autoconf.c,v 1.22 1996/12/05 14:27:50 deraadt Exp $ */
/* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */
/*-
@@ -216,8 +216,8 @@ setroot()
#endif
}
-#include "wdc.h"
-#if NWDC > 0
+#include "wd.h"
+#if NWD > 0
extern struct cfdriver wd_cd;
#endif
#include "sd.h"
@@ -246,10 +246,10 @@ struct genericconf {
char *gc_name;
dev_t gc_major;
} genericconf[] = {
-#if NWDC > 0
+#if NWD > 0
{ &wd_cd, "wd", 0 },
#endif
-#if NFDC > 0
+#if NFD > 0
{ &fd_cd, "fd", 2 },
#endif
#if NSD > 0