Draft Funtoo Install on RPI/Stage3 Install

From Funtoo
< Draft Funtoo Install on RPI
Revision as of 19:50, February 9, 2019 by D4g33z (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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