- Replace device node names of zskbd/zsms into lkkbd/vsms, respectively.
No functionality was changed at this moment. - Apply recent changes in GENERIC to TCWSCONS.
This commit is contained in:
parent
677f2cf93d
commit
cb6ed03a59
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: TCWSCONS,v 1.2 1999/07/29 10:37:13 augustss Exp $
|
||||
# $NetBSD: TCWSCONS,v 1.3 1999/08/04 07:17:50 nisimura Exp $
|
||||
#
|
||||
# Generic Alpha kernel. Enough to get booted, etc., but not much more.
|
||||
|
||||
|
@ -20,10 +20,12 @@ options DIAGNOSTIC # Cheap kernel consistency checks
|
|||
|
||||
# File systems
|
||||
file-system FFS # Fast file system
|
||||
file-system MFS # Memory-based file system
|
||||
#file-system MFS # Memory-based file system
|
||||
file-system CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions)
|
||||
file-system MSDOSFS # MS-DOS-compatible file system
|
||||
#file-system MSDOSFS # MS-DOS-compatible file system
|
||||
file-system NFS # Sun NFS-compatible file system client
|
||||
file-system KERNFS
|
||||
file-system PROCFS
|
||||
|
||||
# File system options
|
||||
options NFSSERVER # Sun NFS-compatible file system server
|
||||
|
@ -103,8 +105,8 @@ fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards
|
|||
|
||||
options NEW_SCC_DRIVER
|
||||
zstty* at zsc? channel 1 # serial ports on B channels
|
||||
zskbd0 at zsc1 channel 0 # keyboard port on A channels
|
||||
zsms0 at zsc0 channel 0 # mouse port on A channels
|
||||
lkkbd0 at zsc1 channel 0 # keyboard port on A channels
|
||||
vsms0 at zsc0 channel 0 # mouse port on A channels
|
||||
|
||||
# SCSI bus support
|
||||
scsibus* at asc?
|
||||
|
@ -117,8 +119,8 @@ st* at scsibus? target ? lun ? # SCSI tape drives
|
|||
# Workstation Console attachments
|
||||
wsdisplay* at cfb?
|
||||
wsdisplay* at sfb?
|
||||
wskbd* at zskbd?
|
||||
wsmouse* at zsms?
|
||||
wskbd* at lkkbd? console ? mux 1
|
||||
wsmouse* at vsms? mux 0
|
||||
|
||||
pseudo-device bpfilter 16
|
||||
pseudo-device ccd 4
|
||||
|
@ -129,6 +131,7 @@ pseudo-device ppp 4
|
|||
pseudo-device pty 64
|
||||
pseudo-device sl 4
|
||||
pseudo-device vnd 4
|
||||
pseudo-device wsmux 2
|
||||
|
||||
# rnd is EXPERIMENTAL
|
||||
#pseudo-device rnd # /dev/random and in-kernel generator
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.alpha,v 1.103 1999/06/29 07:04:16 ross Exp $
|
||||
# $NetBSD: files.alpha,v 1.104 1999/08/04 07:17:50 nisimura Exp $
|
||||
#
|
||||
# alpha-specific configuration info
|
||||
|
||||
|
@ -173,12 +173,12 @@ device zstty: tty
|
|||
attach zstty at zsc
|
||||
file dev/ic/z8530tty.c zstty needs-flag
|
||||
|
||||
device zsms: wsmousedev
|
||||
attach zsms at zsc
|
||||
device vsms: wsmousedev
|
||||
attach vsms at zsc with zsms
|
||||
file dev/dec/zsms.c zsms
|
||||
|
||||
device zskbd: wskbddev
|
||||
attach zskbd at zsc
|
||||
device lkkbd: wskbddev
|
||||
attach lkkbd at zsc with zskbd
|
||||
file dev/dec/zskbd.c zskbd needs-flag
|
||||
|
||||
# the TCDS ASIC
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.dec,v 1.3 1998/10/22 00:50:00 briggs Exp $
|
||||
# $NetBSD: files.dec,v 1.4 1999/08/04 07:17:51 nisimura Exp $
|
||||
#
|
||||
# Config file and device description for machine-independent
|
||||
# code for devices for Digital Equipment Corp. systems.
|
||||
|
@ -12,5 +12,5 @@ define le_dec_subr
|
|||
file dev/dec/if_le_dec.c le_dec_subr
|
||||
|
||||
# LK201 keyboard
|
||||
file dev/dec/lk201_ws.c zskbd
|
||||
file dev/dec/wskbdmap_lk201.c zskbd
|
||||
file dev/dec/lk201_ws.c lkkbd
|
||||
file dev/dec/wskbdmap_lk201.c lkkbd
|
||||
|
|
Loading…
Reference in New Issue