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/config/VKERNEL64

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 # VKERNEL64 - configuration for a 64-bit virtual kernel
    2 
    3 platform        vkernel64       # platform architecture (i386, vkernel, etc)
    4 machine         x86_64
    5 machine_arch    x86_64          # cpu architecture (i386, etc)
    6 ident           VKERNEL64
    7 maxusers        0
    8 
    9 makeoptions     DEBUG=-g
   10 
   11 cpu             HAMMER_CPU
   12 
   13 options         DEBUG_PCTRACK
   14 
   15 ##options               KTR
   16 ##options               KTR_SPIN_CONTENTION
   17 #options        DEBUG_CRIT_SECTIONS
   18 
   19 options         QUOTA
   20 options         DUMMYNET
   21 options         IPFIREWALL              #firewall
   22 options         IPFIREWALL_DEFAULT_TO_ACCEPT    #allow everything by default
   23 
   24 # ALTQ
   25 options         ALTQ            #alternate queueing
   26 options         ALTQ_CBQ        #class based queueing
   27 options         ALTQ_RED        #random early detection
   28 options         ALTQ_RIO        #triple red for diffserv (needs RED)
   29 options         ALTQ_HFSC       #hierarchical fair service curve
   30 options         ALTQ_PRIQ       #priority queue
   31 options         ALTQ_FAIRQ      #fair queue
   32 #options        ALTQ_NOPCC      #don't use processor cycle counter
   33 options         ALTQ_DEBUG      #for debugging
   34 
   35 options         IPSEC                   #IP security
   36 options         IPSEC_ESP               #IP security (crypto; define w/ IPSEC)
   37 options         IPSEC_DEBUG             #debug for IP security
   38 
   39 options         HAMMER
   40 options         NULLFS                  #NULL filesystem
   41 options         EXT2FS
   42 options         INET                    #InterNETworking
   43 options         INET6                   #IPv6 communications protocols
   44 options         FFS                     #Berkeley Fast Filesystem
   45 options         FFS_ROOT                #FFS usable as root device [keep this!]
   46 options         SOFTUPDATES             #Enable FFS soft updates support
   47 options         UFS_DIRHASH             #Improve performance on big directories
   48 options         MFS                     #Memory Filesystem
   49 options         TMPFS                   #Temporary Filesystem
   50 options         MD_ROOT                 #MD is a potential root device
   51 options         NFS                     #Network Filesystem
   52 options         NFS_ROOT                #NFS usable as root device, NFS required
   53 options         MSDOSFS                 #MSDOS Filesystem
   54 options         CD9660                  #ISO 9660 Filesystem
   55 options         PROCFS                  #Process filesystem
   56 #options        COMPAT_43               #Compatible with BSD 4.3
   57 options         UCONSOLE                #Allow users to grab the console
   58 options         KTRACE                  #ktrace(1) support
   59 options         SYSVSHM                 #SYSV-style shared memory
   60 options         SYSVMSG                 #SYSV-style message queues
   61 options         SYSVSEM                 #SYSV-style semaphores
   62 options         P1003_1B                #Posix P1003_1B real-time extensions
   63 options         _KPOSIX_PRIORITY_SCHEDULING
   64 options         ICMP_BANDLIM            #Rate limit bad replies
   65 
   66 # Debugging for Development
   67 options         DDB
   68 options         DDB_TRACE
   69 options         INVARIANTS
   70 
   71 #options        CARP
   72 
   73 # Pseudo devices - the number indicates how many units to allocate.
   74 pseudo-device   loop            # Network loopback
   75 pseudo-device   ether           # Ethernet support
   76 pseudo-device   sl      1       # Kernel SLIP
   77 pseudo-device   ppp     1       # Kernel PPP
   78 pseudo-device   tun             # Packet tunnel.
   79 pseudo-device   pty             # Pseudo-ttys (telnet etc)
   80 pseudo-device   md              # Memory "disks"
   81 pseudo-device   gif             # IPv6 and IPv4 tunneling
   82 pseudo-device   faith   1       # IPv6-to-IPv4 relaying (translation)
   83 
   84 #pseudo-device  carp
   85 
   86 # SCSI peripherals
   87 device          scbus           # SCSI bus (required)
   88 device          da              # Direct Access (disks)
   89 device          sa              # Sequential Access (tape etc)
   90 device          cd              # CD
   91 device          pass            # Passthrough device (direct SCSI access)
   92 
   93 # The `bpf' pseudo-device enables the Berkeley Packet Filter.
   94 # Be aware of the administrative consequences of enabling this!
   95 pseudo-device   bpf             #Berkeley packet filter
   96 
   97 # VIRTUAL DEVICES
   98 #
   99 device          vn
  100 device          vkd
  101 device          vke
  102 
  103 device          vcd

Cache object: b83ce5b3871bd9e853281411c8d53379


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