X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/21362eb3e66fd2c787aee132bce100a44d71a99c..e2d2fc5c71f7d145cba7267989251af45e3bb5ba:/iokit/KernelConfigTables.cpp diff --git a/iokit/KernelConfigTables.cpp b/iokit/KernelConfigTables.cpp index ad2627acd..ee06e47e5 100644 --- a/iokit/KernelConfigTables.cpp +++ b/iokit/KernelConfigTables.cpp @@ -25,65 +25,27 @@ * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ - - -/* 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. +/* + * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce + * support for mandatory and extensible security protections. This notice + * is included in support of clause 2.2 (b) of the Apple Public License, + * Version 2.0. */ -const char * gIOKernelKmods = -"{" - "'com.apple.kernel' = '';" - "'com.apple.kpi.bsd' = '';" - "'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' = '-1';" +" 'IOProbeScore' = 0:32;" " }" -#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 */ -#ifdef i386 -" ," -" {" -" 'IOClass' = AppleIntelClock;" -" 'IOProviderClass' = IOPlatformDevice;" -" 'IONameMatch' = intel-clock;" -" }" -#endif /* i386 */ ")"; +/* 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. + */ +#if __i386__ +const char * gIOKernelKmods = ""; +#endif /* __i386__ */