1# Standard kernel config items for all ARMv7 systems. 2# 3# $FreeBSD$ 4 5options HZ=1000 6options ARM_L2_PIPT # Only L2 PIPT is supported 7options INTRNG # All arm systems use INTRNG these days 8options PREEMPTION # Enable kernel thread preemption 9options VIMAGE # Subsystem virtualization, e.g. VNET 10options INET # InterNETworking 11options INET6 # IPv6 communications protocols 12options TCP_HHOOK # hhook(9) framework for TCP 13device crypto # core crypto support 14options IPSEC # IP (v4/v6) security 15options SCTP # Stream Control Transmission Protocol 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 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 FREEBSD_BOOT_LOADER # Process metadata passed from loader(8) 45options VFP # Enable floating point hardware support 46options MAC # Support for Mandatory Access Control (MAC) 47 48options COMPAT_FREEBSD10 # Compatible with FreeBSD10 49options COMPAT_FREEBSD11 # Compatible with FreeBSD11 50 51# DTrace support 52options KDTRACE_HOOKS # Kernel DTrace hooks 53options DDB_CTF # all architectures - kernel ELF linker loads CTF data 54makeoptions WITH_CTF=1 55 56# Debugging support. Always need this: 57makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols 58options KDB # Enable kernel debugger support. 59options KDB_TRACE # Print a stack trace for a panic. 60 61# For full debugger support use (turn off in stable branch): 62options DDB # Support DDB 63#options DEADLKRES # Enable the deadlock resolver 64options INVARIANTS # Enable calls of extra sanity checking 65options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS 66options WITNESS # Enable checks to detect deadlocks and cycles 67options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed 68options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones 69options ALT_BREAK_TO_DEBUGGER # Enter debugger on keyboard escape sequence 70options USB_DEBUG # Enable usb debug support code 71 72# Optional extras, never enabled by default: 73#options BOOTVERBOSE 74#options DEBUG # May result in extreme spewage 75#options KTR 76#options KTR_COMPILE=KTR_ALL 77#options KTR_ENTRIES=16384 78#options KTR_MASK=(KTR_SPARE2) 79#options KTR_VERBOSE=0 80#options USB_REQ_DEBUG 81#options USB_VERBOSE 82#options VERBOSE_SYSINIT # Enable verbose sysinit messages 83