]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/conf/std.armv6
Merge ^/head r338015 through r338025.
[FreeBSD/FreeBSD.git] / sys / arm / conf / std.armv6
1 # Standard kernel config items for all ARMv6 systems.
2 #
3 # $FreeBSD$
4
5 options         HZ=1000
6 options         ARM_L2_PIPT             # Only L2 PIPT is supported
7 options         PREEMPTION              # Enable kernel thread preemption
8 options         VIMAGE                  # Subsystem virtualization, e.g. VNET
9 options         INET                    # InterNETworking
10 options         INET6                   # IPv6 communications protocols
11 options         TCP_HHOOK               # hhook(9) framework for TCP
12 device          crypto                  # core crypto support
13 options         IPSEC                   # IP (v4/v6) security
14 options         SCTP                    # Stream Control Transmission Protocol
15 options         FFS                     # Berkeley Fast Filesystem
16 options         SOFTUPDATES             # Enable FFS soft updates support
17 options         UFS_ACL                 # Support for access control lists
18 options         UFS_DIRHASH             # Improve performance on big directories
19 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
20 options         QUOTA                   # Enable disk quotas for UFS
21 options         NFSCL                   # Network Filesystem Client
22 options         NFSLOCKD                # Network Lock Manager
23 options         NFS_ROOT                # NFS usable as /, requires NFSCL
24 options         MSDOSFS                 # MSDOS Filesystem
25 options         CD9660                  # ISO 9660 Filesystem
26 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
27 options         PSEUDOFS                # Pseudo-filesystem framework
28 options         TMPFS                   # Efficient memory filesystem
29 options         GEOM_PART_GPT           # GUID Partition Tables
30 options         GEOM_PART_BSD           # BSD partition scheme
31 options         GEOM_PART_MBR           # MBR partition scheme
32 options         GEOM_LABEL              # Provides labelization
33 options         COMPAT_43               # Compatible with BSD 4.3 [KEEP THIS!]
34 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
35 options         KTRACE                  # ktrace(1) support
36 options         SYSVSHM                 # SYSV-style shared memory
37 options         SYSVMSG                 # SYSV-style message queues
38 options         SYSVSEM                 # SYSV-style semaphores
39 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
40 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
41 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
42 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
43 options         FREEBSD_BOOT_LOADER     # Process metadata passed from loader(8)
44 options         VFP                     # Enable floating point hardware support
45 options         MAC                     # Support for Mandatory Access Control (MAC)
46
47 options         COMPAT_FREEBSD10        # Compatible with FreeBSD10
48 options         COMPAT_FREEBSD11        # Compatible with FreeBSD11
49
50 # DTrace support
51 options         KDTRACE_HOOKS           # Kernel DTrace hooks
52 options         DDB_CTF                 # all architectures - kernel ELF linker loads CTF data
53 makeoptions     WITH_CTF=1
54
55 # Debugging support.  Always need this:
56 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
57 options         KDB                     # Enable kernel debugger support.
58 options         KDB_TRACE               # Print a stack trace for a panic.
59
60 # For full debugger support use (turn off in stable branch):
61 options         DDB                     # Support DDB
62 #options        DEADLKRES               # Enable the deadlock resolver
63 options         INVARIANTS              # Enable calls of extra sanity checking
64 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
65 options         WITNESS                 # Enable checks to detect deadlocks and cycles
66 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
67 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
68 options         ALT_BREAK_TO_DEBUGGER   # Enter debugger on keyboard escape sequence
69 options         USB_DEBUG               # Enable usb debug support code
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 #options        VERBOSE_SYSINIT         # Enable verbose sysinit messages
82