Created
March 17, 2016 12:46
-
-
Save gagern/6d98868c75f009d641aa to your computer and use it in GitHub Desktop.
Trying to make http://apple.stackexchange.com/a/230925/25135 work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>en</string> | |
<key>CFBundleIdentifier</key> | |
<string>net.von-gagern.UsbWorkaround</string> | |
<key>CFBundleInfoDictionaryVersion</key> | |
<string>6.0</string> | |
<key>CFBundleName</key> | |
<string>UsbWorkaround</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>Display Workaround</key> | |
<dict> | |
<key>CFBundleIdentifier</key> | |
<string>com.apple.driver.AppleUSBHostMergeProperties</string> | |
<key>IOClass</key> | |
<string>AppleUSBHostMergeProperties</string> | |
<key>IOProviderClass</key> | |
<string>IOUSBHostDevice</string> | |
<key>IOProviderMergeProperties</key> | |
<dict> | |
<key>kUSBRemoteWakeOverride</key> | |
<false/> | |
</dict> | |
<key>idVendor</key> | |
<integer>17955</integer> | |
<key>idProduct</key> | |
<integer>282</integer> | |
</dict> | |
</dict> | |
<key>NSHumanReadableCopyright</key> | |
<string>Copyright © 2016 Martin von Gagern. All rights reserved.</string> | |
<key>OSBundleLibraries</key> | |
<dict/> | |
</dict> | |
</plist> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find /Library/Extensions/AskDifferently230925.kext -type f | |
/Library/Extensions/AskDifferently230925.kext/Contents/Info.plist | |
$ find /Library/Extensions/AskDifferently230925.kext -ls | |
8698402 0 drwxr-xr-x 3 root wheel 102 Mar 17 10:45 /Library/Extensions/AskDifferently230925.kext | |
8698403 0 drwxr-xr-x 3 root wheel 102 Mar 17 13:04 /Library/Extensions/AskDifferently230925.kext/Contents | |
9706725 8 -rw-r--r-- 1 root wheel 1517 Mar 17 13:37 /Library/Extensions/AskDifferently230925.kext/Contents/Info.plist | |
$ xattr -l /Library/Extensions/AskDifferently230925.kext/Contents/Info.plist | |
com.apple.TextEncoding: utf-8;134217984 | |
com.apple.xcode.PlistType: com.apple.xcode.plist.structure-definition.info-plist | |
$ sudo nvram boot-args | |
boot-args kext-dev-mode=1 | |
$ sudo kextutil -t /Library/Extensions/AskDifferently230925.kext | |
Diagnostics for /Library/Extensions/AskDifferently230925.kext: | |
Warnings: | |
Personality CFBundleIdentifier differs from containing kext's (not necessarily a mistake, but rarely done): | |
Display Workaround | |
Code Signing Failure: not code signed | |
Warnings: | |
Personality CFBundleIdentifier differs from containing kext's (not necessarily a mistake, but rarely done): | |
Display Workaround | |
Untrusted kexts are not allowed | |
ERROR: invalid signature for net.von-gagern.UsbWorkaround, will not load |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment