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/riscv/conf/GENERIC

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 #
    2 # GENERIC -- Generic kernel configuration file for FreeBSD/RISC-V
    3 #
    4 # For more information on this file, please read the config(5) manual page,
    5 # and/or the handbook section on Kernel Configuration Files:
    6 #
    7 #    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
    8 #
    9 # The handbook is also available locally in /usr/share/doc/handbook
   10 # if you've installed the doc distribution, otherwise always see the
   11 # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
   12 # latest information.
   13 #
   14 # An exhaustive list of options and more detailed explanations of the
   15 # device lines is also present in the ../../conf/NOTES and NOTES files.
   16 # If you are in doubt as to the purpose or necessity of a line, check first
   17 # in NOTES.
   18 #
   19 # $FreeBSD: releng/11.1/sys/riscv/conf/GENERIC 301126 2016-06-01 14:12:31Z br $
   20 
   21 cpu             RISCV
   22 ident           GENERIC
   23 
   24 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   25 # makeoptions   WITH_CTF=1              # Run ctfconvert(1) for DTrace support
   26 
   27 # FIXME: linker error. "--relax and -r may not be used together"
   28 makeoptions     WITHOUT_MODULES="usb otusfw mwlfw ispfw mwlfw ralfw rtwnfw urtwnfw"
   29 
   30 options         SCHED_ULE               # ULE scheduler
   31 options         PREEMPTION              # Enable kernel thread preemption
   32 options         INET                    # InterNETworking
   33 options         INET6                   # IPv6 communications protocols
   34 options         IPSEC                   # IP (v4/v6) security
   35 options         TCP_OFFLOAD             # TCP offload
   36 options         SCTP                    # Stream Control Transmission Protocol
   37 options         FFS                     # Berkeley Fast Filesystem
   38 options         SOFTUPDATES             # Enable FFS soft updates support
   39 options         UFS_ACL                 # Support for access control lists
   40 options         UFS_DIRHASH             # Improve performance on big directories
   41 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
   42 options         QUOTA                   # Enable disk quotas for UFS
   43 options         MD_ROOT                 # MD is a potential root device
   44 options         NFSCL                   # Network Filesystem Client
   45 options         NFSD                    # Network Filesystem Server
   46 options         NFSLOCKD                # Network Lock Manager
   47 options         NFS_ROOT                # NFS usable as /, requires NFSCL
   48 options         MSDOSFS                 # MSDOS Filesystem
   49 options         CD9660                  # ISO 9660 Filesystem
   50 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
   51 options         PSEUDOFS                # Pseudo-filesystem framework
   52 options         GEOM_PART_GPT           # GUID Partition Tables.
   53 # options       GEOM_RAID               # Soft RAID functionality.
   54 options         GEOM_LABEL              # Provides labelization
   55 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   56 options         KTRACE                  # ktrace(1) support
   57 # options       STACK                   # stack(9) support
   58 options         SYSVSHM                 # SYSV-style shared memory
   59 options         SYSVMSG                 # SYSV-style message queues
   60 options         SYSVSEM                 # SYSV-style semaphores
   61 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   62 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
   63 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
   64 # options       HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
   65 options         AUDIT                   # Security event auditing
   66 options         CAPABILITY_MODE         # Capsicum capability mode
   67 options         CAPABILITIES            # Capsicum capabilities
   68 options         MAC                     # TrustedBSD MAC Framework
   69 options         KDTRACE_FRAME           # Ensure frames are compiled in
   70 options         KDTRACE_HOOKS           # Kernel DTrace hooks
   71 # options       VFP                     # Floating-point support
   72 options         RACCT                   # Resource accounting framework
   73 options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
   74 options         RCTL                    # Resource limits
   75 options         SMP
   76 
   77 # Uncomment for memory disk
   78 # options       MD_ROOT
   79 # options       MD_ROOT_SIZE=8192       # 8MB ram disk
   80 # makeoptions   MFS_IMAGE=/path/to/img
   81 # options       ROOTDEVNAME=\"ufs:/dev/md0\"
   82 
   83 # Debugging support.  Always need this:
   84 options         KDB                     # Enable kernel debugger support.
   85 options         KDB_TRACE               # Print a stack trace for a panic.
   86 # For full debugger support use (turn off in stable branch):
   87 options         DDB                     # Support DDB.
   88 # options       GDB                     # Support remote GDB.
   89 options         DEADLKRES               # Enable the deadlock resolver
   90 options         INVARIANTS              # Enable calls of extra sanity checking
   91 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   92 # options       WITNESS                 # Enable checks to detect deadlocks and cycles
   93 # options       WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   94 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
   95 # options       EARLY_PRINTF
   96 
   97 # Pseudo devices.
   98 device          loop            # Network loopback
   99 device          random          # Entropy device
  100 device          ether           # Ethernet support
  101 device          vlan            # 802.1Q VLAN support
  102 device          tun             # Packet tunnel.
  103 device          md              # Memory "disks"
  104 device          gif             # IPv6 and IPv4 tunneling
  105 device          firmware        # firmware assist module
  106 
  107 # The `bpf' device enables the Berkeley Packet Filter.
  108 # Be aware of the administrative consequences of enabling this!
  109 # Note that 'bpf' is required for DHCP.
  110 device          bpf             # Berkeley packet filter
  111 
  112 options         FDT

Cache object: 66b7d9c1b7a99cbc879b03762e740bd9


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