Versions Compared

Key

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

...

Code Block
languagec#
themeDJango
$ mkdir <workspace dir>
     
$ cd <workspace dir>


Follow below build instructions,

Deck of Cards
idRPI4 Gateway
Card
labelRPI4 Gateway
Code Block
languagec#
themeDJango
titleBuild Steps
$ repo init -u https://code.rdkcentral.com/r/manifests -b dunfell -m rdkb-extsrc.xml
$ repo sync -j`nproc` --no-clone-bundle
$ MACHINE=raspberrypi4-rdk-broadband source meta-cmf-raspberrypi/setup-environment
$ bitbake rdk-generic-broadband-image
Card
labelRPI4 Extender
Code Block
languagec#
themeDJango
titleBuild Steps
repo init -u https://code.rdkcentral.com/r/manifests -b dunfell -m rdkb-pod-extsrc.xml
repo sync -j4 --no-clone-bundle
MACHINE=raspberrypi4-rdk-extender source meta-cmf-raspberrypi/setup-environment
bitbake rdk-generic-extender-image

Flashing Procedure

Following command can be used to flash the RPI image to sd card using linux machine . bmap tool should be available in linux

Code Block
languagec#
themeDJango
bzip2 -d <path to ImageName.wic.bz2>
sudo -E bmaptool copy --nobmap <path to ImageName.wic> <path to SD card space>
 
Example:
 
$ bzip2 -d rdk-generic-broadband-image-raspberrypi-rdk-broadband.wic.bz2
$ sudo -E bmaptool copy --nobmap rdk-generic-broadband-image-raspberrypi-rdk-broadband.wic /dev/sdb

...