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/mips/conf/XLR

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 #################################RMI_BSD#####################################
    2 # Copyright (c) 2003-2009 RMI Corporation
    3 # All rights reserved.
    4 # 
    5 # Redistribution and use in source and binary forms, with or without
    6 # modification, are permitted provided that the following conditions
    7 # are met:
    8 # 1. Redistributions of source code must retain the above copyright
    9 #    notice, this list of conditions and the following disclaimer.
   10 # 2. Redistributions in binary form must reproduce the above copyright
   11 #    notice, this list of conditions and the following disclaimer in the
   12 #    documentation and/or other materials provided with the distribution.
   13 # 3. Neither the name of RMI Corporation, nor the names of its contributors,
   14 #    may be used to endorse or promote products derived from this software
   15 #    without specific prior written permission.
   16 # 
   17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   21 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   22 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   23 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   24 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   26 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27 # SUCH DAMAGE.
   28 #################################RMI_BSD#####################################
   29 # XLR -- Generic kernel configuration file for FreeBSD/mips
   30 #
   31 # For more information on this file, please read the handbook section on
   32 # Kernel Configuration Files:
   33 #
   34 #    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
   35 #
   36 # The handbook is also available locally in /usr/share/doc/handbook
   37 # if you've installed the doc distribution, otherwise always see the
   38 # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
   39 # latest information.
   40 #
   41 # An exhaustive list of options and more detailed explanations of the
   42 # device lines is also present in the ../../conf/NOTES and NOTES files. 
   43 # If you are in doubt as to the purpose or necessity of a line, check first 
   44 # in NOTES.
   45 #
   46 # $FreeBSD: releng/8.3/sys/mips/conf/XLR 215938 2010-11-27 12:26:40Z jchandra $
   47 
   48 machine         mips
   49 cpu             CPU_RMI
   50 ident           XLR
   51 
   52 makeoptions     MODULES_OVERRIDE=""
   53 makeoptions     TARGET_BIG_ENDIAN
   54 #
   55 
   56 include         "../rmi/std.xlr"
   57 
   58 
   59 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
   60 #profile                2
   61 
   62 options         SCHED_ULE               # ULE scheduler
   63 #options                VERBOSE_SYSINIT
   64 #options        SCHED_4BSD              # 4BSD scheduler
   65 options         SMP
   66 options         PREEMPTION              # Enable kernel thread preemption
   67 #options        FULL_PREEMPTION         # Enable kernel thread preemption
   68 options         INET                    # InterNETworking
   69 options         INET6                   # IPv6 communications protocols
   70 options         FFS                     # Berkeley Fast Filesystem
   71 #options        SOFTUPDATES             # Enable FFS soft updates support
   72 options         UFS_ACL                 # Support for access control lists
   73 options         UFS_DIRHASH             # Improve performance on big directories
   74 options         NFSCLIENT
   75 options         NFS_ROOT
   76 #
   77 options         BOOTP
   78 options         BOOTP_NFSROOT
   79 options         BOOTP_NFSV3
   80 options         BOOTP_WIRED_TO=nlge0
   81 options         BOOTP_COMPAT
   82 options         ROOTDEVNAME=\"nfs:10.1.1.8:/usr/extra/nfsroot\"
   83 #
   84 #options        MD_ROOT                 # MD is a potential root device
   85 #options                MD_ROOT_SIZE=27000
   86 #options                MD_ROOT_SIZE=5120
   87 #options                ROOTDEVNAME=\"ufs:md0\"
   88 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   89 options         HZ=1000 
   90 options         NO_SWAPPING
   91 
   92 #Debugging options
   93 options         KTRACE                  # ktrace(1) support
   94 options         DDB
   95 options         KDB
   96 options         GDB
   97 options         ALT_BREAK_TO_DEBUGGER
   98 options         INVARIANTS              #Enable calls of extra sanity checking
   99 options         INVARIANT_SUPPORT       #Extra sanity checks of internal structures, required by INVARIANTS
  100 #options        WITNESS                 #Enable checks to detect deadlocks and cycles
  101 #options        WITNESS_SKIPSPIN        #Don't run witness on spinlocks for speed
  102 #options        KTR                     # ktr(4) and ktrdump(8) support
  103 #options        KTR_COMPILE=(KTR_LOCK|KTR_PROC|KTR_INTR|KTR_CALLOUT|KTR_UMA|KTR_SYSC|KTR_CRITICAL)
  104 #options        KTR_ENTRIES=131072
  105 #options        MUTEX_DEBUG
  106 #options        MUTEX_PROFILING
  107 
  108 device          pci
  109 #device         ata
  110 #device         atadisk
  111 #options        XLR_PERFMON             # Enable XLR processor activity monitoring
  112 options         BREAK_TO_DEBUGGER
  113 #device                 genclock
  114 device          uart
  115 # Pseudo
  116 device          loop
  117 device          random
  118 device          md
  119 device          mem
  120 device          pty
  121 device          bpf
  122 
  123 # Network
  124 device          miibus
  125 device          nlge
  126 device          ether
  127 device          re
  128 device          msk
  129 
  130 device          da
  131 device          scbus
  132 #device          ohci            # OHCI PCI->USB interface
  133 device          ehci            # EHCI PCI->USB interface (USB 2.0)
  134 device          usb             # USB Bus (required)
  135 #device         udbp            # USB Double Bulk Pipe devices
  136 #device          ugen            # Generic
  137 #device          uhid            # "Human Interface Devices"
  138 device          umass           # Disks/Mass storage - Requires scbus and da
  139 
  140 #device         cfi
  141 
  142 #i2c
  143 # Not yet
  144 #device      ic
  145 #device      iic
  146 #device      iicbb
  147 #device      iicbus
  148 #device      xlr_rtc
  149 #device      xlr_temperature
  150 #device      xlr_eeprom
  151 
  152 #crypto
  153 # Not yet
  154 #device cryptodev
  155 #device crypto
  156 #device rmisec
  157 options         ISA_MIPS32
  158 makeoptions     KERNLOADADDR=0x80100000

Cache object: b3a7506da9b7c7580e673f5d6ccd2777


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