Difference between revisions of "R-Car/Boards/M3NSK"
< R-Car
(→Build Yocto image) |
|||
Line 35: | Line 35: | ||
Switch to proper branches/commits | Switch to proper branches/commits | ||
<ol> | <ol> | ||
+ | <!-- | ||
<li> | <li> | ||
For Yocto v3.9.0 | For Yocto v3.9.0 | ||
Line 93: | Line 94: | ||
[if you use Kingfisher] | [if you use Kingfisher] | ||
cd $WORK/meta-rcar | cd $WORK/meta-rcar | ||
− | git checkout -b v3. | + | git checkout -b v3.19.0 remotes/origin/v3.19.0 |
</pre> | </pre> | ||
</li> | </li> | ||
+ | <li> | ||
+ | For Yocto v3.21.0 | ||
+ | <pre> | ||
+ | cd $WORK/poky | ||
+ | git checkout -b tmp 7e7ee662f5dea4d090293045f7498093322802cc | ||
+ | cd $WORK/meta-openembedded | ||
+ | git checkout -b tmp 352531015014d1957d6444d114f4451e241c4d23 | ||
+ | cd $WORK/meta-linaro | ||
+ | git checkout -b tmp 75dfb67bbb14a70cd47afda9726e2e1c76731885 | ||
+ | cd $WORK/meta-renesas | ||
+ | git checkout -b tmp ad3a8cfee5b6a6fab17cf1c6e5af851eaec75bd7 | ||
+ | [if you use Kingfisher] | ||
+ | cd $WORK/meta-rcar | ||
+ | git checkout -b v3.21.0 remotes/origin/v3.21.0 | ||
+ | </pre> | ||
+ | </li> | ||
+ | |||
</ol> | </ol> | ||
Line 133: | Line 151: | ||
</li> | </li> | ||
<li> | <li> | ||
− | For Yocto v3.19.0 | + | For Yocto v3.19.0, v3.21.0 |
<pre> | <pre> | ||
cp $WORK/meta-renesas/meta-rcar-gen3/docs/sample/conf/m3nulcb/poky-gcc/mmp/*.conf ./conf/ | cp $WORK/meta-renesas/meta-rcar-gen3/docs/sample/conf/m3nulcb/poky-gcc/mmp/*.conf ./conf/ |
Revision as of 20:56, 26 August 2019
Introduction
This is the Wiki for the Renesas R-Car Starter Kit Pro board(M3N).
Typename: RTP0RC77965SKBX010SA00
Quick Start How To
Build Yocto image
- Create a directory and switch to it
Warning! Yocto builds require a lot of disk space (up to 100 GB). Make sure you have got enough before starting the build.mkdir build cd build export WORK=`pwd`
- Clone basic Yocto layers:
cd $WORK git clone git://git.yoctoproject.org/poky git clone git://git.openembedded.org/meta-openembedded git clone git://git.linaro.org/openembedded/meta-linaro.git git clone git://github.com/renesas-rcar/meta-renesas git clone git://github.com/CogentEmbedded/meta-rcar.git
-
Switch to proper branches/commits