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...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Install the Stage 3 Tarball ==
== 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.~
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 {{c|$STAGE3_ARCHIVE}} and unpack it to {{c|$SYSROOT}}. Back up or remove any previous work in that local.
We need to save the archive to {{c|$STAGE3_ARCHIVE}} and unpack it to {{c|$SYSROOT}}.


{{console|body=
{{console|body=
###i## export $STAGE_URL=https://build.funtoo.org/1.3-release-std/arm-32bit/raspi3/stage3-latest.tar.xz
###i## export SYSROOT=$SYSROOT_WORK/$CHOST
###i## export SYSROOT=$SYSROOT_WORK/$CHOST
###i## export STAGE3_ARCHIVE=/tmp/stage3-latest.tar.xz
###i## export STAGE3_ARCHIVE=/tmp/stage3-latest.tar.xz
Line 14: 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