Add lcspx console device driver.
This commit is contained in:
parent
a893520c07
commit
90f561b5ff
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.114 2003/08/29 13:51:47 ragge Exp $
|
||||
# $NetBSD: GENERIC,v 1.115 2003/10/19 15:03:25 ragge Exp $
|
||||
#
|
||||
# GENERIC machine description file
|
||||
#
|
||||
|
@ -22,7 +22,7 @@ include "arch/vax/conf/std.vax"
|
|||
|
||||
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
||||
|
||||
#ident "GENERIC-$Revision: 1.114 $"
|
||||
#ident "GENERIC-$Revision: 1.115 $"
|
||||
|
||||
# Here are all different supported CPU types listed.
|
||||
#options VAX8800 # VAX 8500, 8530, 8550, 8700, 8800
|
||||
|
@ -178,6 +178,7 @@ asc0 at vsbus0 csr 0x200c0080 # VS4000/60 (or VLC) SCSI-ctlr
|
|||
asc0 at vsbus0 csr 0x26000080 # VS4000/90 and 4000/10x SCSI-ctlr
|
||||
smg0 at vsbus0 csr 0x200f0000 # Small monochrome display ctlr.
|
||||
#clr0 at vsbus0 csr 0x30000000 # 4- or 8-bitplans color graphics
|
||||
lcspx0 at vsbus0 csr 0x38000000 # Low Cost SPX on VS4000/90.
|
||||
|
||||
hdc0 at vsbus0 csr 0x200c0000 # HDC9224 MFM/floppy ctlr
|
||||
rd* at hdc0 drive? # RD5x disks
|
||||
|
@ -252,6 +253,7 @@ uk* at scsibus? target? lun?
|
|||
|
||||
# VAXstation graphics support
|
||||
wsdisplay0 at smg0
|
||||
wsdisplay0 at lcspx0
|
||||
#wsdisplay0 at clr0
|
||||
#wsdisplay0 at qd0
|
||||
#wsdisplay0 at qv0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.vax,v 1.100 2003/09/29 21:04:53 matt Exp $
|
||||
# $NetBSD: files.vax,v 1.101 2003/10/19 15:03:25 ragge Exp $
|
||||
#
|
||||
# new style config file for vax architecture
|
||||
#
|
||||
|
@ -176,6 +176,16 @@ device smg: wsemuldisplaydev
|
|||
attach smg at vsbus
|
||||
file arch/vax/vsa/smg.c smg needs-flag
|
||||
|
||||
# Color framebuffer on VS4000/60.
|
||||
device lcg: wsemuldisplaydev
|
||||
attach lcg at vsbus
|
||||
file arch/vax/vsa/lcg.c lcg needs-flag
|
||||
|
||||
# Color framebuffer on VS4000/90.
|
||||
device lcspx: wsemuldisplaydev
|
||||
attach lcspx at vsbus
|
||||
file arch/vax/vsa/lcspx.c lcspx needs-flag
|
||||
|
||||
# LANCE ethernet controller on VAXstation
|
||||
attach le at vsbus with le_vsbus: le24
|
||||
file arch/vax/if/if_le_vsbus.c le_vsbus
|
||||
|
|
Loading…
Reference in New Issue