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