Rugged Board -A5D2x
Search…
Rugged Board -A5D2x
Contents
Download BSP and Documents
G1: Getting Started
RB-Quick Start Guide
Test all the RB interfaces in 10 mins in command Line
Example Program for Interfaces Using Python 3
G2: Programming Guide
Software Architecture on RB (Software Stack Diagram)
RB Interface/Bus Programming using MRAA
RB Peripherals programming using UPM
G3: How to Do?
Modbus on RB
RB as Tiny Web Server
MQTT Client on RB
SQL Lite DB
AWS Green Grass on RB
Microsoft Azure on RB
G4: Use Cases / Application Notes
Smart Energy Meter with AWS cloud
IoT Based solution for Plants Water monitoring
Weather Monitoring Stations
FAQ
G5: System development Guide
Advance Host setup
Flash a Bootable SD Card for Rugged board
Flash a NOR with Bootable SD Card For Rugged Board A5d2x
Flash the NOR using tftp For Rugged Board A5d2x
Yocto Compilation For Rugged Board A5d2x
Download the Toolchain for Rugged Board A5d2x
How to Add New Package in Yocto(root file system)
Generate the SDK(toolchain) using YOCTO
How to compile the U-Boot for Rugged Board A5d2x
How to compile the kernel for Rugged Board A5d2x
Powered By
GitBook
How to Add New Package in Yocto(root file system)
Objective:
This guide describes the adding the any new package in yocto(in rootfs) for
Rugged Board A5d2x
.
Materials:
Hardware:
Rugged Board A5d2x
Software:
ubuntu OS
Procedure:
Step 1: To
setup the yocto in your PC follow this link
. After running the bitbake environment, go to the conf/local.conf file and follow as below.
1
yocto_rba5d2x$
source
sources/poky/oe-init-build-env
2
yocto_rba5d2x/build$
vi
conf/local.conf
Copied!
Step 2: Go to the end of the file and copy below line to add the package.
1
IMAGE_INSTALL_append
=
"mosquitto"
Copied!
Step 3: Save the file and compile using below command.
1
yocto_rba5d2x/build$ bitbake rb-sd-core-image-minimal
Copied!
Step 4: To add two/three packages in yocto edit the "conf/local.conf" file as below
1
IMAGE_INSTALL_append
=
"mosquitto tcpdump ftp"
Copied!
Step 5: After completion of compiling, go to below path to find the updated image(rootfs).
1
yocto_rba5d2x/build$
ls
tmp/deploy/images/rugged-board-a5d2x-sd1/
Copied!
​
​
G5: System development Guide - Previous
Download the Toolchain for Rugged Board A5d2x
Next - G5: System development Guide
Generate the SDK(toolchain) using YOCTO
Last modified
1yr ago
Copy link
Contents
Objective:
Materials:
Hardware:
Software:
Procedure: