build: Enable Audio and fix invocation

This commit is contained in:
Mykola Grymalyuk
2022-11-12 17:29:37 -07:00
parent 55061bc86d
commit f8e91feff4
2 changed files with 2 additions and 1 deletions

View File

@@ -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)

View File

@@ -19,6 +19,7 @@ class build_graphics_audio:
def build(self):
self.graphics_handling()
self.audio_handling()
self.firmware_handling()
def graphics_handling(self):