Versions Compared

Key

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

...

Code Block
languagebash
$ cd meta-rdk-camera
$ git fetch https://code.rdkcentral.com/r/components/generic/rdk-oe/meta-rdk-camera refs/changes/99/66999/34 && git cherry-pick FETCH_HEAD

$ cd meta-cmf-camera
$ git fetch https://code.rdkcentral.com/r/components/generic/rdk-oe/meta-cmf-camera refs/changes/00/67000/4/5 && git cherry-pick FETCH_HEAD

$ cd meta-cmf-raspberrypi
$ git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmf-raspberrypi refs/changes/28/67928/3 && git cherry-pick FETCH_HEAD

$ cd meta-rdk-ext
$ git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-rdk-ext refs/changes/93/64693/3 && git cherry-pick FETCH_HEAD

...

Add the below compilation flag in bottom of the local.conf file

RMS_STREAM_WITHENABLE_PIPEWIRE = "1"

CVR_WITH_PIPEWIRE = "1"

Code Block
languagebash
$ vi conf/local.conf

RMS_STREAM_WITHENABLE_PIPEWIRE = "1"
CVR_WITH_PIPEWIRE = "1"
SUPPORT_PIPEWIRE = "1"

Building

Code Block
languagebash
$ bitbake rdk-generic-camera-image

...

Code Block
languagebash
$ cd tmp/work/cortexa7t2hf-neon-vfpv4-rdk-linux-gnueabi/pwstream/git-r0/git
$ git fetch https://code.rdkcentral.com/r/rdkc/components/opensource/pwstream refs/changes/26/67926/2 && git cherry-pick FETCH_HEAD

$ cd tmp/work/cortexa7t2hf-neon-vfpv4-rdk-linux-gnueabi/rms/git-r0/git
$ git fetch https://code.rdkcentral.com/r/rdkc/components/opensource/rms refs/changes/01/67001/23 && git cherry-pick FETCH_HEAD 

$ cd tmp/work/cortexa7t2hf-neon-vfpv4-rdk-linux-gnueabi/cvr/git-r0/git
$ git fetch https://code.rdkcentral.com/r/rdkc/components/opensource/cvr refs/changes/02/67002/12 && git cherry-pick FETCH_HEAD 

Flash Procedure

Code Block
languagebash
$ bzcat "Image Name" | sudo dd of="Device Name" bs=4M iflag=fullblock oflag=direct conv=fsync
 
Example:
bzcat rdk-generic-camera-image_default_20201127105606.rootfs.wic.bz2 | sudo dd of=/dev/sdc bs=4M iflag=fullblock oflag=direct conv=fsync