Grab next major (68) for the Specialix SI/XIO driver which is due to

come in RSN.  As Jordan said "First in, first served.."
This commit is contained in:
Peter Wemm 1995-08-05 21:33:04 +00:00
parent bbaccbeb9a
commit 958c15a053
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9940
3 changed files with 32 additions and 3 deletions

View File

@ -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.101 1995/07/22 23:53:30 bde Exp $
# $Id: files.i386,v 1.102 1995/07/28 22:25:52 jkh Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/aic7xxx_asm.c" \
@ -113,6 +113,8 @@ i386/isa/rc.c optional rc device-driver
i386/isa/readMBR.c standard
i386/isa/scd.c optional scd device-driver
i386/isa/seagate.c optional sea device-driver
i386/isa/si.c optional si device-driver
i386/isa/si_code.c optional si device-driver
i386/isa/sio.c optional sio device-driver
i386/isa/sound/dev_table.c optional snd device-driver
i386/isa/sound/soundcard.c optional snd device-driver

View File

@ -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.101 1995/07/22 23:53:30 bde Exp $
# $Id: files.i386,v 1.102 1995/07/28 22:25:52 jkh Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/aic7xxx_asm.c" \
@ -113,6 +113,8 @@ i386/isa/rc.c optional rc device-driver
i386/isa/readMBR.c standard
i386/isa/scd.c optional scd device-driver
i386/isa/seagate.c optional sea device-driver
i386/isa/si.c optional si device-driver
i386/isa/si_code.c optional si device-driver
i386/isa/sio.c optional sio device-driver
i386/isa/sound/dev_table.c optional snd device-driver
i386/isa/sound/soundcard.c optional snd device-driver

View File

@ -42,7 +42,7 @@
* SUCH DAMAGE.
*
* from: @(#)conf.c 5.8 (Berkeley) 5/12/91
* $Id: conf.c,v 1.89 1995/07/22 13:56:06 bde Exp $
* $Id: conf.c,v 1.90 1995/07/31 22:06:55 jkh Exp $
*/
#include <sys/param.h>
@ -918,6 +918,28 @@ d_ttycv_t cydevtotty;
#define cydevtotty nxdevtotty
#endif
/* Specialix serial driver */
#include "si.h"
#if NSI > 0
d_open_t siopen;
d_close_t siclose;
d_read_t siread;
d_write_t siwrite;
d_ioctl_t siioctl;
d_stop_t sistop;
d_ttycv_t sidevtotty;
#define sireset nxreset
#else
#define siopen nxopen
#define siclose nxclose
#define siread nxread
#define siwrite nxwrite
#define siioctl nxioctl
#define sistop nxstop
#define sireset nxreset
#define sidevtotty nxdevtotty
#endif
#include "ity.h"
#if NITY > 0
d_open_t ityopen;
@ -1250,6 +1272,9 @@ struct cdevsw cdevsw[] =
{ meteor_open, meteor_close, meteor_read, meteor_write, /*67*/
meteor_ioctl, nostop, nullreset, nodevtotty,/* Meteor */
seltrue, meteor_mmap, NULL },
{ siopen, siclose, siread, siwrite, /*68*/
siioctl, sistop, sireset, sidevtotty,/* slxos */
ttselect, nxmmap, NULL },
};
int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]);