Versions Compared

Key

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

...

Code Block
languagebash
themeDJango
mkdir <workspace dir>

cd <workspace dir>

repo init -u https://code.rdkcentral.com/r/rdkcmf/manifests/ -m rdkc-extsrc.xml -b rdkc-2022q42023q1-dunfell   
repo sync -j `nproc` --no-clone-bundle --no-tags

...

  • The -m rdkc-extsrc.xml in the sequence above is important. If this is not specified, you will get an RDK-V tree by default.
  • There is also a nosrc manifest rdkc-nosrc.xml which can be used instead of extsrc
  • The -b rdkc-2022q42023q1-dunfell in the build sequence above specifies the branch to use.
  • If you omit the -b rdkc-2022q42023q1-dunfell entirely, you will get the HEAD of each component

...

Code Block
languagebash
themeDJango
mkdir <workspace dir>

cd <workspace dir>

repo init -u https://code.rdkcentral.com/r/rdkcmf/manifests/ -m rdkc-extsrc.xml -b rdkc-2022q42023q4-dunfell   
repo sync -j `nproc` --no-clone-bundle --no-tags  

MACHINE=raspberrypi0-rdk-camera source meta-cmf-raspberrypi/setup-environment

bitbake rdk-generic-camera-image

# To build TDK image
$ bitbake rdk-generic-camera-tdk-image

...

Code Block
languagebash
themeDJango
mkdir <workspace dir>

cd <workspace dir>

repo init -u https://code.rdkcentral.com/r/rdkcmf/manifests/ -m rdkc-extsrc.xml -b rdkc-2022q42023q1-dunfell   
repo sync -j `nproc` --no-clone-bundle --no-tags  

MACHINE=raspberrypi3-rdk-camera source meta-cmf-raspberrypi/setup-environment

bitbake rdk-generic-camera-image

# To build TDK image
$ bitbake rdk-generic-camera-tdk-image

...