Versions Compared

Key

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

...

Code Block
languagebash
themeRDark
titlebuild setup
repo init -u https://code.rdkcentral.com/r/manifests -b dunfell -m rdkv-nosrc.xml
repo sync -j `nproc` --no-clone-bundle --no-tags
Code Block
languagebash
titleapply bug fixes
# revert cryptography related changes in wpeframework-clientlibraries (causing build error)
(cd meta-rdk-video; git revert 5cfd49b6e1a56540c1bbf9caada22cdb9097e0e2 --no-edit)

Note: The above bug fixes changes are temporary given as instructions. This is not required once the change is get merged into the appropriate repo

Image Build

Deck of Cards
idframe


Card
defaulttrue
labelMedia Client
titleInstruction to build mediaclient image


Code Block
languagebash
themeRDark
titleimage build
MACHINE=raspberrypi-rdk-mc source meta-cmf-raspberrypi/setup-environment
bitbake rdk-generic-mediaclient-wpe-image



Card
labelHybrid Gateway
titleInstruction to build hybrid gateway image


Code Block
languagebash
themeRDark
titleimage build
MACHINE=raspberrypi-rdk-hybrid source meta-cmf-raspberrypi/setup-environment
bitbake rdk-generic-hybrid-wpe-image



Card
labelHybrid Gateway with Operator Ref. App.
titleInstruction to build hybrid gateway image with Operator Reference Application


Code Block
languagebash
themeRDark
titleimage build
MACHINE=raspberrypirdkhybrefapp source meta-cmf-raspberrypi/setup-environment
bitbake rdk-generic-hybrid-refapp-image


The generated image resides under the directory build-<MACHINE>/tmp/deploy/images/<MACHINE> of the Yocto workspace

...