Fix Bluetooth on T2 Macs by loading hci_bcm4377 module (#5145)

This commit is contained in:
Federico Sapuppo
2026-04-01 17:58:07 +02:00
committed by GitHub
parent 54679f647a
commit 7c13bd5801
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@ if lspci -nn | grep -q "106b:180[12]"; then
sudo systemctl enable tiny-dfr.service
echo "apple-bce" | sudo tee /etc/modules-load.d/t2.conf >/dev/null
echo "hci_bcm4377" | sudo tee -a /etc/modules-load.d/t2.conf >/dev/null
echo "MODULES+=(apple-bce usbhid hid_apple hid_generic xhci_pci xhci_hcd)" | sudo tee /etc/mkinitcpio.conf.d/apple-t2.conf >/dev/null
+7
View File
@@ -0,0 +1,7 @@
echo "Load Bluetooth driver module on T2 Macs"
if lspci -nn | grep -q "106b:180[12]"; then
if ! grep -q "hci_bcm4377" /etc/modules-load.d/t2.conf 2>/dev/null; then
echo "hci_bcm4377" | sudo tee -a /etc/modules-load.d/t2.conf >/dev/null
fi
fi