]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | # |
2 | # Mach Operating System | |
3 | # Copyright (c) 1986 Carnegie-Mellon University | |
d9a64523 | 4 | # Copyright 2001-2018 Apple Inc. |
fe8ab488 | 5 | # |
1c79356b A |
6 | # All rights reserved. The CMU software License Agreement |
7 | # specifies the terms and conditions for use and redistribution. | |
8 | # | |
9 | ####################################################################### | |
10 | # | |
11 | # Master machine independent configuration file. | |
12 | # | |
13 | # Specific configuration files are created based on this and | |
14 | # the machine specific master file using the doconf script. | |
15 | # | |
16 | # Any changes to the master configuration files will affect all | |
17 | # other configuration files based upon it. | |
18 | # | |
19 | ####################################################################### | |
20 | # | |
21 | # To build a configuration, execute "doconf <configuration>." | |
22 | # Configurations are specified in the "Configurations:" section | |
23 | # of the MASTER and MASTER.* files as follows: | |
24 | # | |
25 | # <configuration> = [ <attribute0> <attribute1> ... <attributeN> ] | |
26 | # | |
27 | # Lines in the MASTER and MASTER.* files are selected based on | |
28 | # the attribute selector list, found in a comment at the end of | |
29 | # the line. This is a list of attributes separated by commas. | |
30 | # The "!" operator selects the line if none of the attributes are | |
31 | # specified. | |
32 | # | |
33 | # For example: | |
34 | # | |
35 | # <foo,bar> selects a line if "foo" or "bar" are specified. | |
36 | # <!foo,bar> selects a line if neither "foo" nor "bar" is | |
37 | # specified. | |
38 | # | |
39 | # Lines with no attributes specified are selected for all | |
40 | # configurations. | |
41 | # | |
42 | ####################################################################### | |
43 | # | |
1c79356b A |
44 | # SYSTEM SIZE CONFIGURATION (select exactly one) |
45 | # | |
46 | # xlarge = extra large scale system configuration | |
47 | # large = large scale system configuration | |
48 | # medium = medium scale system configuration | |
49 | # small = small scale system configuration | |
50 | # xsmall = extra small scale system configuration | |
2d21ac55 | 51 | # bsmall = special extra small scale system configuration |
1c79356b A |
52 | # |
53 | ####################################################################### | |
1c79356b | 54 | # |
1c79356b | 55 | |
3e170ce0 | 56 | options INET # # <inet> |
1c79356b A |
57 | options HW_AST # Hardware ast support # <hw_ast> |
58 | options HW_FOOTPRINT # Cache footprint support # <hw_foot> | |
2d21ac55 | 59 | |
1c79356b | 60 | options MACH # Standard Mach features # <mach> |
1c79356b | 61 | options MACH_COMPAT # Vendor syscall compatibility # <mach> |
1c79356b | 62 | options MACH_FASTLINK # Fast symbolic links |
1c79356b A |
63 | options MACH_HOST # Mach host (resource alloc.) # <host> |
64 | options MACH_IPC_COMPAT # Enable old IPC interface # <ipc_compat> | |
1c79356b | 65 | options MACH_IPC_TEST # Testing code/printfs # <ipc_test> |
39037602 | 66 | options MACH_FLIPC # Fast-Local IPC # <mach_flipc> |
1c79356b A |
67 | options MACH_NP # Mach IPC support # <np> |
68 | options MACH_NBC # No buffer cache # <nbc> | |
1c79356b A |
69 | options MACH_NET # Fast network access # <mach_net> |
70 | options MACH_XP # external pager support # <xp> | |
1c79356b | 71 | options NO_DIRECT_RPC # for untyped mig servers # |
1c79356b | 72 | options LOOP # loopback support # <loop> |
1c79356b | 73 | options VLAN # # <vlan> |
91447636 | 74 | options BOND # # <bond> |
5ba3f43e | 75 | options IF_FAKE # # <if_fake> |
fe8ab488 A |
76 | options AH_ALL_CRYPTO # AH all crypto algs # <ah_all_crypto> |
77 | options IPCOMP_ZLIB # IP compression using zlib # <ipcomp_zlib> | |
b0d623f7 | 78 | options PF # Packet Filter # <pf> |
3e170ce0 | 79 | options PF_ECN # PF use ECN marking # <pf_ecn> |
b0d623f7 | 80 | options PFLOG # PF log interface # <pflog> |
39236c6e | 81 | options MEASURE_BW # interface bandwidth measurement # <measure_bw> |
91447636 | 82 | options DUMMYNET # dummynet support # <dummynet> |
2d21ac55 | 83 | options TRAFFIC_MGT # traffic management support # <traffic_mgt> |
1c79356b | 84 | options MULTICAST # Internet Protocol Class-D $ |
9bccf70c | 85 | options TCPDEBUG # TCP debug # <tcpdebug> |
9bccf70c A |
86 | options TCP_DROP_SYNFIN # Drop TCP packets with SYN+FIN set # <tcpdrop_synfin> |
87 | options ICMP_BANDLIM # ICMP bandwidth limiting sysctl | |
2d21ac55 | 88 | options IFNET_INPUT_SANITY_CHK # allow dlil/ifnet input sanity check # <ifnet_input_chk> |
39236c6e A |
89 | options MULTIPATH # Multipath domain # <multipath> |
90 | options MPTCP # Multipath TCP # <mptcp> | |
3e170ce0 A |
91 | options SYSV_SEM # SVID semaphores # <sysv_sem> |
92 | options SYSV_MSG # SVID messages # <sysv_msg> | |
93 | options SYSV_SHM # SVID shared mem # <sysv_shm> | |
94 | options PSYNCH # pthread synch # <psynch> | |
39236c6e | 95 | options FLOW_DIVERT # <flow_divert> |
fe8ab488 A |
96 | options NECP # <necp> |
97 | options CONTENT_FILTER # # <content_filter> | |
98 | options PACKET_MANGLER # # <packet_mangler> | |
39037602 | 99 | |
2d21ac55 A |
100 | # secure_kernel - secure kernel from user programs |
101 | options SECURE_KERNEL # <secure_kernel> | |
1c79356b | 102 | |
b0d623f7 A |
103 | options OLD_SEMWAIT_SIGNAL # old semwait_signal handler |
104 | ||
1c79356b A |
105 | # |
106 | # 4.4 general kernel | |
107 | # | |
3e170ce0 A |
108 | options SOCKETS # socket support # <inet, inet6> |
109 | options DIAGNOSTIC # diagnostics # <diagnostic> | |
110 | options GPROF # build profiling # <profile> | |
fe8ab488 | 111 | options PROFILE # kernel profiling # <profile> |
2d21ac55 | 112 | options SENDFILE # sendfile # <sendfile> |
3e170ce0 | 113 | options NETWORKING # networking layer # <inet, inet6> |
2d21ac55 A |
114 | options CONFIG_FSE # file system events # <config_fse> |
115 | options CONFIG_IMAGEBOOT # local image boot # <config_imageboot> | |
2d21ac55 | 116 | options CONFIG_MBUF_JUMBO # jumbo cluster pool # <config_mbuf_jumbo> |
593a1d5f A |
117 | |
118 | options CONFIG_WORKQUEUE # <config_workqueue> | |
d9a64523 | 119 | options CONFIG_WORKLOOP_DEBUG # <config_workloop_debug> |
1c79356b A |
120 | |
121 | # | |
122 | # 4.4 filesystems | |
123 | # | |
3e170ce0 | 124 | options MOCKFS # Boot from an executable # <mockfs> |
1c79356b | 125 | options FIFO # fifo support # <fifo> |
1c79356b | 126 | options FDESC # fdesc_fs support # <fdesc> |
1c79356b | 127 | options DEVFS # devfs support # <devfs> |
490019cf | 128 | options ROUTEFS # routefs support # <routefs> |
39037602 A |
129 | options NULLFS # nullfs support # <nullfs> |
130 | options FS_COMPRESSION # fs compression # <fs_compression> | |
3e170ce0 | 131 | options CONFIG_DEV_KMEM # /dev/kmem device for reading KVA # <config_dev_kmem> |
2d21ac55 A |
132 | |
133 | # | |
134 | # file system features | |
135 | # | |
136 | options QUOTA # file system quotas # <quota> | |
2d21ac55 | 137 | options NAMEDSTREAMS # named stream vnop support # <namedstreams> |
39236c6e | 138 | options CONFIG_APPLEDOUBLE # apple double support # <config_appledouble> |
2d21ac55 | 139 | options CONFIG_VOLFS # volfs path support (legacy) # <config_volfs> |
b7266188 | 140 | options CONFIG_IMGSRC_ACCESS # source of imageboot dmg # <config_imgsrc_access> |
6d2010ae | 141 | options CONFIG_TRIGGERS # trigger vnodes # <config_triggers> |
316670eb A |
142 | options CONFIG_EXT_RESOLVER # e.g. memberd # <config_ext_resolver> |
143 | options CONFIG_SEARCHFS # searchfs syscall support # <config_searchfs> | |
813fb2f6 | 144 | options CONFIG_MNT_SUID # allow suid binaries # <config_mnt_suid> |
d9a64523 | 145 | options CONFIG_MNT_ROOTSNAP # allow rooting from snapshot # <config_mnt_rootsnap> |
1c79356b A |
146 | |
147 | # | |
148 | # NFS support | |
149 | # | |
2d21ac55 A |
150 | options NFSCLIENT # Be an NFS client # <nfsclient> |
151 | options NFSSERVER # Be an NFS server # <nfsserver> | |
1c79356b | 152 | |
1c79356b A |
153 | # |
154 | # Machine Independent Apple Features | |
155 | # | |
3e170ce0 | 156 | profile # build a profiling kernel # <profile> |
1c79356b A |
157 | |
158 | # | |
9bccf70c | 159 | # IPv6 Support |
1c79356b | 160 | # |
3e170ce0 A |
161 | options "INET6" # kernel IPv6 Support # <inet6> |
162 | options IPV6SEND # Secure Neighbor Discovery # <ipv6send> | |
163 | options IPSEC # IP security # <ipsec> | |
164 | options IPSEC_ESP # IP security # <ipsec> | |
165 | options "IPV6FIREWALL" # IPv6 Firewall Feature # <ipv6firewall> | |
91447636 A |
166 | options "IPV6FIREWALL_DEFAULT_TO_ACCEPT" #IPv6 Firewall Feature # <ipv6firewall> |
167 | #options "IPV6FIREWALL_VERBOSE" #IPv6 Firewall Feature # <ipv6firewall> | |
9bccf70c | 168 | |
3e170ce0 A |
169 | pseudo-device gif 1 # <gif> |
170 | pseudo-device dummy 2 # <dummy> | |
171 | pseudo-device stf 1 # <stf> | |
9bccf70c | 172 | |
3e170ce0 A |
173 | options CRYPTO # <ipsec,crypto> |
174 | options CRYPTO_SHA2 # <crypto_sha2> | |
175 | options ENCRYPTED_SWAP # <encrypted_swap> | |
2d21ac55 | 176 | |
d9a64523 A |
177 | options CONFIG_IMG4 # <config_img4> |
178 | ||
3e170ce0 | 179 | options ZLIB # inflate/deflate support # <zlib> |
1c79356b | 180 | |
3e170ce0 | 181 | options IF_BRIDGE # <if_bridge> |
b7266188 | 182 | |
2d21ac55 A |
183 | # |
184 | # configurable kernel event related resources | |
185 | # | |
186 | options CONFIG_KN_HASHSIZE=64 # <medium,large,xlarge> | |
187 | options CONFIG_KN_HASHSIZE=48 # <small,xsmall> | |
188 | options CONFIG_KN_HASHSIZE=20 # <bsmall> | |
189 | ||
190 | # | |
191 | # configurable vfs related resources | |
192 | # CONFIG_VNODES - used to pre allocate vnode related resources | |
2d21ac55 A |
193 | # CONFIG_NC_HASH - name cache hash table allocation |
194 | # CONFIG_VFS_NAMES - name strings | |
195 | # | |
196 | # 263168 magic number for medium CONFIG_VNODES is based on memory | |
197 | # Number vnodes is (memsize/64k) + 1024 | |
198 | # This is the calculation that is used by launchd in tiger | |
199 | # we are clipping the max based on 16G | |
200 | # ie ((16*1024*1024*1024)/(64 *1024)) + 1024 = 263168; | |
201 | ||
202 | options CONFIG_VNODES=263168 # <large,xlarge> | |
203 | options CONFIG_VNODES=263168 # <medium> | |
204 | options CONFIG_VNODES=10240 # <small> | |
3e170ce0 | 205 | options CONFIG_VNODES=750 # <bsmall> |
2d21ac55 | 206 | |
2d21ac55 A |
207 | options CONFIG_NC_HASH=5120 # <large,xlarge> |
208 | options CONFIG_NC_HASH=4096 # <medium> | |
209 | options CONFIG_NC_HASH=2048 # <small,xsmall> | |
210 | options CONFIG_NC_HASH=1024 # <bsmall> | |
211 | ||
212 | options CONFIG_VFS_NAMES=5120 # <large,xlarge> | |
213 | options CONFIG_VFS_NAMES=4096 # <medium> | |
214 | options CONFIG_VFS_NAMES=3072 # <small,xsmall> | |
215 | options CONFIG_VFS_NAMES=2048 # <bsmall> | |
216 | ||
b7266188 A |
217 | options CONFIG_MAX_CLUSTERS=8 # <xlarge,large,medium> |
218 | options CONFIG_MAX_CLUSTERS=4 # <small,xsmall,bsmall> | |
219 | ||
2d21ac55 A |
220 | # |
221 | # configurable options for minumum number of buffers for kernel memory | |
222 | # | |
223 | options CONFIG_MIN_NBUF=256 # <medium,large,xlarge> | |
224 | options CONFIG_MIN_NBUF=128 # <small> | |
225 | options CONFIG_MIN_NBUF=80 # <xsmall> | |
226 | options CONFIG_MIN_NBUF=64 # <bsmall> | |
227 | ||
228 | options CONFIG_MIN_NIOBUF=128 # <medium,large,xlarge> | |
229 | options CONFIG_MIN_NIOBUF=64 # <xsmall,small> | |
230 | options CONFIG_MIN_NIOBUF=32 # <bsmall> | |
231 | ||
232 | # | |
233 | # set maximum space used for packet buffers | |
234 | # | |
3e170ce0 A |
235 | options CONFIG_NMBCLUSTERS="((1024 * 1024) / MCLBYTES)" # <large,xlarge> |
236 | options CONFIG_NMBCLUSTERS="((1024 * 512) / MCLBYTES)" # <medium> | |
237 | options CONFIG_NMBCLUSTERS="((1024 * 256) / MCLBYTES)" # <bsmall,xsmall,small> | |
2d21ac55 A |
238 | |
239 | # | |
240 | # Configure size of TCP hash table | |
241 | # | |
242 | options CONFIG_TCBHASHSIZE=4096 # <medium,large,xlarge> | |
243 | options CONFIG_TCBHASHSIZE=128 # <xsmall,small,bsmall> | |
244 | ||
316670eb A |
245 | # |
246 | # Configure bandwidth limiting sysctl | |
247 | # | |
248 | options CONFIG_ICMP_BANDLIM=250 # <medium,large,xlarge> | |
249 | options CONFIG_ICMP_BANDLIM=50 # <xsmall,small,bsmall> | |
250 | ||
2d21ac55 A |
251 | # |
252 | # configurable async IO options | |
253 | # CONFIG_AIO_MAX - system wide limit of async IO requests. | |
254 | # CONFIG_AIO_PROCESS_MAX - process limit of async IO requests. | |
255 | # CONFIG_AIO_THREAD_COUNT - number of async IO worker threads created. | |
256 | # | |
3e170ce0 A |
257 | options CONFIG_AIO_MAX=360 # <xlarge> |
258 | options CONFIG_AIO_MAX=180 # <large> | |
2d21ac55 A |
259 | options CONFIG_AIO_MAX=90 # <medium> |
260 | options CONFIG_AIO_MAX=45 # <small> | |
261 | options CONFIG_AIO_MAX=20 # <xsmall> | |
262 | options CONFIG_AIO_MAX=10 # <bsmall> | |
263 | ||
264 | options CONFIG_AIO_PROCESS_MAX=64 # <xlarge> | |
265 | options CONFIG_AIO_PROCESS_MAX=32 # <large> | |
266 | options CONFIG_AIO_PROCESS_MAX=16 # <medium> | |
267 | options CONFIG_AIO_PROCESS_MAX=12 # <small> | |
268 | options CONFIG_AIO_PROCESS_MAX=8 # <xsmall> | |
269 | options CONFIG_AIO_PROCESS_MAX=4 # <bsmall> | |
270 | ||
3e170ce0 | 271 | options CONFIG_AIO_THREAD_COUNT=16 # <xlarge> |
2d21ac55 A |
272 | options CONFIG_AIO_THREAD_COUNT=8 # <large> |
273 | options CONFIG_AIO_THREAD_COUNT=4 # <medium> | |
274 | options CONFIG_AIO_THREAD_COUNT=3 # <small> | |
275 | options CONFIG_AIO_THREAD_COUNT=2 # <xsmall,bsmall> | |
276 | ||
3e170ce0 A |
277 | options CONFIG_MAXVIFS=32 # <medium,large,xlarge> |
278 | options CONFIG_MAXVIFS=16 # <small,xsmall> | |
279 | options CONFIG_MAXVIFS=2 # <bsmall> | |
2d21ac55 A |
280 | |
281 | options CONFIG_MFCTBLSIZ=256 # <medium,large,xlarge> | |
282 | options CONFIG_MFCTBLSIZ=128 # <small,xsmall> | |
283 | options CONFIG_MFCTBLSIZ=16 # <bsmall> | |
284 | ||
6d2010ae A |
285 | # |
286 | # configurable kernel message buffer size | |
287 | # | |
5ba3f43e A |
288 | options CONFIG_MSG_BSIZE_REL=4096 # <bsmall,small,xsmall> |
289 | options CONFIG_MSG_BSIZE_DEV=4096 # <bsmall,small,xsmall> | |
290 | options CONFIG_MSG_BSIZE_REL=16384 # <medium,large,xlarge> | |
291 | options CONFIG_MSG_BSIZE_DEV=131072 # <medium,large,xlarge> | |
292 | options CONFIG_MSG_BSIZE=CONFIG_MSG_BSIZE_REL # <!development,debug> | |
293 | options CONFIG_MSG_BSIZE=CONFIG_MSG_BSIZE_DEV # <development,debug> | |
6d2010ae | 294 | |
3e170ce0 A |
295 | # |
296 | # maximum size of the per-process Mach IPC table | |
297 | # | |
298 | options CONFIG_IPC_TABLE_ENTRIES_STEPS=64 # 137898 entries # <bsmall,small,xsmall> | |
299 | options CONFIG_IPC_TABLE_ENTRIES_STEPS=256 # 300714 entries # <medium,large,xlarge> | |
300 | ||
2d21ac55 A |
301 | # |
302 | # configurable kernel - use these options to strip strings from panic | |
303 | # and printf calls. | |
2d21ac55 A |
304 | # no_printf_str - saves around 45K of kernel footprint. |
305 | # | |
2d21ac55 A |
306 | options CONFIG_NO_PRINTF_STRINGS # <no_printf_str> |
307 | options CONFIG_NO_KPRINTF_STRINGS # <no_kprintf_str> | |
308 | ||
d9a64523 A |
309 | # |
310 | # configurable kernel - general switch to say we are building for an | |
311 | # embedded device | |
312 | # | |
313 | options CONFIG_EMBEDDED # <config_embedded> | |
314 | ||
fe8ab488 | 315 | |
b7266188 A |
316 | # support dynamic signing of code |
317 | # | |
318 | options CONFIG_DYNAMIC_CODE_SIGNING # <dynamic_codesigning> | |
319 | ||
fe8ab488 A |
320 | # enforce library validation on all processes. |
321 | # | |
322 | options CONFIG_ENFORCE_LIBRARY_VALIDATION # <config_library_validation> | |
323 | ||
324 | # | |
325 | # code decryption... used on embedded for app protection, DSMOS on desktop | |
326 | # | |
3e170ce0 | 327 | options CONFIG_CODE_DECRYPTION # <config_code_decryption> |
fe8ab488 | 328 | |
d1ecb069 A |
329 | # |
330 | # User Content Protection, used on embedded | |
331 | # | |
3e170ce0 | 332 | options CONFIG_PROTECT # <config_protect> |
d1ecb069 | 333 | |
d9a64523 A |
334 | #allow write-protection of key page |
335 | options CONFIG_KEYPAGE_WP # <config_keypage_wp> | |
336 | ||
6d2010ae | 337 | # |
316670eb A |
338 | # enable per-process memory priority tracking |
339 | # | |
3e170ce0 | 340 | options CONFIG_MEMORYSTATUS # <memorystatus> |
316670eb A |
341 | |
342 | # | |
343 | # enable jetsam - used on embedded | |
344 | # | |
3e170ce0 A |
345 | options CONFIG_JETSAM # <jetsam> |
346 | ||
39037602 A |
347 | # |
348 | # enable new link table implementation stats/debugging | |
349 | # (adds mesaureable overhead) | |
350 | # | |
351 | options CONFIG_LTABLE_STATS # <config_ltable_stats> | |
352 | options CONFIG_LTABLE_DEBUG # <config_ltable_debug> | |
353 | ||
3e170ce0 A |
354 | # |
355 | # enable new wait queue implementation stats / debugging | |
356 | # | |
357 | options CONFIG_WAITQ_STATS # <config_waitq_stats> | |
358 | options CONFIG_WAITQ_DEBUG # <config_waitq_debug> | |
316670eb A |
359 | |
360 | # | |
361 | # enable freezing of suspended processes - used on embedded | |
6d2010ae | 362 | # |
3e170ce0 | 363 | options CONFIG_FREEZE # <freeze> |
6d2010ae | 364 | |
3e170ce0 | 365 | options CHECK_CS_VALIDATION_BITMAP # <config_cs_validation_bitmap> |
593a1d5f | 366 | |
fe8ab488 A |
367 | # |
368 | # enable detectiion of file cache thrashing - used on platforms with | |
369 | # dynamic VM compression enabled | |
370 | # | |
3e170ce0 | 371 | options CONFIG_PHANTOM_CACHE # <phantom_cache> |
fe8ab488 | 372 | |
316670eb A |
373 | # |
374 | # memory pressure event support | |
316670eb A |
375 | # |
376 | options VM_PRESSURE_EVENTS # <vm_pressure_events> | |
377 | ||
39037602 A |
378 | options CONFIG_SECLUDED_MEMORY # <config_secluded_memory> |
379 | ||
380 | options CONFIG_BACKGROUND_QUEUE # <config_background_queue> | |
381 | ||
d9a64523 A |
382 | # |
383 | # Ledger features | |
384 | # | |
385 | options CONFIG_LEDGER_INTERVAL_MAX # <config_ledger_interval_max> | |
386 | ||
fe8ab488 A |
387 | # |
388 | # I/O Scheduling | |
389 | # | |
390 | options CONFIG_IOSCHED # <config_iosched> | |
391 | ||
39037602 A |
392 | # |
393 | # Accounting for I/O usage | |
394 | # | |
395 | options CONFIG_IO_ACCOUNTING # <config_io_accounting> | |
396 | ||
39236c6e A |
397 | # |
398 | # Enable inheritance of importance through specially marked mach ports and for file locks | |
399 | # For now debug is enabled wherever inheritance is | |
400 | # | |
401 | options IMPORTANCE_INHERITANCE # <importance_inheritance> | |
5ba3f43e A |
402 | options IMPORTANCE_TRACE # <importance_trace> |
403 | options IMPORTANCE_DEBUG # <importance_debug> | |
39236c6e | 404 | |
3e170ce0 | 405 | options CONFIG_TELEMETRY # <config_telemetry> |
39236c6e A |
406 | |
407 | options CONFIG_PROC_UUID_POLICY # <config_proc_uuid_policy> | |
408 | ||
fe8ab488 A |
409 | # |
410 | # ECC data logging | |
411 | # | |
3e170ce0 | 412 | options CONFIG_ECC_LOGGING # <config_ecc_logging> |
fe8ab488 | 413 | |
39037602 A |
414 | # |
415 | # Application core dumps | |
416 | # | |
417 | options CONFIG_COREDUMP # <config_coredump> | |
418 | ||
5ba3f43e A |
419 | # |
420 | # Vnode guards | |
421 | # | |
422 | options CONFIG_VNGUARD # <config_vnguard> | |
423 | ||
1c79356b A |
424 | # |
425 | # Ethernet (ARP) | |
426 | # | |
3e170ce0 | 427 | pseudo-device ether # <networking,inet,inet6> |
1c79356b A |
428 | # |
429 | # Network loopback device | |
430 | # | |
3e170ce0 | 431 | pseudo-device loop # <networking,inet,inet6> |
1c79356b A |
432 | # |
433 | # UCB pseudo terminal service | |
434 | # | |
2d21ac55 A |
435 | pseudo-device pty 512 init pty_init # <xlarge> |
436 | pseudo-device pty 256 init pty_init # <large> | |
437 | pseudo-device pty 128 init pty_init # <medium> | |
438 | pseudo-device pty 48 init pty_init # <small> | |
439 | pseudo-device pty 16 init pty_init # <xsmall> | |
440 | pseudo-device pty 8 init pty_init # <bsmall> | |
441 | # | |
442 | # Cloning pseudo terminal service | |
443 | # | |
444 | pseudo-device ptmx 1 init ptmx_init | |
9bccf70c A |
445 | |
446 | # | |
447 | # vnode device | |
2d21ac55 | 448 | # |
fe8ab488 | 449 | pseudo-device vndevice 4 init vndevice_init # <development,debug> |
9bccf70c | 450 | |
55e303ae A |
451 | # |
452 | # memory device | |
453 | pseudo-device mdevdevice 1 init mdevinit | |
454 | ||
9bccf70c | 455 | # |
1c79356b A |
456 | # |
457 | # packet filter device | |
458 | # | |
39236c6e | 459 | pseudo-device bpfilter 4 init bpf_init # <networking,inet,inet6> |
1c79356b | 460 | |
91447636 A |
461 | # |
462 | # fsevents device | |
2d21ac55 | 463 | pseudo-device fsevents 1 init fsevents_init # <config_fse> |
91447636 | 464 | |
0b4e3aa0 | 465 | pseudo-device random 1 init random_init |
2d21ac55 A |
466 | pseudo-device dtrace 1 init dtrace_init # <config_dtrace> |
467 | pseudo-device helper 1 init helper_init # <config_dtrace> | |
468 | pseudo-device lockstat 1 init lockstat_init # <config_dtrace> | |
0a7de745 | 469 | pseudo-device lockprof 1 init lockprof_init # <config_dtrace> |
2d21ac55 A |
470 | pseudo-device sdt 1 init sdt_init # <config_dtrace> |
471 | pseudo-device systrace 1 init systrace_init # <config_dtrace> | |
472 | pseudo-device fbt 1 init fbt_init # <config_dtrace> | |
473 | pseudo-device profile_prvd 1 init profile_init # <config_dtrace> | |
fe8ab488 | 474 | |
5ba3f43e | 475 | |
fe8ab488 A |
476 | # |
477 | # IOKit configuration options | |
478 | # | |
479 | ||
480 | options HIBERNATION # system hibernation # <hibernation> | |
3e170ce0 A |
481 | options IOKITCPP # C++ implementation # <iokitcpp> |
482 | options IOKITSTATS # IOKit statistics # <iokitstats> | |
483 | options IOTRACKING # IOKit tracking # <iotracking> | |
484 | options CONFIG_SLEEP # # <config_sleep> | |
fe8ab488 | 485 | options CONFIG_MAX_THREADS=64 # IOConfigThread threads |
3e170ce0 A |
486 | options NO_KEXTD # <no_kextd> |
487 | options NO_KERNEL_HID # <no_kernel_hid> | |
fe8ab488 A |
488 | |
489 | # | |
490 | # Libkern configuration options | |
491 | # | |
492 | ||
493 | options LIBKERNCPP # C++ implementation # <libkerncpp> | |
d9a64523 | 494 | options CONFIG_BLOCKS # Blocks runtime # <config_blocks> |
fe8ab488 A |
495 | options CONFIG_KXLD # kxld/runtime linking of kexts # <config_kxld> |
496 | options CONFIG_KEC_FIPS # Kernel External Components for FIPS compliance (KEC_FIPS) # <config_kec_fips> | |
497 | ||
498 | # Note that when adding this config option to an architecture, one MUST | |
499 | # add the architecture to the preprocessor test at the beginning of | |
500 | # libkern/kmod/cplus_{start.c,stop.c}. | |
501 | options CONFIG_STATIC_CPPINIT # Static library initializes kext cpp runtime # <config_static_cppinit> | |
502 | ||
503 | # | |
504 | # libsa configuration options | |
505 | # | |
506 | ||
507 | # CONFIG_KEXT_BASEMENT - alloc post boot loaded kexts after prelinked kexts | |
508 | # | |
3e170ce0 | 509 | options CONFIG_KEXT_BASEMENT # # <config_kext_basement> |
fe8ab488 | 510 | |
490019cf A |
511 | # |
512 | # Persona Management | |
513 | # | |
514 | options CONFIG_PERSONAS # Persona management # <config_personas> | |
515 | options PERSONA_DEBUG # Persona debugging # <persona_debug> | |
516 | ||
fe8ab488 A |
517 | # |
518 | # security configuration options | |
519 | # | |
520 | ||
3e170ce0 | 521 | options CONFIG_MACF # Mandatory Access Control Framework # <config_macf> |
fe8ab488 | 522 | options CONFIG_MACF_SOCKET_SUBSET # MAC socket subest (no labels) # <config_macf> |
3e170ce0 A |
523 | #options CONFIG_MACF_SOCKET # MAC socket labels # <config_macf> |
524 | #options CONFIG_MACF_NET # mbuf # <config_macf> | |
525 | #options CONFIG_MACF_DEBUG # debug # <config_macf> | |
fe8ab488 | 526 | |
3e170ce0 | 527 | options CONFIG_AUDIT # Kernel auditing # <config_audit> |
fe8ab488 A |
528 | |
529 | ||
530 | # | |
531 | # MACH configuration options. | |
532 | # | |
533 | # TASK_SWAPPER enables code that manages demand for physical memory by | |
534 | # forcibly suspending tasks when the demand exceeds supply. This | |
535 | # option should be on. | |
536 | # | |
fe8ab488 A |
537 | options TASK_SWAPPER # <task_swapper_disabled> |
538 | ||
539 | # | |
540 | # This defines configuration options that are normally used only during | |
541 | # kernel code development and debugging. They add run-time error checks or | |
542 | # statistics gathering, which will slow down the system | |
543 | # | |
544 | ########################################################## | |
545 | # | |
546 | # MACH_ASSERT controls the assert() and ASSERT() macros, used to verify the | |
547 | # consistency of various algorithms in the kernel. The performance impact | |
548 | # of this option is significant. | |
549 | # | |
550 | options MACH_ASSERT # # <mach_assert> | |
551 | # | |
552 | # MACH_DEBUG enables the mach_debug_server, a message interface used to | |
553 | # retrieve or control various statistics. This interface may expose data | |
554 | # structures that would not normally be allowed outside the kernel, and | |
555 | # MUST NOT be enabled on a released configuration. | |
556 | # Other options here enable information retrieval for specific subsystems | |
557 | # | |
558 | options MACH_DEBUG # IPC debugging interface # <mdebug> | |
559 | options MACH_IPC_DEBUG # Enable IPC debugging calls # <ipc_debug> | |
3e170ce0 | 560 | options MACH_VM_DEBUG # # <debug> |
fe8ab488 A |
561 | # |
562 | # MACH_MP_DEBUG control the possible dead locks that may occur by controlling | |
563 | # that IPL level has been raised down to SPL0 after some calls to | |
564 | # hardclock device driver. | |
565 | # | |
3e170ce0 | 566 | options MACH_MP_DEBUG # # <debug> |
fe8ab488 A |
567 | # |
568 | # ZONE_DEBUG keeps track of all zalloc()ed elements to perform further | |
569 | # operations on each element. | |
570 | # | |
571 | options ZONE_DEBUG # # <debug> | |
d9a64523 | 572 | options CONFIG_ZCACHE #Enable per-cpu caching for zones # <config_zcache> |
fe8ab488 A |
573 | options CONFIG_ZLEAKS # Live zone leak debugging # <zleaks> |
574 | ||
fe8ab488 A |
575 | # |
576 | # CONFIG_TASK_ZONE_INFO allows per-task zone information to be extracted | |
577 | # Primarily useful for xnu debug and development. | |
578 | # | |
579 | options CONFIG_TASK_ZONE_INFO # <task_zone_info> | |
580 | # | |
581 | # CONFIG_DEBUGGER_FOR_ZONE_INFO restricts zone info so that it is only | |
582 | # available when the kernel is being debugged. | |
583 | # | |
584 | options CONFIG_DEBUGGER_FOR_ZONE_INFO # <debugger_for_zone_info> | |
585 | # | |
586 | # XPR_DEBUG enables the gathering of data through the XPR macros inserted | |
587 | # into various subsystems. This option is normally only enabled for | |
588 | # specific performance or behavior studies, as the overhead in both | |
589 | # code and data space is large. The data is normally retrieved through | |
590 | # the kernel debugger (kdb) or by reading /dev/kmem. | |
591 | # | |
592 | options XPR_DEBUG # # <debug> | |
593 | # | |
594 | # MACH_LDEBUG controls the internal consistency checks and | |
595 | # data gathering in the locking package. This also enables a debug-only | |
596 | # version of simple-locks on uniprocessor machines. The code size and | |
597 | # performance impact of this option is significant. | |
598 | # | |
599 | options MACH_LDEBUG # # <debug> | |
600 | ||
601 | # | |
602 | # configuration option for full, partial, or no kernel debug event tracing | |
603 | # | |
604 | options KDEBUG # kernel tracing # <kdebug> | |
605 | options IST_KDEBUG # limited tracing # <ist_kdebug> | |
3e170ce0 | 606 | options NO_KDEBUG # no kernel tracing # <no_kdebug> |
fe8ab488 A |
607 | |
608 | # | |
609 | # CONFIG_DTRACE enables code needed to support DTrace. Currently this is | |
610 | # only used for delivery of traps/interrupts to DTrace. | |
611 | # | |
3e170ce0 | 612 | options CONFIG_DTRACE # # <config_dtrace> |
fe8ab488 | 613 | |
0a7de745 A |
614 | options LOCK_STATS # # <lock_stats> |
615 | ||
fe8ab488 A |
616 | # kernel performance tracing |
617 | options KPERF # <kperf> | |
618 | options KPC # <kpc> | |
619 | ||
5ba3f43e | 620 | |
813fb2f6 A |
621 | options PGO # <pgo> |
622 | ||
fe8ab488 A |
623 | # MACH_COUNTERS enables code that handles various counters in the system. |
624 | # | |
3e170ce0 | 625 | options MACH_COUNTERS # # <debug> |
fe8ab488 A |
626 | |
627 | # DEVELOPMENT define for development builds | |
3e170ce0 | 628 | options DEVELOPMENT # dev kernel # <development> |
fe8ab488 A |
629 | |
630 | # DEBUG kernel | |
3e170ce0 | 631 | options DEBUG # general debugging code # <debug> |
fe8ab488 A |
632 | |
633 | ########################################################## | |
634 | # | |
635 | # This defines configuration options that are normally used only during | |
636 | # kernel code development and performance characterization. They add run-time | |
637 | # statistics gathering, which will slow down the system, | |
638 | # | |
639 | ########################################################## | |
640 | # | |
641 | # MACH_IPC_STATS controls the collection of statistics in the MACH IPC | |
642 | # subsystem. | |
643 | # | |
644 | #options MACH_IPC_STATS | |
645 | # | |
646 | # MACH_CLUSTER_STATS controls the collection of various statistics concerning | |
647 | # the effectiveness and behavior of the clustered pageout and pagein | |
648 | # code. | |
649 | # | |
650 | #options MACH_CLUSTER_STATS | |
651 | ||
652 | options MACH_BSD # BSD subsystem on top of Mach # <mach_bsd> | |
653 | options IOKIT # # <iokit> | |
654 | ||
655 | # | |
656 | # configurable kernel related resources (CONFIG_THREAD_MAX needs to stay in | |
657 | # sync with bsd/conf/MASTER until we fix the config system... todo XXX | |
658 | # | |
659 | options CONFIG_THREAD_MAX=2560 # <medium,large,xlarge> | |
660 | options CONFIG_THREAD_MAX=1536 # <small,xsmall> | |
661 | options CONFIG_THREAD_MAX=1024 # <bsmall> | |
662 | ||
663 | options CONFIG_TASK_MAX=1024 # <medium,large,xlarge> | |
664 | options CONFIG_TASK_MAX=768 # <small,> | |
665 | options CONFIG_TASK_MAX=512 # <xsmall,bsmall> | |
666 | ||
0a7de745 A |
667 | # |
668 | # Minimum zone map size: 115 MB | |
669 | # | |
670 | options CONFIG_ZONE_MAP_MIN=120586240 # <xsmall,bsmall,small,medium,large,xlarge> | |
fe8ab488 A |
671 | |
672 | # Sizes must be a power of two for the zhash to | |
673 | # be able to just mask off bits instead of mod | |
674 | options CONFIG_ZLEAK_ALLOCATION_MAP_NUM=16384 #<medium,large,xlarge> | |
675 | options CONFIG_ZLEAK_ALLOCATION_MAP_NUM=8192 #<small,xsmall,bsmall> | |
676 | options CONFIG_ZLEAK_TRACE_MAP_NUM=8192 #<medium,large,xlarge> | |
677 | options CONFIG_ZLEAK_TRACE_MAP_NUM=4096 #<small,xsmall,bsmall> | |
678 | ||
679 | # vc_progress_white - make the progress gear white instead of black | |
680 | options CONFIG_VC_PROGRESS_WHITE # <vc_progress_white> | |
681 | ||
fe8ab488 A |
682 | # |
683 | # Timeshare scheduler implementations | |
684 | # | |
685 | options CONFIG_SCHED_TRADITIONAL # <config_sched_traditional> | |
686 | options CONFIG_SCHED_PROTO # <config_sched_proto> | |
687 | options CONFIG_SCHED_GRRR # <config_sched_grrr> | |
688 | options CONFIG_SCHED_GRRR_CORE # <config_sched_grrr> | |
689 | options CONFIG_SCHED_MULTIQ # <config_sched_multiq> | |
690 | options CONFIG_SCHED_TIMESHARE_CORE # <config_sched_traditional,config_sched_multiq> | |
fe8ab488 | 691 | |
3e170ce0 A |
692 | options CONFIG_SCHED_IDLE_IN_PLACE # <config_sched_idle_in_place> |
693 | options CONFIG_SCHED_SFI # <config_sched_sfi> | |
fe8ab488 | 694 | options CONFIG_GZALLOC # <config_gzalloc> |
3e170ce0 | 695 | options CONFIG_SCHED_DEFERRED_AST # <config_sched_deferred_ast> |
fe8ab488 A |
696 | |
697 | # Enable allocation of contiguous physical memory through vm_map_enter_cpm() | |
3e170ce0 | 698 | options VM_CPM # <vm_cpm> |
fe8ab488 | 699 | |
3e170ce0 | 700 | options CONFIG_SKIP_PRECISE_USER_KERNEL_TIME # <config_skip_precise_user_kernel_time> |
fe8ab488 A |
701 | |
702 | # | |
703 | # Switch to disable cpu, wakeup and high memory watermark monitors | |
704 | # | |
3e170ce0 | 705 | options CONFIG_NOMONITORS # <config_nomonitors> |
fe8ab488 | 706 | |
3e170ce0 A |
707 | options MACH_KDP # KDP # <mach_kdp> |
708 | options CONFIG_SERIAL_KDP # KDP over serial # <config_serial_kdp> | |
fe8ab488 A |
709 | options CONFIG_KDP_INTERACTIVE_DEBUGGING # <kdp_interactive_debugging> |
710 | ||
3e170ce0 A |
711 | # |
712 | # Kernel Power On Self Tests | |
713 | # | |
714 | options CONFIG_XNUPOST # <config_xnupost> | |
715 | ||
716 | # | |
717 | # Kernel proc reference instrumentation | |
718 | # | |
719 | options PROC_REF_DEBUG # <proc_ref_debug> | |
720 | ||
39037602 A |
721 | # |
722 | # Kernel OS reason debug instrumentation | |
723 | # | |
724 | options OS_REASON_DEBUG # <os_reason_debug> | |
725 | ||
fe8ab488 A |
726 | # |
727 | # Kernel Voucher Attr Manager for Activity Trace | |
728 | # | |
3e170ce0 | 729 | options CONFIG_ATM # <config_atm> |
fe8ab488 | 730 | |
fe8ab488 A |
731 | # Group related tasks together into coalitions |
732 | options CONFIG_COALITIONS # <config_coalitions> | |
733 | ||
3e170ce0 A |
734 | # Enable support for sysdiagnose notifications |
735 | options CONFIG_SYSDIAGNOSE # <config_sysdiagnose> | |
736 | ||
fe8ab488 | 737 | # Configurable Security Restrictions |
3e170ce0 | 738 | options CONFIG_CSR # <config_csr> |
fe8ab488 A |
739 | |
740 | # | |
741 | # Console options | |
742 | # | |
743 | options SERIAL_CONSOLE # bi-directional serial over UART | |
744 | options VIDEO_CONSOLE # uni-directional output over framebuffer | |
745 | ||
746 | # | |
747 | # Syscall options | |
748 | # | |
749 | options CONFIG_REQUIRES_U32_MUNGING # incoming U32 argument structures must be munged to match U64 # <config_requires_u32_munging> | |
5ba3f43e A |
750 | |
751 | # | |
752 | # copyout() instrumentation | |
753 | # | |
754 | options COPYOUT_SHIM # Shim for copyout memory analysis via kext #<copyout_shim> | |
755 | ||
0a7de745 A |
756 | # |
757 | # Enable hardware correlation of mach absolute time | |
758 | # across intel/arm boundary | |
759 | options CONFIG_MACH_BRIDGE_SEND_TIME # # <config_mach_bridge_send_time> | |
760 | options CONFIG_MACH_BRIDGE_RECV_TIME # # <config_mach_bridge_recv_time> | |
527f9951 A |
761 | |
762 | # | |
763 | # Telemetry for 32-bit process launch | |
764 | # | |
765 | options CONFIG_32BIT_TELEMETRY # # <config_32bit_telemetry> | |
d9a64523 A |
766 | |
767 | options CONFIG_QUIESCE_COUNTER # Support for _COMM_PAGE_CPU_QUIESCENT_COUNTER # <config_quiesce_counter> | |
768 |