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/arm/conf/std.armv7

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 ARMv7 systems.
    2 #
    3 # $FreeBSD$
    4 
    5 options         HZ=1000
    6 options         INTRNG                  # All arm systems use INTRNG these days
    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_SUPPORT           # Allow kldload of ipsec and tcpmd5
   14 options         SCTP_SUPPORT            # Allow kldload of SCTP
   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         STACK                   # stack(9) support
   37 options         SYSVSHM                 # SYSV-style shared memory
   38 options         SYSVMSG                 # SYSV-style message queues
   39 options         SYSVSEM                 # SYSV-style semaphores
   40 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   41 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
   42 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
   43 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
   44 options         CAPABILITY_MODE         # Capsicum capability mode
   45 options         CAPABILITIES            # Capsicum capabilites
   46 options         FREEBSD_BOOT_LOADER     # Process metadata passed from loader(8)
   47 options         VFP                     # Enable floating point hardware support
   48 options         MAC                     # Support for Mandatory Access Control (MAC)
   49 
   50 options         COMPAT_FREEBSD10        # Compatible with FreeBSD10
   51 options         COMPAT_FREEBSD11        # Compatible with FreeBSD11
   52 options         COMPAT_FREEBSD12        # Compatible with FreeBSD12
   53 
   54 # DTrace support
   55 options         KDTRACE_HOOKS           # Kernel DTrace hooks
   56 options         DDB_CTF                 # all architectures - kernel ELF linker loads CTF data
   57 makeoptions     WITH_CTF=1
   58 
   59 # Debugging support.  Always need this:
   60 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   61 options         KDB                     # Enable kernel debugger support.
   62 options         KDB_TRACE               # Print a stack trace for a panic.
   63 
   64 # Optional extras, never enabled by default:
   65 #options        BOOTVERBOSE
   66 #options        DEBUG                   # May result in extreme spewage
   67 #options        KTR
   68 #options        KTR_COMPILE=KTR_ALL
   69 #options        KTR_ENTRIES=16384
   70 #options        KTR_MASK=(KTR_SPARE2)
   71 #options        KTR_VERBOSE=0
   72 #options        USB_REQ_DEBUG
   73 #options        USB_VERBOSE
   74 
   75 # Enable support for the kernel PLL to use an external PPS signal,
   76 # under supervision of [x]ntpd(8)
   77 # More info in ntpd documentation: http://www.eecis.udel.edu/~ntp
   78 
   79 options         PPS_SYNC

Cache object: c715010d48f249ab6ca421075690fd9e


[ 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.