NOTES (fa1e92b687fa55aae3b9aff3cddc806ddd49cc4b) | NOTES (aa14e9b7c9d90c2db81e29b3c68bcee6129b8b4c) |
---|---|
1# $FreeBSD$ 2# 3# NOTES -- Lines that can be cut/pasted into kernel and hints configs. 4# 5# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers', 6# 'makeoptions', 'hints', etc. go into the kernel configuration that you 7# run config(8) with. 8# --- 2875 unchanged lines hidden (view full) --- 2884# Maximum number of shared memory regions that can be used on the system 2885# at one time. 2886options SHMMNI=33 2887 2888# Maximum number of System V shared memory regions that can be attached to 2889# a single process at one time. 2890options SHMSEG=9 2891 | 1# $FreeBSD$ 2# 3# NOTES -- Lines that can be cut/pasted into kernel and hints configs. 4# 5# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers', 6# 'makeoptions', 'hints', etc. go into the kernel configuration that you 7# run config(8) with. 8# --- 2875 unchanged lines hidden (view full) --- 2884# Maximum number of shared memory regions that can be used on the system 2885# at one time. 2886options SHMMNI=33 2887 2888# Maximum number of System V shared memory regions that can be attached to 2889# a single process at one time. 2890options SHMSEG=9 2891 |
2892# Compress user core dumps. 2893options COMPRESS_USER_CORES 2894# required to compress file output from kernel for COMPRESS_USER_CORES. 2895device gzio 2896 | |
2897# Set the amount of time (in seconds) the system will wait before 2898# rebooting automatically when a kernel panic occurs. If set to (-1), 2899# the system will wait indefinitely until a key is pressed on the 2900# console. 2901options PANIC_REBOOT_WAIT_TIME=16 2902 2903# Attempt to bypass the buffer cache and put data directly into the 2904# userland buffer for read operation when O_DIRECT flag is set on the --- 73 unchanged lines hidden (view full) --- 2978# Random number generator 2979# Only ONE of the below two may be used; they are mutually exclusive. 2980options RANDOM_YARROW # Yarrow CSPRNG (Default) 2981#options RANDOM_FORTUNA # Fortuna CSPRNG 2982options RANDOM_DEBUG # Debugging messages 2983 2984# Module to enable execution of application via emulators like QEMU 2985options IMAGACT_BINMISC | 2892# Set the amount of time (in seconds) the system will wait before 2893# rebooting automatically when a kernel panic occurs. If set to (-1), 2894# the system will wait indefinitely until a key is pressed on the 2895# console. 2896options PANIC_REBOOT_WAIT_TIME=16 2897 2898# Attempt to bypass the buffer cache and put data directly into the 2899# userland buffer for read operation when O_DIRECT flag is set on the --- 73 unchanged lines hidden (view full) --- 2973# Random number generator 2974# Only ONE of the below two may be used; they are mutually exclusive. 2975options RANDOM_YARROW # Yarrow CSPRNG (Default) 2976#options RANDOM_FORTUNA # Fortuna CSPRNG 2977options RANDOM_DEBUG # Debugging messages 2978 2979# Module to enable execution of application via emulators like QEMU 2980options IMAGACT_BINMISC |
2981 2982# zlib I/O stream support 2983# This enables support for compressed core dumps. 2984options GZIO |
|