OpenEmbedded is a software framework to create Linux distributions aimed for, but not restricted to, embedded devices.
Questions tagged [openembedded]
514 questions
0
votes
1 answer
Why is a -dev package not added to Yocto image packagelist
I've added a -dev package to my IMAGE_INSTALL variable in my target BitBake recipe:
IMAGE_INSTALL = " \
...
catkin \
catkin-dev \
...
"
After bitbake , this package is in my package feed:
$ find . -name…

karobar
- 1,250
- 8
- 30
- 61
0
votes
2 answers
Installing python-twisted on yocto
I have successfully built the yocto core-image-sato and that went well. Now I am trying to add a recipe to the build. I want to install python-twisted, but am failing miserably.
I found that python-twisted doesn't seem to be available in yocto,…

Dave
- 1,326
- 2
- 11
- 22
0
votes
3 answers
Compile rygel for yocto with plugins
I'm using bitbake to compile rygel for yocto from the meta-openembedded layer, with the plugins mpris and gst-launch.
As per the PACKAGECONFIG docs, I created a bbappend file and added the following:
EXTRA_OECONF = "--disable-introspection \
…

snazzybucket
- 181
- 2
- 8
0
votes
1 answer
Options in bitbake to link files to the boot partition
I have a bitbake configuration that generates two partitions, the BOOT (FAT) partition containing uBoot, uEnv.txt, etc. and a root file system that gets mounted read-only. There may be instances where the filesystem isn't a separate partition, but…

Thomas
- 439
- 4
- 21
0
votes
2 answers
How do I add python-contextlib to python_2.7.3.bbappend?
In my custom-layer/recipes-devtools/python/python_2.7.3.bbappend, I have the following contents
PROVIDES+="${PN}-contextlib "
PACKAGES+="${PN}-contextlib "
SUMMARY_${PN}-contextlib="Python utilities for…

neowulf33
- 635
- 2
- 7
- 19
0
votes
1 answer
BitBake override style removal with variable expansion
I face a problem that I tried to use the BitBake override style removal with variable expansion.
I have a foo.bb and set FOO_PACKAGES = "${PN}_dummy"
And I use a foo.bbappend to remove it by FOO_PACKAGES_remove = "${PN}_dummy"
This doesn't…

Shuangistan
- 1,053
- 8
- 20
0
votes
3 answers
BitBake: example not found in the base feeds
I have a BitBake recipe (example_0.1.bb) with a do_install task where I attempt to install a .so file:
do_install() {
install -d ${D}${libdir}
install -m 0644 ${S}/example.so ${D}${libdir}
}
FILES_${PN} += "${libdir}/example.so"
This fails…

karobar
- 1,250
- 8
- 30
- 61
0
votes
1 answer
Why does my BitBake autotools recipe fail during do_configure?
I am attempting to create a fairly simple BitBake recipe that uses autotools, which you can see here:
SUMMARY = "an example autotools recipe"
LICENSE = "MIT"
LIC_FILES_CHKSUM =…

karobar
- 1,250
- 8
- 30
- 61
0
votes
1 answer
building linux with openembedded
I'am working on a project to build a Linux distribution with openembedded for the ARM, so I get bitbake and openembedded files and I set the variables BBPATH to bb files and path to bitbake and I run this command:
bitbake…

Otmane Chiboub
- 1
- 3
0
votes
2 answers
Bitbake git version and cmake
I have my nice recipe that fetch from a git repository the master.
I have configured my sources and cmake as in this guide: http://brianmilco.blogspot.it/2012/11/cmake-automatically-use-git-tags-as.html
and the objective is to have printed the git…

andyinno
- 1,021
- 2
- 9
- 24
0
votes
1 answer
as: unrecognized option '-meabi=5' due to incomplete pack of cross-compiler?
The workbench OS is Ubuntu12.04 x64.
Build cross-compiler.
mkdir app_devkit; cd app_devkit
repo init -u git://codeaurora.org/quic/le/manifest.git -b release -m LNX.LE.5.1-66056-9x40.xm
repo sync
cd oe-core; . build/conf/set_bb_env.sh
bitbake…

Yulin Huang
- 73
- 7
0
votes
1 answer
do_rootfs failed while installing gstreamer-1.0 packages
I am facing do_rootfs failed while I am installing the package using yocto in final image. Tried options like INHIBIT_PACKAGE_STRIP but to of no use.
How can I force do_rootfs to execute is there any option.

Mayank Agarwal
- 447
- 1
- 7
- 21
0
votes
1 answer
Error while running poky-qemu: version `GLIBC_2.17' not found. How to solve this?
I am using 32Bit Ubuntu 14.04, where newest version of libc6 is already installed. When I run 'poky-qemu qemuppc zImage-2.6.37-qemuppc-1.0.bin yocto-image-lsb-sdk-qemuppc-1.0.rootfs.ext3', I am getting following error:
…

Nitinkumar Ambekar
- 969
- 20
- 39
0
votes
2 answers
Issues with bitbake for building Angstrom
The issue I'm having is that I'm trying to build an Angstrom image from scratch using bitbake (since Angstrom is now Yocto Compatible) but I've run into an error the moment I run the bitbake systemd-image
Traceback (most recent call last):
File…

jobenas
- 13
- 4
0
votes
1 answer
OpenEmbedded - determine which packages changed
I am working with OpenEmbedded (Daisy) and trying to come up with a way to create a tarball of just the packages that have changed between two versions of a build. Is there a straight forward way to determine which packages have been rebuilt between…

Kevin
- 11
- 2