This repository was archived by the owner on Sep 5, 2023. It is now read-only.
forked from RehabMan/OS-X-Generic-USB3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInfo.plist
More file actions
89 lines (89 loc) · 2.49 KB
/
Info.plist
File metadata and controls
89 lines (89 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>net.osx86.kexts.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>${MODULE_VERSION}</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${MODULE_VERSION}</string>
<key>IOKitPersonalities</key>
<dict>
<key>GenericUSBXHCI</key>
<dict>
<key>RM,Version</key>
<string>${PRODUCT_NAME} ${MODULE_VERSION}</string>
<key>RM,Build</key>
<string>${CONFIGURATION}-${LOGNAME}</string>
<key>CFBundleIdentifier</key>
<string>net.osx86.kexts.${PRODUCT_NAME:rfc1034identifier}</string>
<key>IOClass</key>
<string>GenericUSBXHCI</string>
<key>#IOPCIPrimaryMatch</key>
<string>0x01941033</string>
<key>IOPCIClassMatch</key>
<string>0x0c033000</string>
<key>IOPCIPauseCompatible</key>
<true/>
<key>IOPCITunnelCompatible</key>
<true/>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>IOUserClientClass</key>
<string>IOUSBControllerUserClient</string>
<key>IOProbeScore</key>
<integer>1</integer>
<key>ASMediaEDLTAFix</key>
<true/>
<key>IntelDoze</key>
<false/>
<key>DeviceWhitelist</key>
<dict>
<key>1b73_1000</key>
<integer>0</integer>
</dict>
<key>DeviceBlacklist</key>
<dict>
<key>8086</key>
<integer>0</integer>
<key>1b73</key>
<integer>0</integer>
</dict>
</dict>
</dict>
<key>NSHumanReadableCopyright</key>
<string>${COPYRIGHT_NOTICE}</string>
<key>OSBundleCompatibleVersion</key>
<string>${DYLIB_COMPATIBILITY_VERSION}</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.iokit.IOPCIFamily</key>
<string>2.6</string>
<key>com.apple.iokit.IOUSBFamily</key>
<string>5.0.0a1</string>
<key>com.apple.kpi.iokit</key>
<string>10.6</string>
<key>com.apple.kpi.libkern</key>
<string>10.6</string>
<key>com.apple.kpi.mach</key>
<string>10.6</string>
<key>com.apple.kpi.unsupported</key>
<string>10.6</string>
</dict>
<key>OSBundleRequired</key>
<string>Root</string>
</dict>
</plist>