Versions Compared

Key

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

Host Setup

NOTE: Observing fetch errors in VMs with Ubuntu14.x. Thus, suggesting to use VMs with Ubuntu16.x or higher.

Repo Configuration

In order to use Yocto build system, the repo tool must be properly installed on the machine.

To install Repo make sure you have a /bin directory in your home directory and that it is included in your path

Code Block
languagebash
themeDJango
mkdir ~/bin

PATH=~/bin:$PATH

curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

chmod a+x ~/bin/repo

Note: it is also recommended to put credentials in ~/.netrc when interacting with repo.

A sample ~/.netrc file is illustrated below

Code Block
languagebash
themeDJango
machine code.rdkcentral.com login YOUR_USERNAME password YOUR_PASSWORD


Building

Note: Cloning the code before login once to code.rdkcentral.com, user would get the Authentication error, even though the account is in good standing and has all the required access. Please login to code.rdkcentral.com before attempting to clone.

To build, follow below instructions

Create workspace directory

Code Block
languagebash
themeDJango
mkdir <workspace dir>
cd <workspace dir>
Info

OpenSync backhaul credential

Please get patch(service.patch) for meta-turris layer from Plume to apply backhaul credential(SSID:PSK). Please check Cloud Access Guide for more details.


Follow below instructions,

Code Block
languagebash
themeDJango
repo init -u https://code.rdkcentral.com/r/reference/manifests -m rpi-tags/rpi4_rdkb_extender_dunfell_4Oct21.xml -b master

repo sync -j4 --no-clone-bundle

MACHINE=raspberrypi4-rdk-extender source meta-cmf-raspberrypi/setup-environment

bitbake rdk-generic-extender-image

Note. The kernel Image and root filesystem will be placed under <workspace dir>/build-*/tmp/deploy/images/*extender/ directory

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
languagebash
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-extender-image-raspberrypi4-rdk-extender.wic.bz2
$ sudo -E bmaptool copy --nobmap rdk-generic-extender-image-raspberrypi4-rdk-extender.wic /dev/sdb