GENERIC revision 1.99 1 1.99 dholland # $NetBSD: GENERIC,v 1.99 2014/08/23 20:26:59 dholland Exp $
2 1.1 simonb
3 1.18 simonb include "arch/sbmips/conf/std.sbmips"
4 1.1 simonb
5 1.5 atatat options INCLUDE_CONFIG_FILE # embed config file in kernel binary
6 1.5 atatat
7 1.99 dholland #ident "GENERIC-$Revision: 1.99 $"
8 1.16 simonb
9 1.16 simonb #options LOCKDEBUG # XXX XXX XXX XXX
10 1.46 chs #options DEBUG # extra kernel debugging support
11 1.1 simonb
12 1.1 simonb # The following three options are required for BCM1250 pass 1 silicon
13 1.16 simonb #options SB1250_PASS1
14 1.16 simonb #options NOFPU
15 1.81 matt #options FPEMUL
16 1.1 simonb
17 1.1 simonb maxusers 32
18 1.1 simonb
19 1.1 simonb # Standard system options
20 1.1 simonb options KTRACE # system call tracing support
21 1.1 simonb options SYSVMSG # System V message queues
22 1.1 simonb options SYSVSEM # System V semaphores
23 1.1 simonb options SYSVSHM # System V shared memory
24 1.1 simonb #options NTP # network time protocol
25 1.1 simonb
26 1.1 simonb # Debugging options
27 1.46 chs #options DIAGNOSTIC # extra kernel sanity checking
28 1.1 simonb #options DEBUG # extra kernel debugging support
29 1.1 simonb #options KMEMSTATS # kernel memory statistics (vmstat -m)
30 1.10 lukem options USERCONF # userconf(4) support
31 1.29 atatat options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
32 1.1 simonb options DDB # kernel dynamic debugger
33 1.1 simonb options DDB_HISTORY_SIZE=100 # enable history editing in DDB
34 1.1 simonb #makeoptions DEBUG="-g" # compile full symbol table
35 1.98 joerg makeoptions COPY_SYMTAB=1 # size for embedded symbol table
36 1.1 simonb
37 1.1 simonb # Compatibility options
38 1.1 simonb options COMPAT_43 # compatibility with 4.3BSD binaries
39 1.99 dholland #options COMPAT_09 # NetBSD 0.9,
40 1.99 dholland #options COMPAT_10 # NetBSD 1.0,
41 1.99 dholland #options COMPAT_11 # NetBSD 1.1,
42 1.99 dholland #options COMPAT_12 # NetBSD 1.2,
43 1.99 dholland #options COMPAT_13 # NetBSD 1.3,
44 1.99 dholland #options COMPAT_14 # NetBSD 1.4,
45 1.99 dholland #options COMPAT_15 # NetBSD 1.5,
46 1.99 dholland options COMPAT_16 # NetBSD 1.6,
47 1.99 dholland options COMPAT_20 # NetBSD 2.0,
48 1.99 dholland options COMPAT_30 # NetBSD 3.0,
49 1.99 dholland options COMPAT_40 # NetBSD 4.0,
50 1.99 dholland options COMPAT_50 # NetBSD 5.0,
51 1.99 dholland options COMPAT_60 # NetBSD 6.0, and
52 1.99 dholland options COMPAT_70 # NetBSD 7.0 binary compatibility
53 1.1 simonb #options EXEC_ECOFF # exec ECOFF binaries
54 1.1 simonb #options COMPAT_ULTRIX # binary compatibility with Ultrix
55 1.31 christos options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
56 1.1 simonb
57 1.1 simonb # File systems
58 1.1 simonb file-system FFS # Berkeley Fast Filesystem
59 1.1 simonb file-system NFS # Sun NFS-compatible filesystem client
60 1.1 simonb file-system KERNFS # kernel data-structure filesystem
61 1.1 simonb #file-system NULLFS # NULL layered filesystem
62 1.1 simonb file-system OVERLAY # overlay file system
63 1.1 simonb file-system MFS # memory-based filesystem
64 1.1 simonb file-system FDESC # user file descriptor filesystem
65 1.1 simonb #file-system UMAPFS # uid/gid remapping filesystem
66 1.1 simonb file-system LFS # Log-based filesystem (still experimental)
67 1.6 simonb file-system PROCFS # /proc
68 1.1 simonb #file-system CD9660 # ISO 9660 + Rock Ridge file system
69 1.1 simonb #file-system UNION # union file system
70 1.1 simonb #file-system MSDOSFS # MS-DOS FAT filesystem(s).
71 1.1 simonb #file-system CODA # Coda File System; also needs vcoda (below)
72 1.44 christos file-system PTYFS # /dev/pts/N support
73 1.77 chs file-system TMPFS # Efficient memory file-system
74 1.50 reinoud #file-system UDF # experimental - OSTA UDF CD/DVD file-system
75 1.1 simonb
76 1.1 simonb # File system options
77 1.1 simonb options NFSSERVER # Sun NFS-compatible filesystem server
78 1.82 bouyer options QUOTA # legacy UFS quotas
79 1.82 bouyer options QUOTA2 # new, in-filesystem UFS quotas
80 1.47 tsutsui #options FFS_NO_SNAPSHOT # No FFS snapshot support
81 1.83 wiz #options FFS_EI # FFS Endian Independent support
82 1.86 dholland options WAPBL # File system journaling support
83 1.33 rumble #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
84 1.1 simonb #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
85 1.1 simonb # immutable) behave as system flags.
86 1.1 simonb
87 1.1 simonb # Networking options
88 1.1 simonb #options GATEWAY # IP packet forwarding
89 1.1 simonb options INET # Internet protocols
90 1.1 simonb options INET6 # IPV6
91 1.1 simonb #options IPSEC # IP security
92 1.1 simonb #options IPSEC_DEBUG # debug for IP security
93 1.1 simonb #options MROUTING # packet forwarding of multicast packets
94 1.30 manu #options PIM # Protocol Independent Multicast
95 1.1 simonb #options NETATALK # AppleTalk (over Ethernet) protocol
96 1.1 simonb #options PPP_BSDCOMP # BSD-Compress compression support for PPP
97 1.1 simonb #options PPP_DEFLATE # Deflate compression support for PPP
98 1.1 simonb options PPP_FILTER # Active filter support for PPP (requires bpf)
99 1.1 simonb options IPFILTER_LOG # ipmon(8) log support
100 1.57 christos options IPFILTER_LOOKUP # ippool(8) support
101 1.78 mrg options IPFILTER_COMPAT # Compat for IP-Filter
102 1.12 martti #options IPFILTER_DEFAULT_BLOCK # block all packets by default
103 1.1 simonb
104 1.27 abs #options ALTQ # Manipulate network interfaces' output queues
105 1.27 abs #options ALTQ_BLUE # Stochastic Fair Blue
106 1.27 abs #options ALTQ_CBQ # Class-Based Queueing
107 1.27 abs #options ALTQ_CDNR # Diffserv Traffic Conditioner
108 1.27 abs #options ALTQ_FIFOQ # First-In First-Out Queue
109 1.27 abs #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
110 1.27 abs #options ALTQ_HFSC # Hierarchical Fair Service Curve
111 1.27 abs #options ALTQ_LOCALQ # Local queueing discipline
112 1.27 abs #options ALTQ_PRIQ # Priority Queueing
113 1.27 abs #options ALTQ_RED # Random Early Detection
114 1.27 abs #options ALTQ_RIO # RED with IN/OUT
115 1.27 abs #options ALTQ_WFQ # Weighted Fair Queueing
116 1.27 abs
117 1.1 simonb # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended.
118 1.1 simonb #options TCP_COMPAT_42
119 1.1 simonb
120 1.96 alnsn # JIT compiler for bpfilter
121 1.96 alnsn #options SLJIT
122 1.96 alnsn #options BPFJIT
123 1.96 alnsn
124 1.1 simonb # These options enable verbose messages for several subsystems.
125 1.1 simonb # Warning, these may compile large string tables into the kernel!
126 1.1 simonb options PCIVERBOSE # verbose PCI device autoconfig messages
127 1.1 simonb #options PCI_CONFIG_DUMP # verbosely dump PCI config space
128 1.1 simonb #options SCSIVERBOSE # human readable SCSI error messages
129 1.1 simonb options MIIVERBOSE # verbose PHY autoconfig messages
130 1.1 simonb
131 1.1 simonb options NFS_BOOT_DHCP
132 1.1 simonb
133 1.1 simonb #config netbsd root on ? type ?
134 1.1 simonb config netbsd root on sbmac0 type nfs
135 1.1 simonb
136 1.1 simonb zbbus* at root
137 1.1 simonb
138 1.6 simonb cpu* at zbbus? busid ?
139 1.1 simonb sbscd* at zbbus? busid ?
140 1.81 matt sbbrz* at zbbus? busid ?
141 1.1 simonb sbobio* at zbbus? busid ?
142 1.1 simonb
143 1.81 matt pci* at sbbrz? bus ?
144 1.81 matt ppb* at pci? dev ?
145 1.81 matt pci* at ppb?
146 1.81 matt
147 1.81 matt ohci* at pci? dev ? function ? # Open Host Controller
148 1.81 matt
149 1.81 matt bge* at pci? dev ?
150 1.81 matt
151 1.81 matt #sbicu* at sbscd? offset ?
152 1.81 matt sbwdog* at sbscd? offset ? intr ?
153 1.81 matt sbtimer0 at sbscd? offset ? intr ? flags 0x01 # clock
154 1.81 matt #sbtimer1 at sbscd? offset ? intr ? flags 0x02 # statclock
155 1.81 matt sbtimer* at sbscd? offset ? intr ?
156 1.81 matt
157 1.81 matt sbmac* at sbobio? offset ?
158 1.81 matt sbscn* at sbobio? offset ?
159 1.81 matt #sbgbus* at sbobio? offset ?
160 1.81 matt smbus* at sbobio? offset ?
161 1.7 simonb
162 1.16 simonb xirtc* at smbus? chan ? dev ? # Xicor X1241 RTC
163 1.23 simonb m41t81rtc* at smbus? chan ? dev ? # ST M41T81 RTC
164 1.1 simonb
165 1.1 simonb # MII/PHY support
166 1.6 simonb brgphy* at mii? phy ?
167 1.1 simonb
168 1.81 matt # USB
169 1.81 matt usb* at ohci?
170 1.81 matt uhub* at usb?
171 1.81 matt uhub* at uhub? port ?
172 1.81 matt umass* at uhub? port ? configuration ? interface ?
173 1.81 matt wd* at umass?
174 1.81 matt scsibus* at umass? channel ?
175 1.81 matt sd* at scsibus? target ? lun ?
176 1.81 matt uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
177 1.81 matt ucom* at uplcom? portno ?
178 1.81 matt
179 1.1 simonb # Pseudo-devices
180 1.1 simonb
181 1.1 simonb # Disk/mass storage pseudo-devices
182 1.91 christos pseudo-device ccd # concatenated disk devices
183 1.91 christos #pseudo-device cgd # cryptographic disk devices
184 1.92 christos #pseudo-device raid # RAIDframe disk driver
185 1.1 simonb #options RAID_AUTOCONFIG # auto-configuration of RAID
186 1.80 hannken pseudo-device md # memory disk device (ramdisk)
187 1.52 cube pseudo-device vnd # disk-like interface to files
188 1.39 hubertf #options VND_COMPRESSION # compressed vnd(4)
189 1.1 simonb
190 1.1 simonb # Network pseudo-devices
191 1.51 rpaulo pseudo-device bpfilter # Berkeley packet filter
192 1.53 liamjfoy #pseudo-device carp # Common Address Redundancy Protocol
193 1.1 simonb pseudo-device ipfilter # IP filter (firewall) and NAT
194 1.1 simonb pseudo-device loop # network loopback
195 1.52 cube #pseudo-device ppp # Point-to-Point Protocol
196 1.1 simonb #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
197 1.52 cube #pseudo-device sl # Serial Line IP
198 1.52 cube #pseudo-device strip # Starmode Radio IP (Metricom)
199 1.1 simonb #pseudo-device irframetty # IrDA frame line discipline
200 1.52 cube #pseudo-device tun # network tunneling over tty
201 1.32 cube #pseudo-device tap # virtual Ethernet
202 1.52 cube #pseudo-device gre # generic L3 over IP tunnel
203 1.92 christos #pseudo-device ipip # RFC 2003 IP Encapsulation
204 1.52 cube #pseudo-device gif # RFC1933 tunnel
205 1.52 cube #pseudo-device faith # IPv[46] tcp relay translation
206 1.52 cube #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
207 1.1 simonb pseudo-device vlan # IEEE 802.1q encapsulation
208 1.1 simonb pseudo-device bridge # simple inter-network bridging
209 1.19 perseant #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
210 1.61 martin pseudo-device agr # IEEE 802.3ad link aggregation
211 1.1 simonb
212 1.69 tls #
213 1.69 tls # accept filters
214 1.69 tls pseudo-device accf_data # "dataready" accept filter
215 1.69 tls pseudo-device accf_http # "httpready" accept filter
216 1.69 tls
217 1.1 simonb # Miscellaneous pseudo-devices
218 1.1 simonb pseudo-device pty # pseudo-terminals
219 1.93 christos #pseudo-device sequencer # MIDI sequencer
220 1.8 lukem pseudo-device clockctl # user control of clock subsystem
221 1.21 ragge pseudo-device ksyms # /dev/ksyms
222 1.26 itojun #pseudo-device pf # PF packet filter
223 1.26 itojun #pseudo-device pflog # PF log if
224 1.1 simonb
225 1.1 simonb # A pseudo device needed for Coda # also needs CODA (above)
226 1.92 christos #pseudo-device vcoda # coda minicache <-> venus comm.
227 1.48 elad
228 1.48 elad # Veriexec
229 1.48 elad #
230 1.48 elad # a pseudo device needed for veriexec
231 1.92 christos #pseudo-device veriexec
232 1.48 elad #
233 1.48 elad # Uncomment the fingerprint methods below that are desired. Note that
234 1.48 elad # removing fingerprint methods will have almost no impact on the kernel
235 1.48 elad # code size.
236 1.48 elad #
237 1.48 elad #options VERIFIED_EXEC_FP_RMD160
238 1.48 elad #options VERIFIED_EXEC_FP_SHA256
239 1.48 elad #options VERIFIED_EXEC_FP_SHA384
240 1.48 elad #options VERIFIED_EXEC_FP_SHA512
241 1.48 elad #options VERIFIED_EXEC_FP_SHA1
242 1.48 elad #options VERIFIED_EXEC_FP_MD5
243