From ec325641ac1fdd6a67f5ab304d15041f7b0b61e4 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Fri, 2 Aug 2024 18:43:46 +0700 Subject: [PATCH] Add support for specific Bluetooth IDs of Wi-Fi modems not natively supported --- Scripts/kext_maestro.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index a50f9e5..a08c742 100755 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -653,6 +653,8 @@ class KextMaestro: if idx < 99: kexts.append("BrcmPatchRAM") + if bluetooth and macos_version > 20: + kexts.append("BlueToolFixup") else: kexts.append("IntelBluetoothFirmware")