diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-11-11 19:43:29 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-11-11 19:43:29 +0000 |
commit | 9baedc666d4849e407ceb36c04fa8af325aed221 (patch) | |
tree | 2ae44a7c843a80e1e679bbf57914d156ab4f24b1 /sys | |
parent | 1d92584a64783fb3913b46f5d5eef5fea90da4d1 (diff) |
Updates for SCSI scanner and SCSI unknown devices.
Removed MI *dev_decl() stuff that is now in sys/conf.h
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 32 | ||||
-rw-r--r-- | sys/arch/alpha/conf/GENERIC | 4 |
2 files changed, 7 insertions, 29 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index f2a566cfda7..dffdbb0b1fa 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.9 1996/11/06 02:01:08 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.10 1996/11/11 19:43:27 kstailey Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -46,15 +46,12 @@ bdev_decl(sw); #include "st.h" -bdev_decl(st); #include "cd.h" -bdev_decl(cd); #include "sd.h" -bdev_decl(sd); +#include "ss.h" +#include "uk.h" #include "vnd.h" -bdev_decl(vnd); #include "ccd.h" -bdev_decl(ccd); #include "rd.h" bdev_decl(rd); @@ -91,33 +88,15 @@ int nblkdev = sizeof (bdevsw) / sizeof (bdevsw[0]); dev_init(c,n,write), dev_init(c,n,ioctl), (dev_type_stop((*))) enodev, \ 0, seltrue, (dev_type_mmap((*))) enodev } -cdev_decl(cn); -cdev_decl(ctty); #define mmread mmrw #define mmwrite mmrw cdev_decl(mm); cdev_decl(sw); -cdev_decl(random); #include "pty.h" -#define ptstty ptytty -#define ptsioctl ptyioctl -cdev_decl(pts); -#define ptctty ptytty -#define ptcioctl ptyioctl -cdev_decl(ptc); -cdev_decl(log); #include "tun.h" -cdev_decl(tun); -cdev_decl(sd); -cdev_decl(vnd); -cdev_decl(ccd); dev_type_open(filedescopen); #include "bpfilter.h" -cdev_decl(bpf); -cdev_decl(st); -cdev_decl(cd); #include "ch.h" -cdev_decl(ch); #include "scc.h" cdev_decl(scc); #include "audio.h" @@ -131,10 +110,7 @@ cdev_decl(ms); #include "lpt.h" cdev_decl(lpt); cdev_decl(rd); -#include "ss.h" -cdev_decl(ss); -#include "uk.h" -cdev_decl(uk); + cdev_decl(prom); /* XXX XXX XXX */ diff --git a/sys/arch/alpha/conf/GENERIC b/sys/arch/alpha/conf/GENERIC index 42d0eb2facb..da2d2e725e3 100644 --- a/sys/arch/alpha/conf/GENERIC +++ b/sys/arch/alpha/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.9 1996/10/30 22:38:38 niklas Exp $ +# $OpenBSD: GENERIC,v 1.10 1996/11/11 19:43:28 kstailey Exp $ # $NetBSD: GENERIC,v 1.24 1996/09/27 17:08:32 cgd Exp $ # # Generic Alpha kernel. Enough to get booted, etc., but not much more. @@ -135,6 +135,8 @@ scsibus* at ncr? sd* at scsibus? target ? lun ? st* at scsibus? target ? lun ? cd* at scsibus? target ? lun ? +ss* at scsibus? target ? lun ? +uk* at scsibus? target ? lun ? # Workstation Console attachments wscons* at cfb? |