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/powerpc/conf/GENERIC

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 #
    2 # GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
    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/6.0/sys/powerpc/conf/GENERIC 150466 2005-09-22 12:36:39Z kensmith $
   20 
   21 machine         powerpc
   22 cpu             OEA
   23 ident           GENERIC
   24 
   25 #To statically compile in device wiring instead of /boot/device.hints
   26 #hints          "GENERIC.hints"
   27 
   28 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
   29 makeoptions     WERROR=-Wno-error       #XXX: We don't want -Werror just now
   30 
   31 # Platform support
   32 options         POWERMAC                #NewWorld Apple PowerMacs
   33 options         PSIM                    #GDB PSIM ppc simulator
   34 
   35 #options        SCHED_ULE               #ULE scheduler
   36 options         SCHED_4BSD              #4BSD scheduler
   37 options         INET                    #InterNETworking
   38 options         INET6                   #IPv6 communications protocols
   39 options         FFS                     #Berkeley Fast Filesystem
   40 options         SOFTUPDATES             #Enable FFS soft updates support
   41 options         UFS_ACL                 #Support for access control lists
   42 options         UFS_DIRHASH             #Improve performance on big directories
   43 options         MD_ROOT                 #MD is a potential root device
   44 options         NFSCLIENT               #Network Filesystem Client
   45 options         NFSSERVER               #Network Filesystem Server
   46 options         NFS_ROOT                #NFS usable as root device
   47 options         MSDOSFS                 #MSDOS Filesystem
   48 options         CD9660                  #ISO 9660 Filesystem
   49 options         PROCFS                  #Process filesystem (requires PSEUDOFS)
   50 options         PSEUDOFS                #Pseudo-filesystem framework
   51 options         GEOM_GPT                #GUID Partition Tables.
   52 options         COMPAT_43               #Compatible with BSD 4.3 [KEEP THIS!]
   53 options         COMPAT_FREEBSD4         #Keep this for a while
   54 options         COMPAT_FREEBSD5         # Compatible with FreeBSD5
   55 options         SCSI_DELAY=5000         #Delay (in ms) before probing SCSI 
   56 options         KTRACE                  #ktrace(1) syscall trace support
   57 options         SYSVSHM                 #SYSV-style shared memory
   58 options         SYSVMSG                 #SYSV-style message queues
   59 options         SYSVSEM                 #SYSV-style semaphores
   60 options         _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
   61 
   62 # Debugging for use in -current
   63 options         KDB                     #Enable the kernel debugger
   64 options         DDB                     #Support DDB
   65 options         INVARIANTS              #Enable calls of extra sanity checking
   66 options         INVARIANT_SUPPORT       #Extra sanity checks of internal structures, required by INVARIANTS
   67 options         WITNESS                 #Enable checks to detect deadlocks and cycles
   68 
   69 # To make an SMP kernel, the next line is needed
   70 #options        SMP                     # Symmetric MultiProcessor Kernel
   71 
   72 # Standard busses
   73 device          pci
   74 
   75 # ATA and ATAPI devices
   76 device          ata
   77 device          atadisk         # ATA disk drives
   78 device          atapicd         # ATAPI CDROM drives
   79 #device         atapifd         # ATAPI floppy drives
   80 #device         atapist         # ATAPI tape drives
   81 
   82 # SCSI peripherals
   83 device          scbus           # SCSI bus (required for SCSI)
   84 device          da              # Direct Access (disks)
   85 device          sa              # Sequential Access (tape etc)
   86 device          cd              # CD
   87 device          pass            # Passthrough device (direct SCSI access)
   88 
   89 # syscons is the default console driver, resembling an SCO console
   90 device          sc
   91 options         SC_OFWFB        # OFW frame buffer
   92 options         SC_DFLT_FONT    # compile font in
   93 makeoptions     SC_DFLT_FONT=cp437
   94 
   95 # Serial (COM) ports
   96 #device         sio             # 8250, 16[45]50 based serial ports
   97 device          zs              # Zilog 8350 based serial ports
   98 
   99 # PCI Ethernet NICs that use the common MII bus controller code.
  100 device          miibus          # MII bus support
  101 device          gem             # Sun GEM/Sun ERI/Apple GMAC
  102 device          dc              # DEC/Intel 21143 and various workalikes
  103 device          fxp             # Intel EtherExpress PRO/100B (82557, 82558)
  104 
  105 # Pseudo devices.
  106 device          loop            # Network loopback
  107 device          mem             # Memory and kernel memory devices
  108 device          random          # Entropy device
  109 device          ether           # Ethernet support
  110 device          sl              # Kernel SLIP
  111 device          ppp             # Kernel PPP
  112 device          tun             # Packet tunnel.
  113 device          pty             # Pseudo-ttys (telnet etc)
  114 device          md              # Memory "disks"
  115 device          ofwd            # Open Firmware disks
  116 device          gif             # IPv6 and IPv4 tunneling
  117 device          faith           # IPv6-to-IPv4 relaying/(translation)
  118 
  119 # The `bpf' device enables the Berkeley Packet Filter.
  120 # Be aware of the administrative consequences of enabling this!
  121 # Note that 'bpf' is required for DHCP.
  122 device          bpf             #Berkeley packet filter
  123 
  124 # USB support
  125 device          uhci            # UHCI PCI->USB interface
  126 device          ohci            # OHCI PCI->USB interface
  127 device          ehci            # EHCI PCI->USB interface
  128 device          usb             # USB Bus (required)
  129 device          ugen            # Generic
  130 device          uhid            # "Human Interface Devices"
  131 device          ukbd            # Keyboard
  132 device          ulpt            # Printer
  133 device          umass           # Disks/Mass storage - Requires scbus and da0
  134 device          ums             # Mouse
  135 device          urio            # Diamond Rio 500 MP3 player
  136 device          uscanner        # Scanners
  137 # USB Ethernet
  138 device          aue             # ADMtek USB Ethernet
  139 device          axe             # ASIX Electronics USB Ethernet
  140 device          cdce            # Generic USB over Ethernet
  141 device          cue             # CATC USB Ethernet
  142 device          kue             # Kawasaki LSI USB Ethernet
  143 
  144 # FireWire support
  145 device          firewire        # FireWire bus code
  146 device          sbp             # SCSI over FireWire (Requires scbus and da)
  147 device          fwe             # Ethernet over FireWire (non-standard!)
  148 
  149 options         KTR
  150 options         KTR_COMPILE=0xffffffff
  151 #options        KTR_MASK=KTR_SIG
  152 options         KTR_VERBOSE

Cache object: a834f5880aff0632e8f145a780f00004


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