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

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 # Kernel configuration for DesignA Electronics Snapper9G45 System on Module
    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 # The handbook is also available locally in /usr/share/doc/handbook
    9 # if you've installed the doc distribution, otherwise always see the
   10 # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
   11 # latest information.
   12 #
   13 # An exhaustive list of options and more detailed explanations of the
   14 # device lines is also present in the ../../conf/NOTES and NOTES files.
   15 # If you are in doubt as to the purpose or necessity of a line, check first
   16 # in NOTES.
   17 #
   18 # $FreeBSD: releng/10.2/sys/arm/conf/SN9G45 278676 2015-02-13 15:27:46Z ian $
   19 
   20 #NO_UNIVERSE
   21 
   22 ident           SN9G45
   23 
   24 include "../at91/std.sn9g45"
   25 
   26 #To statically compile in device wiring instead of /boot/device.hints
   27 #hints          "SN9G45.hints"
   28 makeoptions     MODULES_OVERRIDE=""
   29 
   30 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   31 options         DDB
   32 options         KDB
   33 
   34 options         SCHED_4BSD              # 4BSD scheduler
   35 options         INET                    # InterNETworking
   36 #options        INET6                   # IPv6 communications protocols
   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        MD_ROOT                 # MD is a potential root device
   42 #options        MD_ROOT_SIZE=4096       # 4MB ram disk
   43 options         NFSCL                   # New Network Filesystem Client
   44 #options        NFSD                    # New Network Filesystem Server
   45 #options        NFSLOCKD                # Network Lock Manager
   46 #options        NFS_ROOT                # NFS usable as /, requires NFSCL
   47 #options        BOOTP_NFSROOT
   48 #options        BOOTP
   49 #options        BOOTP_NFSV3
   50 #options        BOOTP_WIRED_TO=ate0
   51 #options        BOOTP_COMPAT
   52 
   53 options         ROOTDEVNAME=\"ufs:/dev/da0s1\"
   54 
   55 options         ALT_BREAK_TO_DEBUGGER
   56 
   57 options         GEOM_PART_BSD           # BSD partition scheme
   58 options         GEOM_PART_MBR           # MBR partition scheme
   59 options         TMPFS                   # Efficient memory filesystem
   60 #options        MSDOSFS                 # MSDOS Filesystem
   61 #options        CD9660                  # ISO 9660 Filesystem
   62 #options        PROCFS                  # Process filesystem (requires PSEUDOFS)
   63 #options        PSEUDOFS                # Pseudo-filesystem framework
   64 options         SCSI_DELAY=1000         # Delay (in ms) before probing SCSI
   65 #options        KTRACE                  # ktrace(1) support
   66 options         SYSVSHM                 # SYSV-style shared memory
   67 options         SYSVMSG                 # SYSV-style message queues
   68 options         SYSVSEM                 # SYSV-style semaphores
   69 options         _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
   70 options         MUTEX_NOINLINE
   71 options         RWLOCK_NOINLINE
   72 options         NO_FFS_SNAPSHOT
   73 options         NO_SWAPPING
   74 
   75 # Debugging for use in -current
   76 #options        INVARIANTS              # Enable calls of extra sanity checking
   77 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   78 #options        WITNESS                 # Enable checks to detect deadlocks and cycles
   79 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   80 #options        DIAGNOSTIC
   81 
   82 device          random
   83 device          loop
   84 device          bpf
   85 device          ether
   86 device          md
   87 
   88 device          uart                    # Serial Ports
   89 
   90 # Ethernet
   91 device          ate                     # Ethernet Driver       
   92 device          mii
   93 option          AT91_ATE_USE_RMII
   94 
   95 device          at91_wdt                # WDT: Watchdog timer
   96 
   97 # SCSI peripherals
   98 device          scbus                   # SCSI bus (required for ATA/SCSI)
   99 device          da                      # Direct Access (disks)
  100 device          cd                      # CD
  101 device          pass                    # Passthrough device (direct ATA/SCSI access)
  102 
  103 # USB support
  104 device          ohci                    # OHCI localbus->USB interface
  105 device          usb                     # USB Bus (required)
  106 device          umass                   # Disks/Mass storage - Requires scbus and da
  107 device          uhid                    # "Human Interface Devices"
  108 #device         ulpt                    # Printer
  109 #device         udbp                    # USB Double Bulk Pipe devices
  110 
  111 # USB Ethernet, requires miibus
  112 device          miibus
  113 #device         aue                     # ADMtek USB Ethernet
  114 #device         axe                     # ASIX Electronics USB Ethernet
  115 #device         cdce                    # Generic USB over Ethernet
  116 #device         cue                     # CATC USB Ethernet
  117 #device         kue                     # Kawasaki LSI USB Ethernet
  118 #device         rue                     # RealTek RTL8150 USB Ethernet
  119 device          udav                    # Davicom DM9601E USB
  120 
  121 # USB Wireless
  122 #device         rum                     # Ralink Technology RT2501USB wireless NICs
  123 #device         uath                    # Atheros AR5523 wireless NICs
  124 #device         ural                    # Ralink Technology RT2500USB wireless NICs
  125 #device         zyd                     # ZyDAS zd1211/zd1211b wireless NICs
  126 
  127 # Wireless NIC cards
  128 #device         wlan                    # 802.11 support
  129 #device         wlan_wep                # 802.11 WEP support
  130 #device         wlan_ccmp               # 802.11 CCMP support
  131 #device         wlan_tkip               # 802.11 TKIP support
  132 #device         wlan_amrr               # AMRR transmit rate control algorithm
  133 

Cache object: 27104573c730fbf85161f6c89b64b603


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