The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/arm64/conf/std.arm64

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # Standard kernel config items for all ARM64 systems.
    2 #
    3 # $FreeBSD$
    4 
    5 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
    6 makeoptions     WITH_CTF=1              # Run ctfconvert(1) for DTrace support
    7 
    8 options         SCHED_ULE               # ULE scheduler
    9 options         NUMA                    # Non-Uniform Memory Architecture support
   10 options         PREEMPTION              # Enable kernel thread preemption
   11 options         VIMAGE                  # Subsystem virtualization, e.g. VNET
   12 options         INET                    # InterNETworking
   13 options         INET6                   # IPv6 communications protocols
   14 options         CC_CUBIC                # include CUBIC congestion control
   15 options         IPSEC_SUPPORT           # Allow kldload of ipsec and tcpmd5
   16 options         ROUTE_MPATH             # Multipath routing support
   17 options         FIB_ALGO                # Modular fib lookups
   18 options         TCP_OFFLOAD             # TCP offload
   19 options         TCP_BLACKBOX            # Enhanced TCP event logging
   20 options         TCP_HHOOK               # hhook(9) framework for TCP
   21 options         TCP_RFC7413             # TCP Fast Open
   22 options         SCTP_SUPPORT            # Allow kldload of SCTP
   23 options         KERN_TLS                # TLS transmit & receive offload
   24 options         FFS                     # Berkeley Fast Filesystem
   25 options         SOFTUPDATES             # Enable FFS soft updates support
   26 options         UFS_ACL                 # Support for access control lists
   27 options         UFS_DIRHASH             # Improve performance on big directories
   28 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
   29 options         QUOTA                   # Enable disk quotas for UFS
   30 options         MD_ROOT                 # MD is a potential root device
   31 options         NFSCL                   # Network Filesystem Client
   32 options         NFSD                    # Network Filesystem Server
   33 options         NFSLOCKD                # Network Lock Manager
   34 options         NFS_ROOT                # NFS usable as /, requires NFSCL
   35 options         MSDOSFS                 # MSDOS Filesystem
   36 options         CD9660                  # ISO 9660 Filesystem
   37 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
   38 options         PSEUDOFS                # Pseudo-filesystem framework
   39 options         TMPFS                   # Efficient memory filesystem
   40 options         GEOM_RAID               # Soft RAID functionality.
   41 options         GEOM_LABEL              # Provides labelization
   42 options         EFIRT                   # EFI Runtime Services support
   43 options         COMPAT_FREEBSD32        # Compatible with FreeBSD/arm
   44 options         COMPAT_FREEBSD11        # Compatible with FreeBSD11
   45 options         COMPAT_FREEBSD12        # Compatible with FreeBSD12
   46 options         COMPAT_FREEBSD13        # Compatible with FreeBSD13
   47 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   48 options         KTRACE                  # ktrace(1) support
   49 options         STACK                   # stack(9) support
   50 options         SYSVSHM                 # SYSV-style shared memory
   51 options         SYSVMSG                 # SYSV-style message queues
   52 options         SYSVSEM                 # SYSV-style semaphores
   53 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   54 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
   55 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
   56 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
   57 options         AUDIT                   # Security event auditing
   58 options         CAPABILITY_MODE         # Capsicum capability mode
   59 options         CAPABILITIES            # Capsicum capabilities
   60 options         MAC                     # TrustedBSD MAC Framework
   61 options         KDTRACE_FRAME           # Ensure frames are compiled in
   62 options         KDTRACE_HOOKS           # Kernel DTrace hooks
   63 options         DDB_CTF                 # Kernel ELF linker loads CTF data
   64 options         VFP                     # Floating-point support
   65 options         RACCT                   # Resource accounting framework
   66 options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
   67 options         RCTL                    # Resource limits
   68 options         LINUX_BOOT_ABI          # Boot using booti command from U-Boot
   69 options         PERTHREAD_SSP           # Per-thread SSP canary
   70 
   71 # Debugging support.  Always need this:
   72 options         KDB                     # Enable kernel debugger support.
   73 options         KDB_TRACE               # Print a stack trace for a panic.
   74 # For full debugger support use (turn off in stable branch):
   75 options         DDB                     # Support DDB.
   76 options         GDB                     # Support remote GDB.
   77 options         DEADLKRES               # Enable the deadlock resolver
   78 options         INVARIANTS              # Enable calls of extra sanity checking
   79 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   80 options         WITNESS                 # Enable checks to detect deadlocks and cycles
   81 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   82 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
   83 options         ALT_BREAK_TO_DEBUGGER   # Enter debugger on keyboard escape sequence
   84 options         VERBOSE_SYSINIT=0       # Support debug.verbose_sysinit, off by default
   85 
   86 # Kernel Sanitizers
   87 #options        COVERAGE                # Generic kernel coverage. Used by KCOV
   88 #options        KCOV                    # Kernel Coverage Sanitizer
   89 # Warning: KUBSAN can result in a kernel too large for loader to load
   90 #options        KUBSAN                  # Kernel Undefined Behavior Sanitizer
   91 #options        KCSAN                   # Kernel Concurrency Sanitizer
   92 
   93 # Kernel dump features.
   94 options         EKCD                    # Support for encrypted kernel dumps
   95 options         GZIO                    # gzip-compressed kernel and user dumps
   96 options         ZSTDIO                  # zstd-compressed kernel and user dumps
   97 options         DEBUGNET                # debugnet networking
   98 options         NETDUMP                 # netdump(4) client support
   99 
  100 # Make an SMP-capable kernel by default
  101 options         SMP                     # Symmetric MultiProcessor Kernel
  102 
  103 # Enable support for the kernel PLL to use an external PPS signal,
  104 # under supervision of [x]ntpd(8)
  105 # More info in ntpd documentation: http://www.eecis.udel.edu/~ntp
  106 
  107 options         PPS_SYNC

Cache object: 16261cf546afb94c34944f7e24a22f62


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.