# Create your workspace
$ mkdir my_yocto && cd my_yocto
## Clone Git repos
# The build system
$ git clone -b thud git://git.yoctoproject.org/poky && cd poky
# Specific meta for Raspberry Pi boards
$ git clone -b thud git://git.yoctoproject.org/meta-raspberrypi
# Create your workspace
$ mkdir my_yocto && cd my_yocto
## Clone Git repos
# The build system
$ git clone -b thud git://git.yoctoproject.org/poky && cd poky
# Specific meta for Raspberry Pi boards
$ git clone -b thud git://git.yoctoproject.org/meta-raspberrypi
Setup the environment
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# Setup the yocto environnement by sourcing the oe init script
$ . oe-init-build-env ../build
# Setup the yocto environnement by sourcing the oe init script
$ . oe-init-build-env ../build
# Setup the yocto environnement by sourcing the oe init script
$ . oe-init-build-env ../build
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
You had no conf/local.conf file. This configuration file has therefore been
created for you with some default values. You may wish to edit it to, for
example, select a different MACHINE (target hardware). See conf/local.conf
for more information as common configuration options are commented.
You had no conf/bblayers.conf file. This configuration file has therefore been
created for you with some default values. To add additional metadata layers
into your configuration please add entries to conf/bblayers.conf.
The Yocto Project has extensive documentation about OE including a reference
manual which can be found at:
http://yoctoproject.org/documentation
For more information about OpenEmbedded see their website:
http://www.openembedded.org/
### Shell environment set up for builds. ###
You can now run 'bitbake <target>'
Common targets are:
core-image-minimal
core-image-sato
meta-toolchain
meta-ide-support
You had no conf/local.conf file. This configuration file has therefore been
created for you with some default values. You may wish to edit it to, for
example, select a different MACHINE (target hardware). See conf/local.conf
for more information as common configuration options are commented.
You had no conf/bblayers.conf file. This configuration file has therefore been
created for you with some default values. To add additional metadata layers
into your configuration please add entries to conf/bblayers.conf.
The Yocto Project has extensive documentation about OE including a reference
manual which can be found at:
http://yoctoproject.org/documentation
For more information about OpenEmbedded see their website:
http://www.openembedded.org/
### Shell environment set up for builds. ###
You can now run 'bitbake <target>'
Common targets are:
core-image-minimal
core-image-sato
meta-toolchain
meta-ide-support
You had no conf/local.conf file. This configuration file has therefore been
created for you with some default values. You may wish to edit it to, for
example, select a different MACHINE (target hardware). See conf/local.conf
for more information as common configuration options are commented.
You had no conf/bblayers.conf file. This configuration file has therefore been
created for you with some default values. To add additional metadata layers
into your configuration please add entries to conf/bblayers.conf.
The Yocto Project has extensive documentation about OE including a reference
manual which can be found at:
http://yoctoproject.org/documentation
For more information about OpenEmbedded see their website:
http://www.openembedded.org/
### Shell environment set up for builds. ###
You can now run 'bitbake <target>'
Common targets are:
core-image-minimal
core-image-sato
meta-toolchain
meta-ide-support
Add specific Meta
Before going further, the meta “Raspberry Pi” has to be declared into the build system of Yocto. Indeed, additional metas are not recognized automatically. To do so, edit the conf/bblayers file as the following.
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ vim build/conf/bblayers.conf
$ vim build/conf/bblayers.conf
$ vim build/conf/bblayers.conf
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
Then, the last but most cool Yocto step is to choose the target machine. Raspberry Pi are ashamedly not mentioned among default machine choices because it comes from the meta-raspberrypi, so it must be added manually as showed below. All possible machines are available into “my_yocto/poky/meta-raspberrypi/conf/machine/”
Raspberry Pi machines
Model
SOC version
raspberrypi0
Raspberry Pi Zero v1.3
BCM2835
raspberrypi0-wifi
Raspberry Pi Zero Wireless
BCM2835
raspberrypi2
Raspberry Pi 2 (model B)
BCM2836
raspberrypi3-64
Raspberry Pi 3 64 bits (model B)
BCM2837
raspberrypi3
Raspberry Pi 3 (model B)
BCM2837
raspberrypi-cm3
Raspberry Pi Compute module 3
BCM2837
raspberrypi-cm
Raspberry Pi Compute module 1
BCM2835
raspberrypi
?
?
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ vim build/conf/local.conf
$ vim build/conf/local.conf
$ vim build/conf/local.conf
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
[...]
# This sets the default machine to be qemux86 if no other machine is selected:
#MACHINE ??= "qemux86"
MACHINE ??= "raspberrypi3"
[...]
[...]
# This sets the default machine to be qemux86 if no other machine is selected:
#MACHINE ??= "qemux86"
MACHINE ??= "raspberrypi3"
[...]
[...]
# This sets the default machine to be qemux86 if no other machine is selected:
#MACHINE ??= "qemux86"
MACHINE ??= "raspberrypi3"
[...]
After following above steps i getting following errors.
wpa-supplicant.cortexa7t2hf_neon_vfpv4 2.6-r0
Error: Transaction failed
ERROR: core-image-base-1.0-r0 do_rootfs: Function failed: do_rootfs
ERROR: Logfile of failure stored in: /home/RPi3/Try2/poky/build/tmp/work/raspberrypi3-poky-linux-gnueabi/core-image-base/1.0-r0/temp/log.do_rootfs.13469
ERROR: Task (/home/RPi3/Try2/poky/meta/recipes-core/images/core-image-base.bb:do_rootfs) failed with exit code ‘1’
NOTE: Tasks Summary: Attempted 3401 tasks of which 3180 didn’t need to be rerun and 1 failed.
Summary: 1 task failed:
/home/RPi3/Try2/poky/meta/recipes-core/images/core-image-base.bb:do_rootfs
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
AntonioBanderas
· July 11, 2019 at 8:51 am
The build was successful, but how do I copy/run it on my Raspberry PI?
How to build a Yocto image for the Raspberry Pi running Azure IoT Edge – Kevin Saye
· June 21, 2019 at 12:37 am
Please find below a collection of lesson, training and other technical documents that could helps if you want to develop embedded projects with Yocto. Yocto project https://www.yoctoproject.org/learn/ Bootlin https://bootlin.com/doc/training/yocto/ https://github.com/bootlin/training-materials/ Linux.com https://www.linux.com/topic/embedded-iot/real-world-build-tips-yocto/ Witekio https://witekio.com/blog/embedded-linux-demystified-3/ Codecubix Read more…
Hardware WS2812B RGB 5v individually addressable LED Strip (144 pixels / m. enclosed into a silicone waterproof case IP67) Control board : Raspberry Pi Zero 1.3 Battery : Turnigy Li-Po, 2200 mAh, 3S, 11.1 V, Read more…
3 Comments
pkrishna12@gmail.com · June 1, 2019 at 6:42 am
After following above steps i getting following errors.
wpa-supplicant.cortexa7t2hf_neon_vfpv4 2.6-r0
Error: Transaction failed
ERROR: core-image-base-1.0-r0 do_rootfs: Function failed: do_rootfs
ERROR: Logfile of failure stored in: /home/RPi3/Try2/poky/build/tmp/work/raspberrypi3-poky-linux-gnueabi/core-image-base/1.0-r0/temp/log.do_rootfs.13469
ERROR: Task (/home/RPi3/Try2/poky/meta/recipes-core/images/core-image-base.bb:do_rootfs) failed with exit code ‘1’
NOTE: Tasks Summary: Attempted 3401 tasks of which 3180 didn’t need to be rerun and 1 failed.
Summary: 1 task failed:
/home/RPi3/Try2/poky/meta/recipes-core/images/core-image-base.bb:do_rootfs
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
AntonioBanderas · July 11, 2019 at 8:51 am
The build was successful, but how do I copy/run it on my Raspberry PI?
How to build a Yocto image for the Raspberry Pi running Azure IoT Edge – Kevin Saye · June 21, 2019 at 12:37 am
[…] https://www.codecubix.eu/linux/linux-yocto-on-raspberry-pi/ […]