Questions tagged [yocto-recipe]
213 questions
0
votes
0 answers
Boost Compilation Error while building Terragraph (they use Yocto Project)
I am very new to Yocto and trying to set up a Terragraph image based on the steps listed here:
https://github.com/terragraph/meta-terragraph but keep getting the error below when we bitbake the image:
ERROR: Task…

Stuti
- 1
0
votes
0 answers
What is the meaning of "v5.15/standard/base" v/s "v5.15/base"in yocto kernel bb files
I see a lot of files having strings in yocto bsp layer that lack explanation as to what those branches are about. I often see these kind of lines:
KBRANCH: ?= "v5.15/standard/base"
KBRANCH: ?= "v5.15/base"
While understand that the…

preetam
- 1,451
- 1
- 17
- 43
0
votes
0 answers
Adding default layers as dependencies to the yocto meta layer
I am trying to create a yocto custom bsp layer but I want to use the default layers within yocto-oe. This is not working at all.
LAYERDEPENDS_custom = "core"
LAYERDEPENDS_custom = "core python3"
#LAYERDEPENDS_custom = "core yocto yocto-bsp…

preetam
- 1,451
- 1
- 17
- 43
0
votes
0 answers
Confusion regarding BitBake error "Files/directories were installed but not shipped in any package"
I am new to Yocto and the BitBake "eco system".
In order to try and search for a solution to my probelm I went over the following, YET, as of my understanding, the symptom is similar (or identical) BUT the situation there is different:
First similar…

Guy Avraham
- 3,482
- 3
- 38
- 50
0
votes
0 answers
yocto warning base-passwd failed to fetch URL
WARNING: base-passwd-3.5.29-r0 do_fetch: Failed to fetch URL https://launchpad.net/debian/+archive/primary/+files/base-passwd_3.5.29.tar.gz, attempting MIRRORS if available
Poky's branch is kirkstone.
The content file is:
SUMMARY = "Base system…

Mario Palumbo
- 693
- 8
- 32
0
votes
0 answers
net-snmp build error: nothing provides net-snmp-client=5.8-r0 even with ALLOW_EMPTY_${PN}-mibs
I'm encountering an error while building net-snmp version 5.8 with the Yocto Project and OpenEmbedded build systems. Specifically, when I add the --disable-mibs flag to the EXTRA_OECONF variable in my bbappend file, I'm getting the following error…

zenitsu
- 1
0
votes
0 answers
Why am I getting a "variable key replaces original key" warning in my BitBake recipe?
Question:
I'm working with BitBake and encountering a warning message that says "variable key replaces original key." I have a .bb recipe file and a corresponding .bbappend file, where I define different values for the same variable. Here's an…

zenitsu
- 1
0
votes
2 answers
How do i create a yocto recipe for RedisTimeSeries?
I'm trying to create a yocto recipe for Redis Time Series but i'm struggling. The build system used by RedisTSDB is weird to say the least.
So far i have tried this:
SUMMARY = "Time Series data structure for Redis"
DESCRIPTION = "RedisTimeSeries is…

Toon Van Eyck
- 69
- 1
- 10
0
votes
1 answer
How do I package installed files for Yocto?
I'm trying to create a simple Hello World recipe for yocto and failing. I'm just trying to create a directory on the root files system and copy a file there. My recipe layout looks like…

xAptive
- 26
- 4
0
votes
1 answer
Changing URL in bbappend causes yocto error
I added a kernel bbappend file that was supposed to override the SRC_URI to point to my github developer repo instead of the public repo. But that change of 1 line alone caused yocto error:
ERROR: An uncaught exception occurred in…

preetam
- 1,451
- 1
- 17
- 43
0
votes
0 answers
Trying to add python3-simplejpeg to Yocto fails with Cmake error
I tried to add simplejpeg to a Yocto project currently running on the main/bleeding edge version.
I used the latest pipoe version to autogenerate a .bb / receipe file with the simple command pipoe -p simplejpeg --python python3
this generated…

nmaas87
- 29
- 1
- 10
0
votes
1 answer
In Yocto with KAS how to use $(BSPDIR}
I'm using KAS for build Yocto. In some recipes the sources are configured to fetch from ${BSPDIR } like
KERNEL_SRC = "git://${BSPDIR}/local_repos/linux-5.4.142;protocol=file"
Without KAS if I source poky/oe-init-build-env build
Yocto creates…

Aspire
- 921
- 1
- 7
- 15
0
votes
0 answers
How to append to a bootfile using do_deploy in Yocto?
this is a question for BitBake / Yocto on the Kirkstone branch (4.2). I am trying to append to a config.txt (for a Raspberry Pi) in my custom layer meta-x under meta-x/recipes-bsp/bootfiles/ using an rpi-config_git.bbappend file.
I have seen online…

hal
- 33
- 6
0
votes
0 answers
How to exclude package from build history in Yocto?
I have updated BUILDHISTORY_FEATURES=image sdk to avoid including the package directory in the build history. However, I am still seeing the package directory with numerous subdirectories in the build history. The package directory is smaller (5 MB)…

Ehsan Mohandesi
- 46
- 4
0
votes
0 answers
How to add a directory to $PATH in a yocto recipe
I have a Linux system which I create with Yocto.
In this I have two users: root, myuser
Now I want to change the variable $PATH of the two users so that the files under /opt/myStuff/lib/ are found there.
I have already tried the following, but…

schande
- 576
- 12
- 27