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