diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-08-04 21:44:09 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-08-04 21:44:09 +0000 |
commit | c35bda9472607679d67afdec64cad542d568b5a3 (patch) | |
tree | 18b8e509d4ddc6af89805a2d39aafebe5004bbb4 /sys/conf | |
parent | 33ca24de101c347be6f276c590a74ab7641055da (diff) | |
download | src-c35bda9472607679d67afdec64cad542d568b5a3.tar.gz src-c35bda9472607679d67afdec64cad542d568b5a3.zip |
Add driver dgm - for the Digiboard PC/Xem
Submitted by: "IBS / Andre Oppermann" <andre@pipeline.ch>
DEVFS additions: brian
dgm gets major number 101.
Notes
Notes:
svn path=/head/; revision=38108
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/NOTES | 8 | ||||
-rw-r--r-- | sys/conf/files.i386 | 3 | ||||
-rw-r--r-- | sys/conf/majors | 5 |
3 files changed, 10 insertions, 6 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index ab64a7afc99d..85944b938637 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.447 1998/07/20 20:00:30 msmith Exp $ +# $Id: LINT,v 1.448 1998/08/03 19:14:31 msmith Exp $ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from @@ -1167,6 +1167,7 @@ device pca0 at isa? port IO_TIMER1 tty # bktr: Bt848 capture boards (http://www.freebsd.org/~fsmp/HomeAuto/Bt848.html) # cy: Cyclades serial driver # dgb: Digiboard PC/Xi and PC/Xe series driver (ALPHA QUALITY!) +# dgm: Digiboard PC/Xem driver # gp: National Instruments AT-GPIB and AT-GPIB/TNT board # asc: GI1904-based hand scanners, e.g. the Trust Amiscan Grey # gsc: Genius GS-4500 hand scanner. @@ -1232,8 +1233,8 @@ device pca0 at isa? port IO_TIMER1 tty # Notes on the Digiboard driver: # # The following flag values have special meanings: -# 0x01 - alternate layout of pins -# 0x02 - use the windowed PC/Xe in 64K mode +# 0x01 - alternate layout of pins (dgb & dgm) +# 0x02 - use the windowed PC/Xe in 64K mode (dgb only) # Notes on the Specialix SI/XIO driver: # **This is NOT a Specialix supported Driver!** @@ -1272,6 +1273,7 @@ device joy0 at isa? port "IO_GAME" device alog0 at isa? port 0x260 tty irq 5 vector alogintr device cy0 at isa? tty irq 10 iomem 0xd4000 iosiz 0x2000 vector cyintr device dgb0 at isa? port 0x220 iomem 0xfc0000 iosiz ? tty +device dgm0 at isa? port 0x104 iomem 0xd00000 iosiz ? tty device labpc0 at isa? port 0x260 tty irq 5 vector labpcintr device rc0 at isa? port 0x220 tty irq 12 vector rcintr device rp0 at isa? port 0x280 tty diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index 451feeaf8f43..f9c3d6c10d5b 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.198 1998/06/16 14:55:27 bde Exp $ +# $Id: files.i386,v 1.199 1998/07/20 20:00:30 msmith Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and @@ -314,5 +314,6 @@ gnu/i386/fpemul/reg_u_sub.s optional gpl_math_emulate gnu/i386/fpemul/wm_shrx.s optional gpl_math_emulate gnu/i386/fpemul/wm_sqrt.s optional gpl_math_emulate gnu/i386/isa/dgb.c optional dgb device-driver +gnu/i386/isa/dgm.c optional dgm device-driver gnu/i386/isa/sound/awe_wave.c optional awe device-driver pci/ide_pci.c optional wd device-driver diff --git a/sys/conf/majors b/sys/conf/majors index 5a53267bc0d4..d383b3962952 100644 --- a/sys/conf/majors +++ b/sys/conf/majors @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.42 1998/05/13 12:38:26 jkh Exp $ +$Id: majors.i386,v 1.43 1998/05/29 08:51:34 phk Exp $ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. @@ -101,7 +101,7 @@ chrdev name comments 55 OLDisdn ISDN system 56 OLDity ISDN system 57 OLDitel ISDN system -58 dgb Digiboard +58 dgb Digiboard PC/Xe 59 OLDispy ISDN system 60 OLDnnic ISDN system 61 pt SCSI "processor type" @@ -144,3 +144,4 @@ chrdev name comments 98 loe Loopback pseudo-ethernet (sbabkin@dcn.att.com) 99 ct Cronyx/Tau serial adaptor 100 xrpu Xilinx Reprogrammable Processing Unit +101 dgm Digiboard PC/Xem |