IOUserClient changed since 10.3? Can't load kext on 10.3.9
site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com Thread-index: AcjhLWPbxi6fZBlXSCaCb9CAt1cfPgAgDYng Thread-topic: IOUserClient changed since 10.3? Can't load kext on 10.3.9 I've got a kext that loads successfully on 10.4 onwards. However, it won't load on 10.3.9: kextload reports *** is not compatible with it's superclass, 12IOUserClient superclass changed? It looks like someone else had this problem - see http://lists.apple.com/archives/darwin-drivers/2006/Feb/msg00017.html Unfortunately the solution didn't make it onto the mailing list!! Can anyone enlighten me? Some of plist copied below:- [Incidentally, I was seeing other issues from kextload, saying that:- "Kext has a kernel dependency prior to version 6.0 and CFBundleVersion does not match executable's MODULE_VERSION" = true I've fixed it by declaring a dependency on iokit/libkern v6.9.9 (MacOS 10.3). Not sure it really mattered, but I'd like to understand it!/ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> <key>CFBundleName</key> <string>${PRODUCT_NAME}</string> <key>CFBundleIconFile</key> <string></string> <key>CFBundleIdentifier</key> <string> ***** </string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundlePackageType</key> <string>KEXT</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> <string>0.09.2</string> <key>OSBundleCompatibleVersion</key> <string>0.09.0</string> <key>IOKitPersonalities</key> <dict> <key>****</key> <dict> <key>CFBundleIdentifier</key> <string>****</string> <key>IOClass</key> <string>****</string> <key>IOProviderClass</key> <string>IOSCSIPeripheralDeviceNub</string> <key>Peripheral Device Type</key> <integer>0</integer> **** </dict> </dict> <key>OSBundleLibraries</key> <dict> <key>com.apple.iokit.IOSCSIArchitectureModelFamily</key> <string>1.0.0</string> <key>com.apple.iokit.IOSCSIBlockCommandsDevice</key> <string>1.0.0</string> <key>com.apple.iokit.IOStorageFamily</key> <string>1.0.0</string> <key>com.apple.kernel.iokit</key> <string>6.9.9</string> <key>com.apple.kernel.libkern</key> <string>6.9.9</string> </dict> <key>OSBundleRequired</key> <string>Local-Root</string> </dict> </plist> _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... This email sent to site_archiver@lists.apple.com
participants (1)
-
Andy Green