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/iokit/KernelConfigTables.cpp

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  * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
    3  *
    4  * @APPLE_LICENSE_HEADER_START@
    5  * 
    6  * The contents of this file constitute Original Code as defined in and
    7  * are subject to the Apple Public Source License Version 1.1 (the
    8  * "License").  You may not use this file except in compliance with the
    9  * License.  Please obtain a copy of the License at
   10  * http://www.apple.com/publicsource and read it before using this file.
   11  * 
   12  * This Original Code and all software distributed under the License are
   13  * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
   14  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
   15  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
   16  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
   17  * License for the specific language governing rights and limitations
   18  * under the License.
   19  * 
   20  * @APPLE_LICENSE_HEADER_END@
   21  */
   22 
   23 
   24 /* This list is used in IOStartIOKit.cpp to declare fake kmod_info
   25  * structs for kext dependencies that are built into the kernel.
   26  * Empty version strings get replaced with osrelease at runtime.
   27  */
   28 const char * gIOKernelKmods =
   29 "{"
   30    "'com.apple.kernel'                         = '';"
   31    "'com.apple.kpi.bsd'                        = '';"
   32    "'com.apple.kpi.iokit'                      = '';"
   33    "'com.apple.kpi.libkern'                    = '';"
   34    "'com.apple.kpi.mach'                       = '';"
   35    "'com.apple.kpi.unsupported'                = '';"
   36    "'com.apple.iokit.IONVRAMFamily'            = '';"
   37    "'com.apple.driver.AppleNMI'                = '';"
   38    "'com.apple.iokit.IOSystemManagementFamily' = '';"
   39    "'com.apple.iokit.ApplePlatformFamily'      = '';"
   40    "'com.apple.kernel.6.0'                     = '7.9.9';"
   41    "'com.apple.kernel.bsd'                     = '7.9.9';"
   42    "'com.apple.kernel.iokit'                   = '7.9.9';"
   43    "'com.apple.kernel.libkern'                 = '7.9.9';"
   44    "'com.apple.kernel.mach'                    = '7.9.9';"
   45 "}";
   46 
   47 
   48 const char * gIOKernelConfigTables =
   49 "("
   50 "   {"
   51 "     'IOClass'         = IOPanicPlatform;"
   52 "     'IOProviderClass' = IOPlatformExpertDevice;"
   53 "     'IOProbeScore'    = '-1';"
   54 "   }"
   55 #ifdef PPC
   56 "   ,"
   57 "   {"
   58 "       'IOClass'               = AppleCPU;"
   59 "       'IOProviderClass'       = IOPlatformDevice;"
   60 "       'IONameMatch'           = 'cpu';"
   61 "       'IOProbeScore'          = 100:32;"
   62 "   },"
   63 "   {"
   64 "       'IOClass'              = AppleNMI;"
   65 "       'IOProviderClass'      = AppleMacIODevice;"
   66 "       'IONameMatch'          = 'programmer-switch';"
   67 "   },"
   68 "   {"
   69 "       'IOClass'               = AppleNVRAM;"
   70 "       'IOProviderClass'       = AppleMacIODevice;"
   71 "       'IONameMatch'           = nvram;"
   72 "   }"
   73 #endif /* PPC */
   74 #ifdef i386
   75 "   ,"
   76 "   {"
   77 "       'IOClass'           = AppleIntelClock;"
   78 "       'IOProviderClass'   = IOPlatformDevice;"
   79 "       'IONameMatch'       = intel-clock;"
   80 "   }"
   81 #endif /* i386 */
   82 ")";
   83 

Cache object: 16a1f63498213167d4e7686e78b8b4ff


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