mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 19:40:15 +10:00
Test transport omission
This commit is contained in:
@@ -34,7 +34,7 @@ class Constants:
|
|||||||
self.featureunlock_version = "1.0.3" # FeatureUnlock
|
self.featureunlock_version = "1.0.3" # FeatureUnlock
|
||||||
self.debugenhancer_version = "1.0.4" # DebugEnhancer
|
self.debugenhancer_version = "1.0.4" # DebugEnhancer
|
||||||
self.cpufriend_version = "1.2.4" # CPUFriend
|
self.cpufriend_version = "1.2.4" # CPUFriend
|
||||||
self.bluetool_version = "2.6.0" # BlueToolFixup
|
self.bluetool_version = "2.6.1" # BlueToolFixup
|
||||||
|
|
||||||
## Apple
|
## Apple
|
||||||
## https://www.apple.com
|
## https://www.apple.com
|
||||||
|
|||||||
@@ -446,5 +446,7 @@ class Computer:
|
|||||||
self.bluetooth_chipset = "BRCM2070 Hub"
|
self.bluetooth_chipset = "BRCM2070 Hub"
|
||||||
elif "BRCM2046 Hub" in usb_data:
|
elif "BRCM2046 Hub" in usb_data:
|
||||||
self.bluetooth_chipset = "BRCM2046 Hub"
|
self.bluetooth_chipset = "BRCM2046 Hub"
|
||||||
|
elif "BRCM20702 Hub" in usb_data:
|
||||||
|
self.bluetooth_chipset = "BRCM20702 Hub"
|
||||||
elif "Bluetooth":
|
elif "Bluetooth":
|
||||||
self.bluetooth_chipset = "Generic"
|
self.bluetooth_chipset = "Generic"
|
||||||
|
|||||||
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.1.zip
Normal file
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.1.zip
Normal file
Binary file not shown.
15
payloads/Kexts/Acidanthera/BlueToolFixup.patch
Normal file
15
payloads/Kexts/Acidanthera/BlueToolFixup.patch
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
diff --git a/BrcmPatchRAM/BlueToolFixup.cpp b/BrcmPatchRAM/BlueToolFixup.cpp
|
||||||
|
index 0fa891a..b64b780 100644
|
||||||
|
--- a/BrcmPatchRAM/BlueToolFixup.cpp
|
||||||
|
+++ b/BrcmPatchRAM/BlueToolFixup.cpp
|
||||||
|
@@ -37,8 +37,10 @@ bool BlueToolFixup::start(IOService *provider) {
|
||||||
|
}
|
||||||
|
setProperty("VersionInfo", kextVersion);
|
||||||
|
setName("bluetooth");
|
||||||
|
+ /*
|
||||||
|
uint8_t bytes[] {0x00, 0x00, 0x00, 0x00};
|
||||||
|
setProperty("transport-encoding", bytes, sizeof(bytes));
|
||||||
|
+ */
|
||||||
|
registerService();
|
||||||
|
|
||||||
|
return true;
|
||||||
Reference in New Issue
Block a user