Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to use Yocto build system, first you need to make sure ensure that repo is properly installed on the machine:

Code Block
languagebash
themeRDark
# create a bin directory
mkdir ~/bin
export PATH=~/bin:$PATH

# Download the repo tool and ensure that it is executable
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo


Configure Credentials

it It is recommended to put credentials in a ~/.netrc

Code Block
languagebash
themeRDark
# RDK Central Github
machine github.com
    login <Public GitHub userID>UserID>
    password <PAT>

# RDK Central Gerrit
machine code.rdkcentral.com
    login <RDK <rdkcentralCentral ssoSSO email address>
    password <PAT> 

...