diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-08-18 23:20:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-08-18 23:20:45 +0000 |
commit | 5ee120b843fa88bf2547b42759b7ef571baecba2 (patch) | |
tree | 8c3342e7fd8fd98c2b4212c0d6f87f73c7a2aed5 /sys/arch/vax/stand/boot/conf.c | |
parent | 87d00f400eaf86a770dc09268649713d4a3d50f4 (diff) |
Now that KA60 support is in, include the proper header files instead of
harcoding defines, and add rpb device type #39 (sii) boot information.
Diffstat (limited to 'sys/arch/vax/stand/boot/conf.c')
-rw-r--r-- | sys/arch/vax/stand/boot/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/vax/stand/boot/conf.c b/sys/arch/vax/stand/boot/conf.c index c08626642ec..544d19ae36c 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.3 2002/06/11 09:36:23 hugh Exp $ */ +/* $OpenBSD: conf.c,v 1.4 2008/08/18 23:20:44 miod Exp $ */ /* $NetBSD: conf.c,v 1.10 2000/06/15 19:53:23 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden. @@ -59,6 +59,7 @@ struct devsw devsw[]={ SADEV("hd",mfmstrategy, mfmopen, nullsys, noioctl), SADEV("sd",romstrategy, romopen, nullsys, noioctl), SADEV("sd",romstrategy, romopen, nullsys, noioctl), /* SDN */ + SADEV("sd",romstrategy, romopen, nullsys, noioctl), /* SDS */ SADEV("st",nullsys, nullsys, nullsys, noioctl), SADEV("le",nostrategy, leopen, leclose, noioctl), /* LANCE */ SADEV("ze",nostrategy, zeopen, zeclose, noioctl), /* SGEC */ @@ -77,6 +78,7 @@ int cnvtab[] = { BDEV_RD, BDEV_SD, BDEV_SDN, + BDEV_SDS, BDEV_ST, BDEV_LE, BDEV_ZE, |