mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
8 lines
251 B
Bash
8 lines
251 B
Bash
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
|