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

From Funtoo
Jump to navigation Jump to search
 
Line 15: Line 15:
}}
}}


 
Next: [[Draft_Funtoo_Install_on_RPI/Configure|Configure Your System]]
Next: [[Draft_Funtoo_Install_on_RPI/Firmware|Install the Firmware]]

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

Install the Stage 3 Tarball

Download the current Funtoo stage3 build appropriate for your Raspberry Pi device. Check the Subarches page, to see every architecture with a stage3 compiled for it. Here we download the version for the Raspberry Pi version 3, Funtoo realease 1.3.

We need to save the archive to $STAGE3_ARCHIVE and unpack it to $SYSROOT.

root # export $STAGE_URL=https://build.funtoo.org/1.3-release-std/arm-32bit/raspi3/stage3-latest.tar.xz
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: Configure Your System