Re: 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 Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=8Oi90T3XmmFyj0ORCQa3teR17JszjQ0L443HWFDGfI8=; b=wPkpCMTXzkWN+7LGXAGibS5JiskqXc/fJ6fsBrnZ1Yermx6mFxzIbQP3pNHMe/GakN iUDVYIwxIb1CgI1Ok9LlRRNfbqIN3EECMWBgGye0XJoLePgAttsDgOipa0D8jHB4v4NI haGTQk1EQFzF75ZKW+da5jon5RTFFM2Am9S5Y= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=dc6Qs6zeQMVD0xtl/VWSR88B0uXKB7t4sOv8hypRYenHvldnz6Ky64g7WeOS04gbpp yualBXDwwCDtUnJwe9JPy2kfbDpjfw8ZPCasxLV+L/lByw49fIMZWZigsMD6gGQWZCpk Gz6e8DP9iTFY4Hw/NtWaVCuHGxWcBkxiShETk= On Jul 9, 2008, at 2:37 PM, Andy Green wrote: 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... Hello, I think you must build your kext with appropriate SDK (MacOSX 10.3.9 in this case). This email sent to site_archiver@lists.apple.com
participants (1)
-
Boris Remizov