blob: 400d4a88659c5cf982593b50e69419478c185aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
# $OpenBSD: GENERIC,v 1.7 1997/01/15 23:24:29 maja Exp $
# $NetBSD: GENERIC,v 1.19 1997/01/11 11:15:38 ragge Exp $
#
# GENERIC VAX configuration file; all supported devices.
#
machine vax
# Here are all different supported CPU types listed.
options "VAX8600"
options "VAX8200"
options "VAX780"
options "VAX750"
options "VAX630" # MV II
options "VAX650" # MV III, 3600, 3800, 3900
options "VAX410" # VS 2000
options "VAX43" # VS 3100/76
# Kernel identification
options GENERIC
# Max users on system; this is just a hint
maxusers 8
# Paging system, we always have them all.
options SWAPPAGER, DEVPAGER
# Kernel compiled-in symbolic debugger & system call tracer
options DDB
options KTRACE
options DIAGNOSTIC
# Network support
#options GATEWAY
options INET
# All supported filesystem types
options FFS,QUOTA
options LFS
options MFS
options NFSCLIENT
options NFSSERVER
options FDESC
options FIFO
options KERNFS
options NULLFS
options PROCFS
options UMAPFS
options UNION
# System V shared memory & semaphores support.
options SYSVMSG
options SYSVSEM
options SYSVSHM
# What executables to look for.
options EXEC_AOUT
options EXEC_SCRIPT
# Old compat stuff; needed to run 4.3BSD Reno programs.
# Note that if COMPAT_ULTRIX is set, you lose compatibility with
# 4.3BSD Reno programs and get Ultrix compatibility instead.
# (They cannot coexist).
options COMPAT_43
options COMPAT_09
options COMPAT_10
options COMPAT_11
options COMPAT_12
#options COMPAT_ULTRIX
#options TCP_COMPAT_42
options LKM
# Kernel(s) to compile
config bsd swap generic
backplane0 at root
# Devices directly attached to backplane.
cpu0 at backplane0 # Only one CPU so far.
sbi* at backplane0 # SBI's are always at backplane (Abus).
mem* at backplane0 # Some machines have memory at backplane.
bi* at backplane0 # VAXBI bus
cmi0 at backplane0 # 11/750 internal bus.
uba0 at backplane0 # MicroVAXen only have QBUS.
vsbus0 at backplane0 # Internal "virtual" VAXstation bus
# Devices connected at VAXBI
cpu0 at bi? node? # KA820/KA825 cpu
mem* at bi? node? # Memory subsystems
#ni* at bi? node? # DEBNA/DEBNT ethernet adapter
kdb* at bi? node? # KDB50 MSCP disk ctlr
mscpbus* at kdb?
# Devices connected at cmi
mem* at cmi? tr? # Memory subsystems
uba* at cmi? tr? # Unibus adapters
mba* at cmi? tr? # Massbus adapters
# Devices connected at sbi
mem* at sbi? tr? # Memory subsystems
uba* at sbi? tr? # Unibus adapters
mba* at sbi? tr? # Massbus adapters
# Devices on Massbus adapters
hp* at mba? drive? # RM/RP disk drives
# Disk controllers at Unibus
uda0 at uba? csr 0172150 # UDA50/RQDX?
uda1 at uba? csr 0160334
mscpbus* at uda?
# Tape drivers
mtc0 at uba? csr 0174500 # Tape MSCP ctlr
mscpbus* at mtc?
# MSCP devices
ra* at mscpbus? drive? # MSCP disk
mt* at mscpbus? drive? # MSCP tape
# Unibus tapes
#ts0 at uba? csr 0172520 # TS11/TSV05 tape.
# VS2000 builtin MFM controller (HDC9224)
hdc0 at vsbus0 # The strange builtin MFM controller
rd* at hdc0 drive? # The RD disk subsystem on VS2000
# VAXstation builtin SCSI-controller (NCR5380)
ncr0 at vsbus0 # 1st built-in SCSI interface
ncr1 at vsbus0 # 2nd built-in SCSI interface
scsibus* at ncr?
sd* at scsibus? target? lun?
st* at scsibus? target? lun?
# Ethernet cards
de0 at uba? csr 0174510 # DELUA/DEUNA
qe0 at uba? csr 0174440 # DEQNA/DELQA
le0 at vsbus0 # LANCE
# Terminal lines
dhu0 at uba? csr 0160440 # DHU-11
dz0 at uba? csr 0160100 # DZ-11
pseudo-device loop 1
pseudo-device pty 48
pseudo-device bpfilter 8 # Not supported by de or qe yet.
pseudo-device sl 2
pseudo-device ppp 2
pseudo-device tun 2
pseudo-device tb 1
pseudo-device vnd 4
pseudo-device ccd 4
|