Loading...
iokit/KernelConfigTables.cpp xnu-4570.71.2 xnu-1228
--- xnu/xnu-4570.71.2/iokit/KernelConfigTables.cpp
+++ xnu/xnu-1228/iokit/KernelConfigTables.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998-2012 Apple Inc. All rights reserved.
+ * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
@@ -32,17 +32,58 @@
  * Version 2.0.
  */
 
+
+/* This list is used in IOStartIOKit.cpp to declare fake kmod_info
+ * structs for kext dependencies that are built into the kernel.
+ * Empty version strings get replaced with osrelease at runtime.
+ */
+const char * gIOKernelKmods =
+"{"
+   "'com.apple.kernel'                         = '';"
+   "'com.apple.kpi.bsd'                        = '';"
+   "'com.apple.kpi.dsep'                       = '';"
+   "'com.apple.kpi.iokit'                      = '';"
+   "'com.apple.kpi.libkern'                    = '';"
+   "'com.apple.kpi.mach'                       = '';"
+   "'com.apple.kpi.unsupported'                = '';"
+   "'com.apple.iokit.IONVRAMFamily'            = '';"
+   "'com.apple.driver.AppleNMI'                = '';"
+   "'com.apple.iokit.IOSystemManagementFamily' = '';"
+   "'com.apple.iokit.ApplePlatformFamily'      = '';"
+   "'com.apple.kernel.6.0'                     = '7.9.9';"
+   "'com.apple.kernel.bsd'                     = '7.9.9';"
+   "'com.apple.kernel.iokit'                   = '7.9.9';"
+   "'com.apple.kernel.libkern'                 = '7.9.9';"
+   "'com.apple.kernel.mach'                    = '7.9.9';"
+"}";
+
+
 const char * gIOKernelConfigTables =
 "("
 "   {"
 "     'IOClass'         = IOPanicPlatform;"
 "     'IOProviderClass' = IOPlatformExpertDevice;"
-"     'IOProbeScore'    = 0:32;"
+"     'IOProbeScore'    = '-1';"
 "   }"
+#ifdef PPC
+"   ,"
+"   {"
+"       'IOClass'               = AppleCPU;"
+"       'IOProviderClass'       = IOPlatformDevice;"
+"       'IONameMatch'           = 'cpu';"
+"       'IOProbeScore'          = 100:32;"
+"   },"
+"   {"
+"       'IOClass'              = AppleNMI;"
+"       'IOProviderClass'      = AppleMacIODevice;"
+"       'IONameMatch'          = 'programmer-switch';"
+"   },"
+"   {"
+"       'IOClass'               = AppleNVRAM;"
+"       'IOProviderClass'       = AppleMacIODevice;"
+"       'IONameMatch'           = nvram;"
+"   }"
+#endif /* PPC */
 ")";
 
-/* This stuff is no longer used at all but was exported in prior
- * releases, so we'll keep them around for PPC/i386 only.
- * See libkern's OSKext.cpp for other symbols, which have been moved
- * there for sanity.
- */
+