xref: /freebsd/sys/arm/conf/std.armv7 (revision a259b98fa211ed87bfee58c575de4e2de94ee0fa)
1# Standard kernel config items for all ARMv7 systems.
2#
3
4options 	HZ=1000
5options 	PREEMPTION		# Enable kernel thread preemption
6options 	EXTERR_STRINGS		# Retain exterror(9) strings in the kernel
7options 	VIMAGE			# Subsystem virtualization, e.g. VNET
8options 	INET			# InterNETworking
9options 	INET6			# IPv6 communications protocols
10options 	CC_CUBIC		# include CUBIC congestion control
11options 	TCP_HHOOK		# hhook(9) framework for TCP
12device		crypto			# core crypto support
13options 	IPSEC_SUPPORT		# Allow kldload of ipsec and tcpmd5
14options 	NETLINK			# netlink(4) support
15options 	SCTP_SUPPORT		# Allow kldload of SCTP
16options 	FFS			# Berkeley Fast Filesystem
17options 	SOFTUPDATES		# Enable FFS soft updates support
18options 	UFS_ACL			# Support for access control lists
19options 	UFS_DIRHASH		# Improve performance on big directories
20options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
21options 	QUOTA			# Enable disk quotas for UFS
22options 	NFSCL			# Network Filesystem Client
23options 	NFSLOCKD		# Network Lock Manager
24options 	NFS_ROOT		# NFS usable as /, requires NFSCL
25options 	MSDOSFS			# MSDOS Filesystem
26options 	CD9660			# ISO 9660 Filesystem
27options 	PROCFS			# Process filesystem (requires PSEUDOFS)
28options 	PSEUDOFS		# Pseudo-filesystem framework
29options 	TMPFS			# Efficient memory filesystem
30options 	GEOM_PART_GPT		# GUID Partition Tables
31options 	GEOM_PART_BSD		# BSD partition scheme
32options 	GEOM_PART_MBR		# MBR partition scheme
33options 	GEOM_LABEL		# Provides labelization
34options 	COMPAT_43		# Compatible with BSD 4.3 [KEEP THIS!]
35options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
36options 	KTRACE			# ktrace(1) support
37options 	STACK			# stack(9) support
38options 	SYSVSHM			# SYSV-style shared memory
39options 	SYSVMSG			# SYSV-style message queues
40options 	SYSVSEM			# SYSV-style semaphores
41options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
42options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
43options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
44options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
45options 	CAPABILITY_MODE		# Capsicum capability mode
46options 	CAPABILITIES		# Capsicum capabilites
47options 	FREEBSD_BOOT_LOADER	# Process metadata passed from loader(8)
48options 	VFP			# Enable floating point hardware support
49options 	MAC			# Support for Mandatory Access Control (MAC)
50
51options 	COMPAT_FREEBSD10	# Compatible with FreeBSD10
52options 	COMPAT_FREEBSD11	# Compatible with FreeBSD11
53options 	COMPAT_FREEBSD12	# Compatible with FreeBSD12
54options 	COMPAT_FREEBSD13	# Compatible with FreeBSD13
55options 	COMPAT_FREEBSD14	# Compatible with FreeBSD14
56options 	COMPAT_FREEBSD15	# Compatible with FreeBSD15
57
58# DTrace support
59options 	KDTRACE_HOOKS		# Kernel DTrace hooks
60options 	DDB_CTF			# all architectures - kernel ELF linker loads CTF data
61makeoptions	WITH_CTF=1
62
63# Debugging support.  Always need this:
64makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
65options 	KDB			# Enable kernel debugger support.
66options 	KDB_TRACE		# Print a stack trace for a panic.
67
68options		USB_DEBUG		# Enable usb debug support code
69
70# For full debugger support use (turn off in stable branch):
71include "std.debug"
72
73# Optional extras, never enabled by default:
74#options 	BOOTVERBOSE
75#options 	DEBUG			# May result in extreme spewage
76#options 	KTR
77#options 	KTR_COMPILE=KTR_ALL
78#options 	KTR_ENTRIES=16384
79#options 	KTR_MASK=(KTR_SPARE2)
80#options 	KTR_VERBOSE=0
81#options 	USB_REQ_DEBUG
82#options 	USB_VERBOSE
83
84# Enable support for the kernel PLL to use an external PPS signal,
85# under supervision of [x]ntpd(8)
86# More info in ntpd documentation: http://www.eecis.udel.edu/~ntp
87
88options 	PPS_SYNC
89