blob: 9f3ecbb73d06c6d5ad136a9d365a0a699874b674 (
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
155
156
|
# $OpenBSD: OPAL,v 1.5 1997/01/24 19:57:00 niklas Exp $
#
# OPAL, kernel for a DEC Multia at Applitron
include "arch/alpha/conf/std.alpha"
maxusers 8
# CPU Support
option DEC_AXPPCI_33 # NoName: AXPpci33, etc.
# needs to be set per system
option TIMEZONE="-1*60" # Minutes west of GMT (for param.c)
option DST=1 # Daylight savings rules (for param.c)
# Standard system options
option DEBUG, DIAGNOSTIC # Extra kernel debugging
option KTRACE # System call tracing support
#option DDB # Kernel debugger (not yet supported)
option BOOTKEY # Wait for key press before reboot/halt
# File system options
option FIFO # POSIX fifo support (in all file systems)
option FFS # Fast file system
option MFS # Memory-based file system
option NFSSERVER # Sun NFS-compatible file system server
option NFSCLIENT # Sun NFS-compatible file system client
#option NULLFS # Loopback file system
#option MSDOSFS # MS-DOS file system
#option UNION # Union file system
option CD9660 # ISO 9660 + Rock Ridge file system
# SVR IPC
option SYSVMSG
option SYSVSEM
option SYSVSHM
# Networking options
option INET # Internet protocol suite
# 4.3BSD compatibility. Should be optional, but necessary for now.
option COMPAT_43
# Binary compatibility with previous versions of NetBSD.
#option COMPAT_09
option COMPAT_10
option COMPAT_11
option COMPAT_12
# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
option COMPAT_OSF1
# Loadable Kernel Modules
option LKM
# Disable kernel security.
#option INSECURE
# Misc. options
option PCIVERBOSE # recognize "unknown" PCI devices
config bsd swap generic
#config bsd root on sd0 swap on sd0
#config bsd root nfs swap nfs
mainbus0 at root
cpu* at mainbus0
# TurboChannel host bus adapter support
tcasic* at mainbus0
# TurboChannel bus support
tc* at tcasic?
# TurboChannel devices
ioasic0 at tc? slot ? offset ?
mcclock0 at ioasic? offset ?
le* at ioasic? offset ?
scc0 at ioasic? offset ?
scc1 at ioasic? offset ?
tcds0 at tc? slot ? offset ?
esp0 at tcds? slot ?
esp1 at tcds? slot ?
cfb* at tc? slot ? offset ?
sfb* at tc? slot ? offset ?
le* at tc? slot ? offset ?
fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards
# PCI host bus adapter support
apecs* at mainbus?
cia* at mainbus?
lca* at mainbus?
# PCI bus support
pci* at apecs?
pci* at cia?
pci* at lca?
pci* at ppb?
# PCI devices
de* at pci?
le* at pci?
ncr* at pci?
pceb* at pci?
vga* at pci?
ppb* at pci?
sio* at pci?
tga* at pci?
fpa* at pci? dev ? function ? # DEC DEFPA FDDI cards
# ISA/EISA bus support
isa* at pceb?
eisa* at pceb?
isa* at sio?
# ISA devices
#isadma0 at isa?
mcclock0 at isa? port 0x70
pcppi* at isa? # PC prog. periph. interface
pckbd* at pcppi? # PC keyboard (kbd port)
pms* at pcppi? # PS/2-style mouse (aux port)
com0 at isa? port 0x3f8 irq 4 # standard serial ports
com1 at isa? port 0x2f8 irq 3
lpt0 at isa? port 0x3bc irq 7 # standard parallel port
# Not yet supported
#wss0 at isa? port 0x530 irq 9 drq 0 # Windows Sound System
#fdc0 at isa? port 0x3f0 irq 6 drq 2 # floppy controller
#fd* at fdc? drive?
# EISA devices
fea* at eisa? slot ? # DEC DEFEA FDDI cards
# SCSI bus support
scsibus* at esp?
scsibus* at ncr?
# SCSI devices
sd* at scsibus? target ? lun ?
st* at scsibus? target ? lun ?
cd* at scsibus? target ? lun ?
ch* at scsibus? target ? lun ?
ss* at scsibus? target ? lun ?
uk* at scsibus? target ? lun ?
# Workstation Console attachments
wscons* at cfb?
wscons* at vga?
wscons* at sfb?
wscons* at tga?
pseudo-device bpfilter 16
pseudo-device loop
pseudo-device pty 64
pseudo-device sl 4
pseudo-device vnd 4
pseudo-device rd 1
|