[Buildroot] Buildroot: enable lib/firmware/brcm for rpi0w

Andreas Ziegler br015 at umbiko.net
Wed Mar 24 06:37:23 UTC 2021


Hello Laurentiu-Cristian,

> Subject: [Buildroot] Buildroot: enable lib/firmware/brcm for rpi0w

> output/target/lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi-rpi.txt

The nvram file with 'raspberrypi' in its name is not present in the 
rpi-wifi-firmware blob; you need to create it yourself. As an example, 
this is what I use in a post-build script for a RPi4:

   ### create missing nvram file for Raspberry Pi 4
   _TARGET_DIR="${TARGET_DIR}/lib/firmware"
   src_file=brcm/brcmfmac43455-sdio.txt
   dst_file=brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt
   if [ -f ${_TARGET_DIR}/${src_file} ] && ! [ -h 
${_TARGET_DIR}/${dst_file} ]; then
	ln -rs ${_TARGET_DIR}/${src_file} ${_TARGET_DIR}/${dst_file}
   fi

Kind regards,
Andreas



More information about the buildroot mailing list