diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 02:09:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 02:09:40 +0000 |
commit | ffcdbc8fd55111335555af4f3a804b1665f6c445 (patch) | |
tree | c58a07cd8f6b334d3e1630699da341ee908f44df /sys/arch/i386 | |
parent | 82d48b999b49d39f2074fdd7304f2914673251fb (diff) |
fd moves, acd gets added
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index dd9f59c7762..81f4897629a 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.16 1996/11/06 01:37:23 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.17 1996/11/06 02:09:39 deraadt Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -222,6 +222,10 @@ extern struct cfdriver cd_cd; #if NMCD > 0 extern struct cfdriver mcd_cd; #endif +#include "acd.h" +#if NACD > 0 +extern struct cfdriver acd_cd; +#endif struct genericconf { struct cfdriver *gc_driver; @@ -241,7 +245,10 @@ struct genericconf { { &mcd_cd, "mcd", 7 }, #endif #if NFDC > 0 - { &fd_cd, "fd", 2 }, + { &fd_cd, "fd", 20 }, +#endif +#if NACD > 0 + { &acd_cd, "acd", 18 }, #endif { 0 } }; |