diff --git a/resources/build/bluetooth.py b/resources/build/bluetooth.py index 4353f7df5..377193186 100644 --- a/resources/build/bluetooth.py +++ b/resources/build/bluetooth.py @@ -25,7 +25,7 @@ class build_bluetooth: if self.computer.wifi: if self.computer.wifi.chipset == device_probe.Broadcom.Chipsets.AirPortBrcm4360: print("- Fixing Legacy Bluetooth for macOS Monterey") - self.enable_kext("BlueToolFixup.kext", self.constants.bluetool_version, self.constants.bluetool_path) + support.build_support(self.model, self.constants, self.config).enable_kext("BlueToolFixup.kext", self.constants.bluetool_version, self.constants.bluetool_path) elif self.computer.bluetooth_chipset == "3rd Party Bluetooth 4.0 Hub": print("- Detected 3rd Party Chipset") support.build_support(self.model, self.constants, self.config).enable_kext("BlueToolFixup.kext", self.constants.bluetool_version, self.constants.bluetool_path) diff --git a/resources/build/graphics_audio.py b/resources/build/graphics_audio.py index 1c4e293da..a336bd793 100644 --- a/resources/build/graphics_audio.py +++ b/resources/build/graphics_audio.py @@ -19,6 +19,7 @@ class build_graphics_audio: def build(self): self.graphics_handling() + self.audio_handling() self.firmware_handling() def graphics_handling(self):