blob: 58e6c13def6cc9882053cc70758ea17506508523 (
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
|
# $OpenBSD: ALATAR,v 1.3 1997/07/08 21:26:26 deraadt Exp $
#
# AXPpci 33 kernel. Enough to get booted, etc., but not much more.
machine alpha
option SWAPPAGER, DEVPAGER
maxusers 8
# CPU Support
options DEC_AXPPCI_33 # NoName: AXPpci33, etc.
# Standard system options
options DIAGNOSTIC # Extra kernel debugging
options KTRACE # System call tracing support
# File system options
options FIFO # POSIX fifo support (in all file systems)
options FFS # Fast file system
options MFS # Memory-based file system
options NFSSERVER # Sun NFS-compatible file system server
options 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
options INET # Internet protocol suite
option IPSEC # IP-SEC encapsulation
# 4.3BSD compatibility. Should be optional, but necessary for now.
options COMPAT_43
# Binary compatibility with previous versions of NetBSD.
#options COMPAT_09
options COMPAT_10
options COMPAT_11
options COMPAT_12
# OSF/1 binary compatibility -- CURRENTLY DOES NOT WORK
#options COMPAT_OSF1
# Loadable Kernel Modules
options LKM
# Disable kernel security.
#options INSECURE
# Misc. options
options PCIVERBOSE # recognize "unknown" PCI devices
config bsd root on sd0 swap on sd0
mainbus0 at root
cpu* at mainbus0
# PCI host bus adapter support
lca* at mainbus?
# PCI bus support
pci* at lca?
# PCI devices
ncr* at pci? dev ? function ? # NCR 53c8xx SCSI
sio* at pci? dev ? function ? # Intel PCI-ISA bridge
vga* at pci? dev ? function ? # PCI VGA
# ISA/EISA bus support
isa* at sio?
# ISA devices
mcclock* at isa? port 0x70
pcppi* at isa? # PC prog. periph. interface
pckbd* at pcppi? # PC keyboard (kbd port)
com* at isa? port 0x3f8 irq 4 # standard serial ports
com* at isa? port 0x2f8 irq 3
lpt* at isa? port 0x3bc irq 7 # standard parallel port
ed0 at isa? port 0x300 iomem 0xcc000 irq 10
# SCSI bus support
scsibus* at ncr?
# SCSI devices
cd* at scsibus? target ? lun ?
sd* at scsibus? target ? lun ?
ss* at scsibus? target ? lun ?
st* at scsibus? target ? lun ?
uk* at scsibus? target ? lun ?
# Workstation Console attachments
wscons* at vga?
pseudo-device bpfilter 16
pseudo-device loop
pseudo-device pty 64
pseudo-device vnd 4
pseudo-device enc 4
|