diff options
| author | ragge <ragge@NetBSD.org> | 2003-10-19 15:03:25 +0000 |
|---|---|---|
| committer | ragge <ragge@NetBSD.org> | 2003-10-19 15:03:25 +0000 |
| commit | 90f561b5ff3d1cf7d1fa3bc2c0b45f542b95de41 (patch) | |
| tree | 79c2e2c093526f0fe1036b1229891d52150fb576 /sys | |
| parent | a893520c07914ef4a777f53ca4216bdc054a5b8a (diff) | |
Add lcspx console device driver.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/vax/conf/GENERIC | 6 | ||||
| -rw-r--r-- | sys/arch/vax/conf/files.vax | 12 |
2 files changed, 15 insertions, 3 deletions
diff --git a/sys/arch/vax/conf/GENERIC b/sys/arch/vax/conf/GENERIC index 21323446883..988163e807a 100644 --- a/sys/arch/vax/conf/GENERIC +++ b/sys/arch/vax/conf/GENERIC @@ -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 diff --git a/sys/arch/vax/conf/files.vax b/sys/arch/vax/conf/files.vax index ca9f91c82cc..138c58e27d1 100644 --- a/sys/arch/vax/conf/files.vax +++ b/sys/arch/vax/conf/files.vax @@ -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 |
