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

From Funtoo
Jump to navigation Jump to search
(Created page with "== Install the Stage 3 Tarball == Download the current Funtoo stage 3 build appropriate for your Raspberry Pi device. Check the Raspberry_Pi_(Version_3) page, to see the...")
(No difference)

Revision as of 19:50, February 9, 2019

Install the Stage 3 Tarball

Download the current Funtoo stage 3 build appropriate for your Raspberry Pi device. Check the Raspberry_Pi_(Version_3) page, to see the version available for versions 3 of the Pi. Here we download the version for version 3 by setting the STAGE_URL variable in our configuration file.~

We need to save the archive to $STAGE3_ARCHIVE and unpack it to $SYSROOT. Back up or remove any previous work in that local.

root # export SYSROOT=$SYSROOT_WORK/$CHOST
root # export STAGE3_ARCHIVE=/tmp/stage3-latest.tar.xz
root # mv -n $SYSROOT $SYSROOT.old
root # mkdir -p $SYSROOT
root # wget ${STAGE_URL} -O ${STAGE3_ARCHIVE}
root # tar xpfv ${STAGE3_ARCHIVE} -C ${SYSROOT}


Next: Install the Firmware