]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
e5568f75 A |
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. | |
1c79356b | 11 | * |
e5568f75 A |
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 | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
e5568f75 A |
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. | |
1c79356b A |
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. | |
1c79356b A |
26 | */ |
27 | const char * gIOKernelKmods = | |
55e303ae | 28 | "{" |
ccc36f2f A |
29 | " 'com.apple.kernel' = '7.6.0';" |
30 | " 'com.apple.kpi.bsd' = '7.6.0';" | |
31 | " 'com.apple.kpi.iokit' = '7.6.0';" | |
32 | " 'com.apple.kpi.libkern' = '7.6.0';" | |
33 | " 'com.apple.kpi.mach' = '7.6.0';" | |
34 | " 'com.apple.iokit.IONVRAMFamily' = '7.6.0';" | |
35 | " 'com.apple.driver.AppleNMI' = '7.6.0';" | |
36 | " 'com.apple.iokit.IOSystemManagementFamily' = '7.6.0';" | |
37 | " 'com.apple.iokit.ApplePlatformFamily' = '7.6.0';" | |
55e303ae A |
38 | " 'com.apple.kernel.6.0' = '6.9.9';" |
39 | " 'com.apple.kernel.bsd' = '6.9.9';" | |
40 | " 'com.apple.kernel.iokit' = '6.9.9';" | |
41 | " 'com.apple.kernel.libkern' = '6.9.9';" | |
42 | " 'com.apple.kernel.mach' = '6.9.9';" | |
43 | "}"; | |
1c79356b A |
44 | |
45 | ||
46 | const char * gIOKernelConfigTables = | |
55e303ae A |
47 | "(" |
48 | " {" | |
49 | " 'IOClass' = IOPanicPlatform;" | |
50 | " 'IOProviderClass' = IOPlatformExpertDevice;" | |
51 | " 'IOProbeScore' = '-1';" | |
52 | " }" | |
1c79356b | 53 | #ifdef PPC |
55e303ae A |
54 | " ," |
55 | " {" | |
56 | " 'IOClass' = AppleCPU;" | |
57 | " 'IOProviderClass' = IOPlatformDevice;" | |
58 | " 'IONameMatch' = 'cpu';" | |
59 | " 'IOProbeScore' = 100:32;" | |
60 | " }," | |
61 | " {" | |
62 | " 'IOClass' = AppleNMI;" | |
63 | " 'IOProviderClass' = AppleMacIODevice;" | |
64 | " 'IONameMatch' = 'programmer-switch';" | |
65 | " }," | |
66 | " {" | |
67 | " 'IOClass' = AppleNVRAM;" | |
68 | " 'IOProviderClass' = AppleMacIODevice;" | |
69 | " 'IONameMatch' = nvram;" | |
70 | " }" | |
1c79356b A |
71 | #endif /* PPC */ |
72 | #ifdef i386 | |
55e303ae A |
73 | " ," |
74 | " {" | |
75 | " 'IOClass' = AppleIntelClock;" | |
76 | " 'IOProviderClass' = IOPlatformDevice;" | |
77 | " 'IONameMatch' = intel-clock;" | |
78 | " }" | |
1c79356b A |
79 | #endif /* i386 */ |
80 | ")"; | |
0b4e3aa0 | 81 |