Last active
March 10, 2023 19:54
-
-
Save Baael/723f72c6c6d74615c70784f6044aa020 to your computer and use it in GitHub Desktop.
Fix debian bluetooth not finding devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L https://raw.githubusercontent.com/Realtek-OpenSource/android_hardware_realtek/rtk1395/bt/rtkbt/Firmware/BT/rtl8761b_config -o /tmp/rtl8761bu_config.bin | |
curl -L https://raw.githubusercontent.com/Realtek-OpenSource/android_hardware_realtek/rtk1395/bt/rtkbt/Firmware/BT/rtl8761b_fw -o /tmp/rtl8761bu_fw.bin | |
mkdir /lib/firmware/rtl_bt | |
mv /tmp/rtl8761bu_config.bin /lib/firmware/rtl_bt/rtl8761bu_config.bin | |
mv /tmp/rtl8761bu_fw.bin /lib/firmware/rtl_bt/rtl8761bu_fw.bin | |
rmmod btusb | |
modprobe btusb | |
bluetoothctl | |
scan on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment