From b93054412869acbef8b13435a75ea4f57d2fc18b Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Tue, 25 Jan 2022 11:48:49 -0700 Subject: [PATCH] build.py: ExtendBTFeatureFlags on 3rd party BT --- resources/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/build.py b/resources/build.py index 11b844418..33d24637c 100644 --- a/resources/build.py +++ b/resources/build.py @@ -704,6 +704,8 @@ class BuildOpenCore: elif self.computer.bluetooth_chipset == "3rd Party Bluetooth 4.0 Hub": print("- Detected 3rd Party Chipset") self.enable_kext("BlueToolFixup.kext", self.constants.bluetool_version, self.constants.bluetool_path) + print("- Enabling Bluetooth FeatureFlags") + self.config["Kernel"]["Quirks"]["ExtendBTFeatureFlags"] = True elif smbios_data.smbios_dictionary[self.model]["Bluetooth Model"] <= bluetooth_data.bluetooth_data.BRCM20702_v1.value: print("- Fixing Legacy Bluetooth for macOS Monterey") self.enable_kext("BlueToolFixup.kext", self.constants.bluetool_version, self.constants.bluetool_path)