没有指定内核文件错误在KEXT MAC环境中

时间:2011-10-20 09:50:12

标签: objective-c cocoa device-driver iokit kernel-extension

我尝试为USBHID设备实现KEXT。如果我正在检查终端它能够加载KEXT即         Newtok:桌面Rasheed $ kextutil -nt SampleKextDriver.kext         没有指定内核文件;使用运行内核进行链接。         SampleKextDriver.kext似乎是可加载的(包括磁盘库的链接)         但不幸的是我收到了上述消息。我的plist文件是

<?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//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>SampleKextDriver</string>
            <key>CFBundleIconFile</key>
            <string></string>
            <key>CFBundleIdentifier</key>
            <string>com.apple.dts.driver.SampleKextDriver</string>
            <key>CFBundleInfoDictionaryVersion</key>
            <string>6.0</string>
            <key>CFBundleName</key>
            <string>Mustahfa</string>
            <key>CFBundlePackageType</key>
            <string>KEXT</string>
            <key>CFBundleShortVersionString</key>
            <string>1.0</string>
            <key>CFBundleSignature</key>
            <string>????</string>
            <key>CFBundleVersion</key>
            <string>1</string>
            <key>IOKitPersonalities</key>
            <dict>
                <key>Device Driver</key>
                <dict>            
                    <key>bConfigurationValue</key>
                    <integer>1</integer>
                    <key>bInterfaceNumber</key>
                    <integer>0</integer>
                    <key>CFBundleIdentifier</key>
                    <string>com.apple.dts.driver.SampleKextDriver</string>
                    <key>IOMatchingCategory</key>
                    <string>com_apple_dts_driver_SampleKextDriver</string>
                    <key>IOProviderClass</key>
                    <string>IOUSBDevice</string>
                    <key>idProduct</key>
                    <integer>4389</integer>
                    <key>idVendor</key>
                    <integer>8192</integer>
                    <key>IOClass</key>
                    <string>IOService</string>
                    <key>IOProviderClass</key>
                    <string>IOUSBInterface</string>
                </dict>
            </dict>
            <key>OSBundleLibraries</key>
            <dict>
                <key>com.apple.iokit.IOHIDFamily</key>
                <string>1.6.4</string>
                <key>com.apple.kpi.iokit</key>
                <string>10.7</string>
                <key>com.apple.kpi.libkern</key>
                <string>10.7</string>
            </dict>
        </dict>
        </plist>

我不知道我错在哪里,我在Mac OS X开发方面没有太多经验。任何人都可以建议最好的文件或一些想法

感谢您提供的信息......

1 个答案:

答案 0 :(得分:0)

1.U加载kext时不应使用-n选项 kextutil 的-n选项似乎仅用于生成符号文件 kextutil 的-t选项会在发生错误时打印失败的原因 有关 kextutil 的详细信息,请在终端中输入 man kextutil

2.我建议你打开终端并输入follow命令来确定你的驱动程序所依赖的Kexts的版本。 (当然,您应该指定驱动程序需要支持的系统的最低版本。)

kextstat | grep com.apple.iokit.IOHIDFamily
kextstat | grep com.apple.kpi.iokit
kextstat | grep com.apple.kpi.libkern

然后更新驱动程序的info.plist的OSBundleLibraries字典。

3.希望这对你有用。祝你有个美好的一天!