Versions Compared

Key

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

...

$ mkdir <workspace dir> ###GUIDELINE: Make sure "$ readlink -f  <workspace dir>" is not exceeding 60 characters to avert potential build issue with python3-kconfig

$ cd <workspace dir>

#Execute either of below 2 repo init command

...

Note
  • Cloning the code before login once to code.rdkcentral.com, user would get the Authentication error, even though the account is in good standing and has all the required access.
  • Please login to code.rdkcentral.com before attempting to clone.


Building image with no external source

Code Block
repo init -u https://code.rdkcentral.com/r/manifests -m rdkb-turris-pod-

...

nosrc.xml -b rdk-next

...


repo sync -j4 --no-clone-bundle
MACHINE=turris-extender source meta-turris/setup-environment build-turris-ext
bitbake rdk-generic-extender-image


Building image with external source

Code Block
repo init -u 

(or)

...

https://code.rdkcentral.com/r/manifests -m rdkb-turris-pod-

...

extsrc.xml -b rdk-next

...

Note
  • Cloning the code before login once to code.rdkcentral.com, user would get the Authentication error, even though the account is in good standing and has all the required access.
  • Please login to code.rdkcentral.com before attempting to clone.

...


repo sync -j4 --no-clone-bundle

...


MACHINE=turris-extender source meta-turris/setup-environment build-turris-ext

...


bitbake rdk-generic-extender-image


Note. The kernel Image and root filesystem will be placed under <workspace dir>/build-turris-ext/tmp/deploy/images/turris-extender directory

...