blob: 38abb7791e62031088157dc99df580e4de510492 (
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
|
# $OpenBSD: LOKI,v 1.9 1999/09/12 14:15:16 kstailey Exp $
#
# LOKI, an Alpha AXPPCI33 (NoName) kernel.
#
machine alpha
option SWAPPAGER, DEVPAGER
maxusers 8
# CPU Support
option DEC_AXPPCI_33 # NoName: AXPpci33, etc.
# Standard system option
options DEBUG, DIAGNOSTIC # Extra kernel debugging
option KTRACE # System call tracing support
# Experimental
option NATIVE_ELF
option COMPAT_NETBSD
# File system option
option FFS # Fast file system
#option QUOTA # UFS quotas
option NFSCLIENT # Sun NFS-compatible file system client
option NFSSERVER # Sun NFS-compatible file system server
option CD9660 # ISO 9660 + Rock Ridge file system
#option FDESC # /dev/fd
option FIFO # POSIX fifo support (in all file systems)
option KERNFS # /kern
option MFS # memory file system
#option MSDOSFS # MS-DOS file system
#option NULLFS # mount directories on directories
#option PORTAL # dynamically created filesystem objects
option PROCFS # access the insides of procs via the FS
#option UMAPFS # NULLFS + uid and gid remapping
#option UNION # union file system
# Networking option
option INET # Internet protocol suite
#option GATEWAY # packet forwarding
option IPFILTER # IP packet filter for security
option IPFILTER_LOG # use /dev/ipl to log IPF
#option NS # XNS
#option ISO,TPIP # OSI
#option EON # OSI tunneling over IP
#option CCITT,LLC,HDLC # X.25
# 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. option
#option EISAVERBOSE # recognize "unknown" EISA devices
option PCIVERBOSE # recognize "unknown" PCI devices
#option TCVERBOSE # recognize "unknown" TC devices
#config bsd swap generic
config bsd root on sd0 swap on sd0 dumps on sd0
#config bsd root nfs swap nfs
mainbus0 at root
cpu* at mainbus0
# PCI host bus adapter support
lca* at mainbus?
# PCI bus support
pci* at lca?
pci* at ppb?
# PCI devices
ncr* at pci? dev ? function ? # NCR 53c8xx SCSI
vga* at pci? dev ? function ? # PCI VGA graphics
ppb* at pci? dev ? function ? # PCI-PCI bridges
sio* at pci? dev ? function ? # Intel PCI-ISA bridge
# ISA bus support
isa* at sio?
# ISA devices
mcclock* at isa? port 0x70
pckbc* at isa? # PC keyboard controller
pckbd* at pckbc? # PC keyboard (kbd port)
pms* at pckbc? # PS/2-style mouse (aux 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
ne0 at isa? port 0x300 iomem 0xcc000 irq 10 # NE2000 Klone
# IDE
#pciide* at pci ? dev ? function ? flags 0x0000
wdc0 at isa? port 0x1f0 irq 14 flags 0x00
#wdc1 at isa? port 0x170 irq 15 flags 0x00
wd* at wdc? channel ? drive ? flags 0x0000
#wd* at pciide? channel ? drive ? flags 0x0000
# SCSI bus support
atapiscsi* at wdc? channel ?
#atapiscsi* at pciide? channel ?
scsibus* at atapiscsi?
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 8 # Berkeley Packet Filter
pseudo-device loop # network loopback
pseudo-device pty 64 # pseudo-terminals
#pseudo-device tb 1 # tablet line discipline
#pseudo-device rd 1 # ramdisk
#pseudo-device sl 4 # CSLIP
#pseudo-device ppp 1 # PPP
#pseudo-device tun 2 # network tunneling over tty
pseudo-device vnd 4 # paging to files; mount disk images
#pseudo-device ccd 4 # concatenated disk devices
pseudo-device ksyms 1 # kernel symbols device
#pseudo-device bridge 2 # network bridging support
|