Skip to content

Commit a02dd3a

Browse files
committed
Update 20210623
1 parent 63781cd commit a02dd3a

File tree

12 files changed

+206
-18
lines changed

12 files changed

+206
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
._*

Changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# CHANGELOG
22

3+
**2021/06/23*
4+
- Update OC to the latest commit
5+
- Fix bluetooth on macOS Monterey
6+
7+
**2021/06/22**
8+
- Update everything to upgrade to macOS 12 Monterey (in **monterey** branch)
9+
- Known issues:
10+
+ Stuck at apple logo in the first login after update. Be patient and wait until it show login screen. After that, go to System Preferences > Users & Groups and turn on automatic login.
11+
+ Bluetooth not working
12+
+ Performance issue (need further updates)
13+
314
**2021/04/16**
415
- Update OC to v0.6.9
516
- Update kexts to latest version

OC/Drivers/OpenCanopy.efi

0 Bytes
Binary file not shown.
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>19H1217</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>en</string>
9+
<key>CFBundleExecutable</key>
10+
<string>BlueToolFixup</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>as.acidanthera.BlueToolFixup</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>BlueToolFixup</string>
17+
<key>CFBundlePackageType</key>
18+
<string>KEXT</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>2.6.0</string>
21+
<key>CFBundleSupportedPlatforms</key>
22+
<array>
23+
<string>MacOSX</string>
24+
</array>
25+
<key>CFBundleVersion</key>
26+
<string>2.6.0</string>
27+
<key>DTCompiler</key>
28+
<string>com.apple.compilers.llvm.clang.1_0</string>
29+
<key>DTPlatformBuild</key>
30+
<string>12D4e</string>
31+
<key>DTPlatformName</key>
32+
<string>macosx</string>
33+
<key>DTPlatformVersion</key>
34+
<string>11.1</string>
35+
<key>DTSDKBuild</key>
36+
<string>20C63</string>
37+
<key>DTSDKName</key>
38+
<string>macosx11.1</string>
39+
<key>DTXcode</key>
40+
<string>1240</string>
41+
<key>DTXcodeBuild</key>
42+
<string>12D4e</string>
43+
<key>IOKitPersonalities</key>
44+
<dict>
45+
<key>BlueToolFixup</key>
46+
<dict>
47+
<key>CFBundleIdentifier</key>
48+
<string>as.acidanthera.BlueToolFixup</string>
49+
<key>IOClass</key>
50+
<string>BlueToolFixup</string>
51+
<key>IOMatchCategory</key>
52+
<string>BlueToolFixup</string>
53+
<key>IOProviderClass</key>
54+
<string>IOResources</string>
55+
<key>IOResourceMatch</key>
56+
<string>IOKit</string>
57+
</dict>
58+
</dict>
59+
<key>LSMinimumSystemVersion</key>
60+
<string>10.8</string>
61+
<key>OSBundleLibraries</key>
62+
<dict>
63+
<key>as.vit9696.Lilu</key>
64+
<string>1.4.7</string>
65+
<key>com.apple.kpi.bsd</key>
66+
<string>12.0.0</string>
67+
<key>com.apple.kpi.dsep</key>
68+
<string>12.0.0</string>
69+
<key>com.apple.kpi.iokit</key>
70+
<string>12.0.0</string>
71+
<key>com.apple.kpi.libkern</key>
72+
<string>12.0.0</string>
73+
<key>com.apple.kpi.mach</key>
74+
<string>12.0.0</string>
75+
<key>com.apple.kpi.unsupported</key>
76+
<string>12.0.0</string>
77+
</dict>
78+
<key>OSBundleRequired</key>
79+
<string>Root</string>
80+
</dict>
81+
</plist>
Binary file not shown.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>KEXT</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>$(MODULE_VERSION)</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(MODULE_VERSION)</string>
21+
<key>IOKitPersonalities</key>
22+
<dict>
23+
<key>BlueToolFixup</key>
24+
<dict>
25+
<key>CFBundleIdentifier</key>
26+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
27+
<key>IOClass</key>
28+
<string>$(PRODUCT_NAME:rfc1034identifier)</string>
29+
<key>IOMatchCategory</key>
30+
<string>$(PRODUCT_NAME:rfc1034identifier)</string>
31+
<key>IOProviderClass</key>
32+
<string>IOResources</string>
33+
<key>IOResourceMatch</key>
34+
<string>IOKit</string>
35+
</dict>
36+
</dict>
37+
<key>OSBundleLibraries</key>
38+
<dict>
39+
<key>as.vit9696.Lilu</key>
40+
<string>1.4.7</string>
41+
<key>com.apple.kpi.bsd</key>
42+
<string>12.0.0</string>
43+
<key>com.apple.kpi.dsep</key>
44+
<string>12.0.0</string>
45+
<key>com.apple.kpi.iokit</key>
46+
<string>12.0.0</string>
47+
<key>com.apple.kpi.libkern</key>
48+
<string>12.0.0</string>
49+
<key>com.apple.kpi.mach</key>
50+
<string>12.0.0</string>
51+
<key>com.apple.kpi.unsupported</key>
52+
<string>12.0.0</string>
53+
</dict>
54+
<key>OSBundleRequired</key>
55+
<string>Root</string>
56+
</dict>
57+
</plist>

OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,19 @@
2727
<key>DTCompiler</key>
2828
<string>com.apple.compilers.llvm.clang.1_0</string>
2929
<key>DTPlatformBuild</key>
30-
<string>11A420a</string>
30+
<string>12D4e</string>
31+
<key>DTPlatformName</key>
32+
<string>macosx</string>
3133
<key>DTPlatformVersion</key>
32-
<string>GM</string>
34+
<string>11.1</string>
3335
<key>DTSDKBuild</key>
34-
<string>19A547</string>
36+
<string>20C63</string>
3537
<key>DTSDKName</key>
36-
<string>macosx10.15</string>
38+
<string>macosx11.1</string>
3739
<key>DTXcode</key>
38-
<string>1100</string>
40+
<string>1240</string>
3941
<key>DTXcodeBuild</key>
40-
<string>11A420a</string>
42+
<string>12D4e</string>
4143
<key>IOKitPersonalities</key>
4244
<dict>
4345
<key>IntelBluetoothFirmware_0026</key>
Binary file not shown.

OC/Kexts/IntelBluetoothInjector.kext/Contents/Info.plist

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,29 @@
1515
<key>CFBundlePackageType</key>
1616
<string>KEXT</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.1.3</string>
18+
<string>2.0.0</string>
1919
<key>CFBundleSupportedPlatforms</key>
2020
<array>
2121
<string>MacOSX</string>
2222
</array>
2323
<key>CFBundleVersion</key>
24-
<string>1.1.3</string>
24+
<string>2.0.0</string>
2525
<key>DTCompiler</key>
2626
<string>com.apple.compilers.llvm.clang.1_0</string>
2727
<key>DTPlatformBuild</key>
28-
<string>11A420a</string>
28+
<string>12D4e</string>
29+
<key>DTPlatformName</key>
30+
<string>macosx</string>
2931
<key>DTPlatformVersion</key>
30-
<string>GM</string>
32+
<string>11.1</string>
3133
<key>DTSDKBuild</key>
32-
<string>19A547</string>
34+
<string>20C63</string>
3335
<key>DTSDKName</key>
34-
<string>macosx10.15</string>
36+
<string>macosx11.1</string>
3537
<key>DTXcode</key>
36-
<string>1100</string>
38+
<string>1240</string>
3739
<key>DTXcodeBuild</key>
38-
<string>11A420a</string>
40+
<string>12D4e</string>
3941
<key>IOKitPersonalities</key>
4042
<dict>
4143
<key>0026</key>
@@ -173,6 +175,21 @@
173175
<key>idVendor</key>
174176
<integer>32903</integer>
175177
</dict>
178+
<key>ax210</key>
179+
<dict>
180+
<key>CFBundleIdentifier</key>
181+
<string>com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport</string>
182+
<key>IOClass</key>
183+
<string>BroadcomBluetoothHostControllerUSBTransport</string>
184+
<key>IOProbeScore</key>
185+
<integer>3000</integer>
186+
<key>IOProviderClass</key>
187+
<string>IOUSBHostDevice</string>
188+
<key>idProduct</key>
189+
<integer>51</integer>
190+
<key>idVendor</key>
191+
<integer>32903</integer>
192+
</dict>
176193
</dict>
177194
<key>LSMinimumSystemVersion</key>
178195
<string>10.12</string>

OC/OpenCore.efi

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)