Versions Compared

Key

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

...

Deck of Cards
effectDuration2
idmain1
effectTypeslide


Card
defaulttrue
labelYocto 3.1 LTS (Dunfell)
titleinstruction to setup dunfell based RDK-V yocto build
effectTypeslide


Code Block
languagebash
themeRDark
titleworkspace setup
mkdir workspace; cd workspace
 
# initialize the manifest with repo tool
repo init -u https://code.rdkcentral.com/r/reference/manifests -b master -m rpi/release/rdkv-dunfell-21m2.xml
 
repo sync -j `nproc` --no-clone-bundle --no-tags


Code Block
languagebash
titleworkspace setupbug fixes
cd meta-rdk-video
# revert cryptography related changes in wpeframework-clientlibraries (causing build error)
git revert 5cfd49b6e1a56540c1bbf9caada22cdb9097e0e2
cd ..



Card
labelYocto 2.2 (Morty)
titleinstruction to setup morty based RDK-V yocto build
effectTypeslide


Code Block
languagebash
themeRDark
titleworkspace setup
mkdir workspace; cd workspace
 
# initialize the manifest with repo tool
repo init -u https://code.rdkcentral.com/r/reference/manifests -b master -m rpi/release/rdkv-morty-21m2.xml
 
repo sync -j `nproc` --no-clone-bundle --no-tags



...

Deck of Cards
effectDuration2
idflashprocedure
effectTypeslide


Card
defaulttrue
labelYocto 3.1 LTS (Dunfell)
titleinstruction to flash the RDK RPi image on micro SD card
effectTypeslide


Code Block
languagebash
themeRDark
# of - output file (the device file for the inserted micro SD card
bzcat <IMAGE_NAME>-<MACHINE>.wic.bz2 | sudo dd of=/dev/<sd_file> bs=4M iflag=fullblock oflag=direct conv=fsync
# eg. bzcat rdk-generic-mediaclient-wpe-image-raspberrypi-rdk-mc.wic.bz2 | sudo dd of=/dev/sdc bs=4M iflag=fullblock oflag=direct conv=fsync



true
Card
default
labelYocto 2.2 (Morty)
titleinstruction to flash the RDK RPi image on micro SD card
effectTypeslide


Code Block
languagebash
themeRDark
# Insert the micro SD card and mention the card's device file name
# input file (if) is the image file to flash and the output file (of) is the card's device file name
sudo dd if=<IMAGE_NAME>-<MACHINE>.rpi-sdimg of=/dev/<sd_file> bs=4M
# Eg. sudo dd if=rdk-generic-mediaclient-wpe-image-raspberrypi-rdk-mc.rpi-sdimg of=/dev/sdc bs=4M



...