4

I am currently trying to setup a Raspberry Pi 3 Model B for my parents to use as a media center. I took an imagine of OSMC that I am using, but I want to disable certain features on boot, including the bluetooth.

I tried the firmware approach, but it doesn't seem to register. Is there a way to blacklist the bluetooth?

My firmware is up to date as of the time of this post.

Thanks in advance.

mandragoras
  • 51
  • 1
  • 1
  • 4

3 Answers3

3

Edit /boot/config.txt and append this:

# Disable internal BT
dtoverlay=pi3-disable-bt

Reboot.

2

To turn off wifi, rfkill block wifi; to turn it on, rfkill unblock wifi. For Bluetooth, rfkill block bluetooth and rfkill unblock bluetooth.

(I have not tried in OSMC.)

Milliways
  • 62,573
  • 32
  • 113
  • 225
1

To disable bluetooth you need to blacklist it in /etc/modprobe.d/raspi-blacklist.conf

# Disable bluetooth
blacklist btbcm
blacklist hci_uart

Currently, there is no way to blacklist it in the firmware. You can "disable" it in the firmware, but this has no effect on osmc or openELEC. I haven't tested it on other distributions.

mandragoras
  • 51
  • 1
  • 1
  • 4