Versions Compared

Key

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

...

Deck of Cards
effectDuration2
idmain1
effectTypeslide


Card
defaulttrue
labelGeneral build
titlefor Generic image build with or without TDK


Code Block
languagebash
themeRDark
titleGeneric build
mkdir workspace
cd workspace

# initialize the manifest with repo tool
repo init -u https://code.rdkcentral.com/r/manifests -b rdk-next -m rdkv-nosrc.xml

repo sync -j `nproc` --no-clone-bundle --no-tags



Card
labelBuild with external source
titleGeneric image build where all RDK component's sources will be available externally


Code Block
languagebash
themeRDark
titlegeneric build with external source
mkdir workspace
cd workspace

# initialize the manifest with repo tool
repo init -u https://code.rdkcentral.com/r/manifests -b rdk-next -m rdkv-extsrc.xml

repo sync -j `nproc` --no-clone-bundle --no-tags



Card
labelBuild from development branch
titlefor Generic image build on development branch

To build the image from the development branch, the respective sprint month's development branch to be chosen and follow the below build procedure

For example, to take the development branch of September 2020, the rdk-dev-2009 branch to be used

Code Block
languagebash
themeRDark
titleGeneric build from development branch
mkdir workspace
cd workspace

# initialize the manifest with repo tool
repo init -u https://code.rdkcentral.com/r/manifests -b rdk-dev-2009 -m rdkv-nosrc.xml

repo sync -j `nproc` --no-clone-bundle --no-tags



Code Block
languagebash
titleapply bug fixes
# REFPLTV-723: fix for org.rdk.Wifi.1.saveSSID proper result
git clone http://code.rdkcentral.com/r/rdk/components/generic/netsrvmgr -b rdk-next rdk/components/generic/netsrvmgr
(cd rdk/components/generic/netsrvmgr; git fetch "https://code.rdkcentral.com/r/rdk/components/generic/netsrvmgr" refs/changes/93/50893/1 && git cherry-pick FETCH_HEAD)


Image build

Link to check possible RDK images on RPi - https://code.rdkcentral.com/r/plugins/gitiles/components/generic/rdk-oe/meta-cmf-raspberrypi/+/refs/heads/rdk-next/recipes-core/images/

...