Last active
July 23, 2018 21:15
-
-
Save ishrakr/5000e4e1f1b88bf8d0069a7428c940ad to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Method 1 | |
sudo nano /etc/modprobe.d/raspi-blacklist.conf | |
#wifi | |
blacklist brcmfmac | |
blacklist brcmutil | |
#bt | |
blacklist btbcm | |
blacklist hci_uart | |
// Method 2 | |
sudo nano /boot/config.txt | |
# Disable wifi and bt | |
dtoverlay=pi3-disable-wifi | |
dtoverlay=pi3-disable-bt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment