Difference between revisions of "Getting started with AI on NXP i.MX8M Plus/Introduction/Quick getting started/Yocto minimal image"

From RidgeRun Developer Connection
Jump to: navigation, search
(Created page with "== Downloading and downloading Gatesgarth == Let's suppose we are working in '''$HOME''' as the root directory for this process. So, move into that directory and create fold...")
 
Line 4: Line 4:
  
 
So, move into that directory and create folder in which the download will be performed:
 
So, move into that directory and create folder in which the download will be performed:
 
  
 
<syntaxhighlight lang='bash'>
 
<syntaxhighlight lang='bash'>
Line 11: Line 10:
 
cd imx8-yocto-variscite
 
cd imx8-yocto-variscite
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
Initialize the repository using '''repo''' installed before:
 +
 +
<syntaxhighlight lang='bash'>
 +
repo init -u https://github.com/varigit/variscite-bsp-platform.git -b fsl-gatesgarth -m imx-5.10.9-1.0.0-var01.xml
 +
</syntaxhighlight>
 +
 +
Synchronize the local repo with the remote one:
 +
 +
<syntaxhighlight lang='bash'>
 +
repo sync
 +
</syntaxhighlight>
 +
 +
  
 
<syntaxhighlight lang='bash'>
 
<syntaxhighlight lang='bash'>
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 16:44, 21 November 2021

Downloading and downloading Gatesgarth

Let's suppose we are working in $HOME as the root directory for this process.

So, move into that directory and create folder in which the download will be performed:

cd $HOME
mkdir imx8-yocto-variscite
cd imx8-yocto-variscite

Initialize the repository using repo installed before:

repo init -u https://github.com/varigit/variscite-bsp-platform.git -b fsl-gatesgarth -m imx-5.10.9-1.0.0-var01.xml

Synchronize the local repo with the remote one:

repo sync