Last active
August 2, 2017 12:39
-
-
Save rhwood/9d4bd315bf6a183c057c156743646d48 to your computer and use it in GitHub Desktop.
CentOS 7 Raspberry Pi 3 Wireless Drivers
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
#!/bin/bash | |
curl --location https://github.com/raspberrypi/firmware/raw/master/boot/bcm2710-rpi-3-b.dtb > /boot/bcm2710-rpi-3-b.dtb | |
curl --location https://github.com/RPi-Distro/firmware-nonfree/raw/54bab3d6a6d43239c71d26464e6e10e5067ffea7/brcm80211/brcm/brcmfmac43430-sdio.bin > /usr/lib/firmware/brcm/brcmfmac43430-sdio.bin | |
curl --location https://github.com/RPi-Distro/firmware-nonfree/raw/54bab3d6a6d43239c71d26464e6e10e5067ffea7/brcm80211/brcm/brcmfmac43430-sdio.txt > /usr/lib/firmware/brcm/brcmfmac43430-sdio.txt | |
echo "Reboot to ensure the dtb is initialized and kernel knows about the hardware in place." | |
echo |
Tried these instructions , unfortunately did'nt worked for me, rather my rpi did not boot.
Here are the instructions that worked for me http://mylearning9.com/?p=24
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this...