diff options
author | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-10-04 04:36:30 +0000 |
---|---|---|
committer | Brandon Creighton <bjc@cvs.openbsd.org> | 2000-10-04 04:36:30 +0000 |
commit | 45d3c18d90e6eefcc65e63422fbc4a84a7207e2d (patch) | |
tree | 76d6236b6086f06fca7e702380e287dfca614990 | |
parent | d27fe71e67bfc6291e61252a5eeaee0b0fad6c3c (diff) |
add 53c94 to devsw/cnvtab
-rw-r--r-- | sys/arch/vax/boot/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/vax/stand/boot/conf.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/vax/boot/boot/conf.c b/sys/arch/vax/boot/boot/conf.c index 334fe0cd933..a5a21df6d33 100644 --- a/sys/arch/vax/boot/boot/conf.c +++ b/sys/arch/vax/boot/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.1 2000/04/27 02:26:25 bjc Exp $ */ +/* $OpenBSD: conf.c,v 1.2 2000/10/04 04:36:29 bjc Exp $ */ /* $NetBSD: conf.c,v 1.3 1999/10/23 14:42:21 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden. @@ -62,6 +62,7 @@ struct devsw devsw[]={ SADEV("rom",romstrategy, romopen, nullsys, noioctl), SADEV("rd",mfmstrategy, mfmopen, nullsys, noioctl), SADEV("sd",romstrategy, romopen, nullsys, noioctl), + SADEV("sd",romstrategy, romopen, nullsys, noioctl), /* SDN */ SADEV("st",nullsys, nullsys, nullsys, noioctl), SADEV("le",netstrategy, netopen, netclose, noioctl), /* LANCE */ SADEV("ze",netstrategy, netopen, netclose, noioctl), /* SGEC */ @@ -76,6 +77,7 @@ int cnvtab[] = { -1, BDEV_RD, BDEV_SD, + BDEV_SDN, BDEV_ST, BDEV_LE, BDEV_ZE, diff --git a/sys/arch/vax/stand/boot/conf.c b/sys/arch/vax/stand/boot/conf.c index 334fe0cd933..a5a21df6d33 100644 --- a/sys/arch/vax/stand/boot/conf.c +++ b/sys/arch/vax/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.1 2000/04/27 02:26:25 bjc Exp $ */ +/* $OpenBSD: conf.c,v 1.2 2000/10/04 04:36:29 bjc Exp $ */ /* $NetBSD: conf.c,v 1.3 1999/10/23 14:42:21 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden. @@ -62,6 +62,7 @@ struct devsw devsw[]={ SADEV("rom",romstrategy, romopen, nullsys, noioctl), SADEV("rd",mfmstrategy, mfmopen, nullsys, noioctl), SADEV("sd",romstrategy, romopen, nullsys, noioctl), + SADEV("sd",romstrategy, romopen, nullsys, noioctl), /* SDN */ SADEV("st",nullsys, nullsys, nullsys, noioctl), SADEV("le",netstrategy, netopen, netclose, noioctl), /* LANCE */ SADEV("ze",netstrategy, netopen, netclose, noioctl), /* SGEC */ @@ -76,6 +77,7 @@ int cnvtab[] = { -1, BDEV_RD, BDEV_SD, + BDEV_SDN, BDEV_ST, BDEV_LE, BDEV_ZE, |