2015-01-06 05:26:13 +00:00
|
|
|
# MALTA_COMMON -- Common kernel config options for MALTA boards
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
options YAMON
|
|
|
|
|
|
|
|
options TICK_USE_YAMON_FREQ=defined
|
|
|
|
#options TICK_USE_MALTA_RTC=defined
|
|
|
|
|
|
|
|
include "../malta/std.malta"
|
|
|
|
|
|
|
|
hints "MALTA.hints" #Default places to look for devices.
|
|
|
|
|
|
|
|
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
|
|
|
|
|
|
|
options DDB
|
|
|
|
options KDB
|
|
|
|
|
|
|
|
options SCHED_4BSD #4BSD scheduler
|
|
|
|
options INET #InterNETworking
|
In the TCP stack, the hhook(9) framework provides hooks for kernel modules
to add actions that run when a TCP frame is sent or received on a TCP
session in the ESTABLISHED state. In the base tree, this functionality is
only used for the h_ertt module, which is used by the cc_cdg, cc_chd, cc_hd,
and cc_vegas congestion control modules.
Presently, we incur overhead to check for hooks each time a TCP frame is
sent or received on an ESTABLISHED TCP session.
This change adds a new compile-time option (TCP_HHOOK) to determine whether
to include the hhook(9) framework for TCP. To retain backwards
compatibility, I added the TCP_HHOOK option to every configuration file that
already defined "options INET". (Therefore, this patch introduces no
functional change. In order to see a functional difference, you need to
compile a custom kernel without the TCP_HHOOK option.) This change will
allow users to easily exclude this functionality from their kernel, should
they wish to do so.
Note that any users who use a custom kernel configuration and use one of the
congestion control modules listed above will need to add the TCP_HHOOK
option to their kernel configuration.
Reviewed by: rrs, lstewart, hiren (previous version), sjg (makefiles only)
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D8185
2016-10-12 02:16:42 +00:00
|
|
|
options TCP_HHOOK # hhook(9) framework for TCP
|
2015-01-06 05:26:13 +00:00
|
|
|
options NFSCL #Network Filesystem Client
|
|
|
|
options NFS_ROOT #NFS usable as /, requires NFSCL
|
|
|
|
options PSEUDOFS #Pseudo-filesystem framework
|
|
|
|
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
2017-02-17 21:25:24 +00:00
|
|
|
options CAPABILITY_MODE # Capsicum capability mode
|
|
|
|
options CAPABILITIES # Capsicum capabilities
|
2015-01-06 05:26:13 +00:00
|
|
|
|
2017-01-21 09:08:27 +00:00
|
|
|
options TMPFS #Efficient memory filesystem
|
|
|
|
|
2015-01-06 05:26:13 +00:00
|
|
|
options FFS #Berkeley Fast Filesystem
|
|
|
|
options SOFTUPDATES #Enable FFS soft updates support
|
|
|
|
options UFS_ACL #Support for access control lists
|
|
|
|
options UFS_DIRHASH #Improve performance on big directories
|
|
|
|
options ROOTDEVNAME=\"ufs:ada0\"
|
|
|
|
|
2015-01-06 05:28:22 +00:00
|
|
|
options GEOM_LABEL # Provides labelization
|
|
|
|
options GEOM_PART_GPT # GUID Partition Tables.
|
|
|
|
options GEOM_RAID # Soft RAID functionality.
|
2015-01-06 05:26:13 +00:00
|
|
|
|
|
|
|
# Debugging for use in -current
|
|
|
|
#options DEADLKRES #Enable the deadlock resolver
|
|
|
|
options INVARIANTS #Enable calls of extra sanity checking
|
|
|
|
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
|
|
|
#options WITNESS #Enable checks to detect deadlocks and cycles
|
|
|
|
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
|
|
|
|
2018-07-05 17:07:23 +00:00
|
|
|
# Kernel dump features.
|
|
|
|
options ZSTDIO # zstd-compressed kernel and user dumps
|
|
|
|
|
2015-01-06 05:26:13 +00:00
|
|
|
device loop
|
|
|
|
device ether
|
|
|
|
device le
|
|
|
|
device miibus
|
|
|
|
device bpf
|
|
|
|
device md
|
|
|
|
device uart
|
|
|
|
device random
|