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/KB920X

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 # KB920X -- Custom kernel configuration for the KB9202 (no letter, A and B)
    2 # AT91RM9200 evaluation boards from kwikbyte.com.
    3 #
    4 # For more information on this file, please read the handbook section on
    5 # 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/10.2/sys/arm/conf/KB920X 278676 2015-02-13 15:27:46Z ian $
   20 
   21 #NO_UNIVERSE
   22 
   23 ident           KB920X
   24 
   25 include         "../at91/std.kb920x"
   26 # The AT91 platform doesn't use /boot/loader, so we have to statically wire
   27 # hints.
   28 hints           "KB920X.hints"
   29 makeoptions     MODULES_OVERRIDE=""
   30 
   31 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   32 options         DDB
   33 options         KDB
   34 
   35 options         SCHED_4BSD              # 4BSD scheduler
   36 options         INET                    # InterNETworking
   37 #options        INET6                   # IPv6 communications protocols
   38 options         FFS                     # Berkeley Fast Filesystem
   39 #options        SOFTUPDATES             # Enable FFS soft updates support
   40 #options        UFS_ACL                 # Support for access control lists
   41 #options        UFS_DIRHASH             # Improve performance on big directories
   42 #options        MD_ROOT                 # MD is a potential root device
   43 #options        MD_ROOT_SIZE=4096       # 4MB ram disk
   44 options         ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
   45 options         NFSCL                   # New Network Filesystem Client
   46 #options        NFSD                    # New Network Filesystem Server
   47 #options        NFSLOCKD                # Network Lock Manager
   48 #options        NFS_ROOT                # NFS usable as /, requires NFSCL
   49 #options        BOOTP_NFSROOT
   50 #options        BOOTP
   51 
   52 options         GEOM_PART_BSD           # BSD partition scheme
   53 options         GEOM_PART_MBR           # MBR partition scheme
   54 options         TMPFS                   # Efficient memory filesystem
   55 #options        MSDOSFS                 # MSDOS Filesystem
   56 #options        CD9660                  # ISO 9660 Filesystem
   57 #options        PROCFS                  # Process filesystem (requires PSEUDOFS)
   58 options         PSEUDOFS                # Pseudo-filesystem framework
   59 #options        SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   60 #options        KTRACE                  # ktrace(1) support
   61 options         SYSVSHM                 # SYSV-style shared memory
   62 options         SYSVMSG                 # SYSV-style message queues
   63 options         SYSVSEM                 # SYSV-style semaphores
   64 options         _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
   65 #options        NO_SYSCTL_DESCR
   66 # Disable the inlining of mutex, rwlock and sx locks.  These eat up a lot
   67 # of space.
   68 options         MUTEX_NOINLINE
   69 options         RWLOCK_NOINLINE
   70 options         SX_NOINLINE
   71 options         NO_FFS_SNAPSHOT
   72 options         NO_SWAPPING
   73 device          random
   74 device          loop
   75 device          ether
   76 device          uart
   77 device          ate
   78 device          mii
   79 device          lxtphy
   80 
   81 # Debugging for use in -current
   82 #options        DEADLKRES               # Enable the deadlock resolver
   83 #options        INVARIANTS              # Enable calls of extra sanity checking
   84 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   85 #options        WITNESS                 # Enable checks to detect deadlocks and cycles
   86 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   87 
   88 device          md
   89 device          at91_twi                # TWI: Two Wire Interface
   90 device          at91_spi                # SPI:
   91 device          spibus
   92 # MMC/SD
   93 device          at91_mci
   94 device          mmc
   95 device          mmcsd
   96 # iic
   97 device          iic
   98 device          iicbus
   99 device          icee
  100 
  101 device          bpf
  102 # USB support
  103 options         USB_DEBUG               # enable debug msgs
  104 device          ohci                    # OHCI localbus->USB interface
  105 device          usb                     # USB Bus (required)
  106 #device         udbp                    # USB Double Bulk Pipe devices
  107 device          uhid                    # "Human Interface Devices"
  108 device          ulpt                    # Printer
  109 device          umass                   # Disks/Mass storage - Requires scbus and da
  110 device          urio                    # Diamond Rio 500 MP3 player
  111 # USB Serial devices
  112 device          uark                    # Technologies ARK3116 based serial adapters
  113 device          ubsa                    # Belkin F5U103 and compatible serial adapters
  114 device          uftdi                   # For FTDI usb serial adapters
  115 device          uipaq                   # Some WinCE based devices
  116 device          uplcom                  # Prolific PL-2303 serial adapters
  117 device          uslcom                  # SI Labs CP2101/CP2102 serial adapters
  118 device          uvisor                  # Visor and Palm devices
  119 device          uvscom                  # USB serial support for DDI pocket's PHS
  120 # USB Ethernet, requires miibus
  121 device          miibus
  122 device          aue                     # ADMtek USB Ethernet
  123 device          axe                     # ASIX Electronics USB Ethernet
  124 device          cdce                    # Generic USB over Ethernet
  125 device          cue                     # CATC USB Ethernet
  126 device          kue                     # Kawasaki LSI USB Ethernet
  127 device          rue                     # RealTek RTL8150 USB Ethernet
  128 device          udav                    # Davicom DM9601E USB
  129 # USB Wireless
  130 device          rum                     # Ralink Technology RT2501USB wireless NICs
  131 device          uath                    # Atheros AR5523 wireless NICs
  132 device          ural                    # Ralink Technology RT2500USB wireless NICs
  133 device          zyd                     # ZyDAS zd1211/zd1211b wireless NICs
  134 # SCSI peripherals
  135 device          scbus                   # SCSI bus (required for ATA/SCSI)
  136 device          da                      # Direct Access (disks)
  137 device          cd                      # CD
  138 device          pass                    # Passthrough device (direct ATA/SCSI access)
  139 # Wireless NIC cards
  140 device          wlan                    # 802.11 support
  141 device          wlan_wep                # 802.11 WEP support
  142 device          wlan_ccmp               # 802.11 CCMP support
  143 device          wlan_tkip               # 802.11 TKIP support
  144 device          wlan_amrr               # AMRR transmit rate control algorithm
  145 
  146 # USB device (gadget) support
  147 device          at91_dci                # Atmel's usb device
  148 device          usfs                    # emulate a flash
  149 device          cdce                    # emulate an ethernet
  150 device          usb_template            # Control of the gadget
  151 
  152 options         IEEE80211_SUPPORT_MESH
  153 
  154 options         AH_SUPPORT_AR5416

Cache object: f201cb3114729eb39606f13cbecb8c1b


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