diff options
author | julian <julian@FreeBSD.org> | 1998-01-26 06:11:18 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1998-01-26 06:11:18 +0000 |
commit | 68abaddf758c534229cbcc68bbd3df497aa5074e (patch) | |
tree | f8385ad9a0bf505c76ab53e36d5926d9c6801c65 /sys/conf | |
parent | 6669d79e32d1fdb5abddc9d5f0224d2bafba3130 (diff) | |
download | FreeBSD-src-68abaddf758c534229cbcc68bbd3df497aa5074e.zip FreeBSD-src-68abaddf758c534229cbcc68bbd3df497aa5074e.tar.gz |
Add Simon Shapiro's DPT driver
this shouldn't break anything existing.
Userland utilities to follow.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files.i386 | 5 | ||||
-rw-r--r-- | sys/conf/majors | 3 | ||||
-rw-r--r-- | sys/conf/options.i386 | 11 |
3 files changed, 16 insertions, 3 deletions
diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index e3867f4..abd7ef8 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.185 1998/01/15 07:30:54 gibbs Exp $ +# $Id: files.i386,v 1.186 1998/01/16 22:13:00 pst Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and @@ -313,3 +313,6 @@ gnu/i386/fpemul/wm_sqrt.s optional gpl_math_emulate gnu/i386/isa/dgb.c optional dgb device-driver gnu/i386/isa/sound/awe_wave.c optional awe device-driver pci/ide_pci.c optional wd device-driver +dev/dpt/dpt_control.c optional dpt device-driver +dev/dpt/dpt_scsi.c optional dpt device-driver +pci/dpt_pci.c optional dpt device-driver diff --git a/sys/conf/majors b/sys/conf/majors index 75cac8c..bbdd91d 100644 --- a/sys/conf/majors +++ b/sys/conf/majors @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.23 1997/12/09 10:51:11 jamil Exp $ +$Id: majors.i386,v 1.24 1998/01/16 22:13:01 pst Exp $ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. @@ -127,3 +127,4 @@ chrdev name comments 85 vesa VESA support device (j_mini@efn.org) 86 alog Industrial Computer Source AIO8-P driver 87 wfd ATAPI floppy client of "ata" +88 dpt DPT RAID Controller <shimon@i-connect.net> diff --git a/sys/conf/options.i386 b/sys/conf/options.i386 index 7d072e0..00658d3 100644 --- a/sys/conf/options.i386 +++ b/sys/conf/options.i386 @@ -1,4 +1,4 @@ -# $Id: options.i386,v 1.66 1997/12/28 13:36:00 phk Exp $ +# $Id: options.i386,v 1.67 1998/01/25 04:37:47 eivind Exp $ BOUNCEPAGES opt_bounce.h USER_LDT @@ -114,3 +114,12 @@ PCVT_SCANSET opt_pcvt.h PCVT_SCREENSAVER opt_pcvt.h PCVT_USEKBDSEC opt_pcvt.h PCVT_VT220KEYB opt_pcvt.h +DPT_VERIFY_HINTR opt_dpt.h +DPT_USE_SINTR opt_dpt.h +DPT_RESTRICTED_FREELIST opt_dpt.h +DPT_MEASURE_PERFORMANCE opt_dpt.h +DPT_FREELIST_IS_STACK opt_dpt.h +DPT_HANDLE_TIMEOUTS opt_dpt.h +DPT_TIMEOUT_FACTOR opt_dpt.h +DPT_INTR_DELAY opt_dpt.h +DPT_LOST_IRQ opt_dpt.h |