Fix Bluetooth kext selection

This commit is contained in:
Hoang Hong Quan
2025-11-20 23:11:15 +07:00
parent 6bb6863b7a
commit e202a1b0d5
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,6 @@ BluetoothIDs = AtherosBluetoothIDs + BroadcomBluetoothIDs + IntelBluetoothIDs +
"05AC-8294",
"05AC-8296",
"05AC-F007",
"0A12-0001",
"0A5C-217D",
"0A5C-22BE",
"0A5C-640A",
@@ -231,6 +230,7 @@ BluetoothIDs = AtherosBluetoothIDs + BroadcomBluetoothIDs + IntelBluetoothIDs +
"2B54-5602",
"33BA-03E8",
"33BA-03E9",
"0A12-0001",
]
InputIDs = [

View File

@@ -349,7 +349,7 @@ class KextMaestro:
selected_kexts.append("BrcmFirmwareData")
elif usb_id in pci_data.IntelBluetoothIDs:
selected_kexts.append("IntelBTPatcher")
elif usb_id in pci_data.BluetoothIDs:
elif usb_id in pci_data.BluetoothIDs[-1]:
selected_kexts.append("BlueToolFixup")
if "Laptop" in hardware_report.get("Motherboard").get("Platform"):