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