RDK Resources
[*RDK Preferred*]
Code Management Facility
RDK Forums
[RDK Conferences]
RDK Support
Archives
Papers & Presentations Archive
Raspberry Pi series are low cost credit card sized single board computers. The Raspberry Pi models feature a Broadcom SoC that includes an ARM CPU and an on chip graphics-processing unit (GPU). Raspberry Pi uses SD card that facilitates users to swap out different versions of the operating system or software updates, hence, speeding the development and testing process. This is a great way to develop new applications/software and show these to customers in remote locations or at trade shows.
The equipment listed below is required for complete functionality of the standalone environment. The only devices that are tested to work properly in this solution are the specific brands and models listed below. Support for other types of equipment is not available at this time.
For Repo setup refer below link.
How to Build#SettinguptheHostEnvironment
To build, follow below instructions
Build Steps
$ mkdir <workspace dir> $ cd <workspace dir> $ repo init -u https://code.rdkcentral.com/r/manifests -b rdk-next -m manifest.xml $ repo sync -j4 --no-clone-bundle $ source meta-cmf-raspberrypi/setup-environment (Select option raspberrypi-rdk-broadband.conf) $ bitbake <image>
Note: RPI-3 B and B+ have same Build instructions and testing procedure
Following command can be used to flash the RPI image to sd card using linux machine . dd tool should be available in linux
sudo dd if=<path to ImageName.rpi-sdimg> of=<path to SD card space> bs=4M Example: $ sudo dd if=rdk-generic-broadband-image-raspberrypi-rdk-broadband.rpi-sdimg of=/dev/sdb bs=4M
https://www.balena.io/etcher/ can be used to flash RPI image in sd card using windows