blob: 0a5f78adf591acd48edc67407780c81edd9a7017 (
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
|
# $OpenBSD: LOKI,v 1.3 1997/09/26 16:49:20 kstailey Exp $
#
# LOKI, an Alpha AXPPCI33 (NoName) kernel.
#
machine alpha
option SWAPPAGER, DEVPAGER
maxusers 8
# CPU Support
option DEC_AXPPCI_33 # NoName: AXPpci33, etc.
# needs to be set per system
option TIMEZONE="5*60" # Minutes west of GMT (for param.c)
option DST=1 # Daylight savings rules (for param.c)
# Standard system option
options DEBUG, DIAGNOSTIC # Extra kernel debugging
option KTRACE # System call tracing support
# 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
#de* at pci? dev ? function ? # 21x4[012]-based Ethernet
ed* at pci? dev ? function ? # NE2000-compat ethernet cards
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/EISA bus support
#isa* at pceb?
#eisa* at pceb?
isa* at sio?
# ISA devices
mcclock* 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)
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
vga* at isa? # ISA (EISA: XXX) VGA
ed0 at isa? port 0x300 iomem 0xcc000 irq 10 # NE2000 Klone
#wss* at isa? port 0x530 irq 9 drq 0 # Windows Sound System
# 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 # Berkeley Packet Filter
pseudo-device loop # network loopback
pseudo-device pty 64 # pseudo-terminals
#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
|