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

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 # GUMSTIX -- Custom configuration for the Gumstix Basix and Connex boards from
    2 # gumstix.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/GUMSTIX 285365 2015-07-10 22:10:00Z gjb $
   20 
   21 ident           GUMSTIX
   22 cpu             CPU_XSCALE_PXA2X0
   23 
   24 # This probably wants to move somewhere else.  Maybe we can create a basic
   25 # PXA2X0 config, then make a GUMSTIX config that includes the basic one,
   26 # adds the smc and smcphy devices and pulls in this hints file.
   27 hints           "GUMSTIX.hints"
   28 
   29 options         PHYSADDR=0xa0000000
   30 options         KERNPHYSADDR=0xa0200000 
   31 options         KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
   32 
   33 include         "../xscale/pxa/std.pxa"
   34 makeoptions     MODULES_OVERRIDE=""
   35 
   36 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   37 options         HZ=100
   38 #options        DEVICE_POLLING
   39 
   40 options         SCHED_4BSD              # 4BSD scheduler
   41 options         INET                    # InterNETworking
   42 #options        INET6                   # IPv6 communications protocols
   43 options         FFS                     # Berkeley Fast Filesystem
   44 options         SOFTUPDATES             # Enable FFS soft updates support
   45 options         UFS_ACL                 # Support for access control lists
   46 options         UFS_DIRHASH             # Improve performance on big directories
   47 options         NFSCL                   # New Network Filesystem Client
   48 #options        NFSD                    # New Network Filesystem Server
   49 options         NFS_ROOT                # NFS usable as /, requires NFSCL
   50 options         GEOM_PART_GPT           # GUID Partition Tables
   51 options         GEOM_PART_BSD           # BSD partition scheme
   52 options         GEOM_PART_MBR           # MBR partition scheme
   53 options         GEOM_LABEL              # Provides labelization 
   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         COMPAT_43               # Compatible with BSD 4.3 [KEEP THIS!]
   60 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   61 options         KTRACE                  # ktrace(1) support
   62 options         SYSVSHM                 # SYSV-style shared memory
   63 options         SYSVMSG                 # SYSV-style message queues
   64 options         SYSVSEM                 # SYSV-style semaphores
   65 options         _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
   66 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
   67 options         BOOTP
   68 options         BOOTP_NFSROOT
   69 options         BOOTP_WIRED_TO=smc0
   70 options         BOOTP_COMPAT
   71 options         BOOTP_NFSV3
   72 options         BOOTP_BLOCKSIZE=4096
   73 options         PREEMPTION
   74 device          loop
   75 device          ether
   76 device          mii
   77 device          mii_bitbang
   78 device          smc
   79 device          smcphy
   80 device          uart
   81 device          uart_ns8250
   82 
   83 # Debugging for use in -current
   84 options         KDB
   85 options         DDB                     # Enable the kernel debugger
   86 #options        DEADLKRES               # Enable the deadlock resolver
   87 #options        INVARIANTS              # Enable calls of extra sanity checking
   88 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   89 #options        WITNESS                 # Enable checks to detect deadlocks and cycles
   90 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   91 #options        DIAGNOSTIC
   92 
   93 device          md
   94 device          random                  # Entropy device

Cache object: ffcd37f61f8ee019eeeda54c97b92880


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