Difference between revisions of "Draft Funtoo Install on RPI/Firmware"

From Funtoo
Jump to navigation Jump to search
(Created page with "== Install the Firmware == Make your work directory and clone the official firmware repo into it. Copy the appropriate boot firmware files to the sysroot, along with the video...")
 
 
Line 13: Line 13:
}}
}}


Next: [[Draft_Funtoo_Install_on_RPI/Configure|Configure Your System]]
Next: [[Draft_Funtoo_Install_on_RPI/Kernel|Install Binary Kernel, Modules and dtbs]]

Latest revision as of 14:05, February 10, 2019

Install the Firmware

Make your work directory and clone the official firmware repo into it. Copy the appropriate boot firmware files to the sysroot, along with the video acceleration binaries. If you want to use the wireless networking function, you need the bcrm firmware as well.

root # mkdir -p ${KERNEL_WORK}
root # git clone --depth 1 git://github.com/raspberrypi/firmware/ ${KERNEL_WORK}/firmware
root # cp ${KERNEL_WORK}/firmware/boot/{bootcode.bin,fixup*.dat,start*.elf} ${SYSROOT}/boot
root # cp -r ${KERNEL_WORK}/firmware/hardfp/opt ${SYSROOT}
root # git clone --depth 1 https://github.com/RPi-Distro/firmware-nonfree ${KERNEL_WORK}/firmware-nonfree
root # git --git-dir=${KERNEL_WORK}/firmware-nonfree/.git --work-tree=${KERNEL_WORK}/firmware-nonfree pull origin
root # mkdir -p ${SYSROOT}/lib/firmware/brcm
root # cp -r ${KERNEL_WORK}/firmware-nonfree/brcm/brcmfmac43430-sdio.{bin,txt} ${SYSROOT}/lib/firmware/brcm

Next: Install Binary Kernel, Modules and dtbs