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

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 # EB9200 - Custom kernel for the Embest ATEB9200 AT91RM9200 evaluation board.
    2 #
    3 # For more information on this file, please read the handbook section on
    4 # Kernel Configuration Files:
    5 #
    6 #    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
    7 #
    8 # An exhaustive list of options and more detailed explanations of the
    9 # device lines is also present in the ../../conf/NOTES and NOTES files.
   10 # If you are in doubt as to the purpose or necessity of a line, check first
   11 # in NOTES.
   12 #
   13 # $FreeBSD: releng/10.2/sys/arm/conf/EB9200 278676 2015-02-13 15:27:46Z ian $
   14 
   15 #NO_UNIVERSE
   16 
   17 ident           EB9200
   18 
   19 include         "../at91/std.eb9200"
   20 # The AT91 platform doesn't use /boot/loader, so we have to statically wire
   21 # hints.
   22 hints           "EB9200.hints"
   23 makeoptions     MODULES_OVERRIDE=""
   24 
   25 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   26 options         DDB
   27 options         KDB
   28 
   29 options         SCHED_4BSD              # 4BSD scheduler
   30 options         INET                    # InterNETworking
   31 #options        INET6                   # IPv6 communications protocols
   32 options         FFS                     # Berkeley Fast Filesystem
   33 #options        SOFTUPDATES             # Enable FFS soft updates support
   34 #options        UFS_ACL                 # Support for access control lists
   35 #options        UFS_DIRHASH             # Improve performance on big directories
   36 #options        MD_ROOT                 # MD is a potential root device
   37 #options        MD_ROOT_SIZE=4096       # 4MB ram disk
   38 #options        ROOTDEVNAME=\"ufs:/dev/da0s1a\"
   39 options         NFSCL                   # New Network Filesystem Client
   40 options         NFSD                    # New Network Filesystem Server
   41 options         NFSLOCKD                # Network Lock Manager
   42 options         NFS_ROOT                # NFS usable as /, requires NFSCL
   43 options         BOOTP_NFSROOT
   44 options         BOOTP
   45 
   46 options         GEOM_PART_BSD           # BSD partition scheme
   47 options         GEOM_PART_MBR           # MBR partition scheme
   48 options         TMPFS                   # Efficient memory filesystem
   49 #options        MSDOSFS                 # MSDOS Filesystem
   50 #options        CD9660                  # ISO 9660 Filesystem
   51 #options        PROCFS                  # Process filesystem (requires PSEUDOFS)
   52 options         PSEUDOFS                # Pseudo-filesystem framework
   53 #options        SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   54 #options        KTRACE                  # ktrace(1) support
   55 options         SYSVSHM                 # SYSV-style shared memory
   56 options         SYSVMSG                 # SYSV-style message queues
   57 options         SYSVSEM                 # SYSV-style semaphores
   58 options         _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
   59 #options        NO_SYSCTL_DESCR
   60 # Disable the inlining of mutex, rwlock and sx locks.  These eat up a lot
   61 # of space.
   62 options         MUTEX_NOINLINE
   63 options         RWLOCK_NOINLINE
   64 options         SX_NOINLINE
   65 options         NO_FFS_SNAPSHOT
   66 options         NO_SWAPPING
   67 device          random
   68 device          loop
   69 device          ether
   70 device          uart
   71 device          ate
   72 device          miibus
   73 #device         lxtphy
   74 
   75 device          at91_cfata
   76 device          ata
   77 
   78 # Debugging for use in -current
   79 #options        DEADLKRES               # Enable the deadlock resolver
   80 #options        INVARIANTS              # Enable calls of extra sanity checking
   81 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   82 #options        WITNESS                 # Enable checks to detect deadlocks and cycles
   83 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   84 
   85 device          md
   86 device          at91_twi                # TWI: Two Wire Interface
   87 device          at91_spi                # SPI:
   88 device          spibus
   89 # MMC/SD
   90 device          at91_mci
   91 device          mmc
   92 device          mmcsd
   93 # iic
   94 device          iic
   95 device          iicbus
   96 device          icee
   97 
   98 device          bpf
   99 # USB support
  100 options         USB_DEBUG               # enable debug msgs
  101 device          ohci                    # OHCI localbus->USB interface
  102 device          usb                     # USB Bus (required)
  103 device          umass                   # Disks/Mass storage - Requires scbus and da
  104 # SCSI peripherals
  105 device          scbus                   # SCSI bus (required for ATA/SCSI)
  106 device          da                      # Direct Access (disks)
  107 device          cd                      # CD
  108 device          pass                    # Passthrough device (direct ATA/SCSI access)
  109 
  110 # USB device (gadget) support
  111 #device         at91_dci                # Atmel's usb device
  112 #device         usfs                    # emulate a flash
  113 #device         cdce                    # emulate an ethernet
  114 #device         usb_template            # Control of the gadget

Cache object: 472660e920783ac28191e417abe25df9


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