ndec changed the topic of #yocto to: "Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Join us or Speak at Yocto Project Summit (2022.11) Nov 29-Dec 1, more: https://yoctoproject.org/summit | Join the community: https://www.yoctoproject.org/community | IRC logs available at https://www.yoctoproject.org/irc/ | Having difficulty on the list or with someone on the list, contact YP community mgr ndec"
stephano is now known as stephano[away]
stephano[away] has quit [Quit: ZZZzzz…]
kscherer has quit [Quit: Konversation terminated!]
stephano has joined #yocto
drewfustini has left #yocto [#yocto]
xmn has joined #yocto
stephano is now known as stephano[away]
stephano[away] has quit [Quit: ZZZzzz…]
stephano has joined #yocto
stephano is now known as stephano[away]
stephano[away] has quit [Quit: ZZZzzz…]
davidinux has joined #yocto
Starfoxxes has quit [Ping timeout: 248 seconds]
Starfoxxes has joined #yocto
tokamak has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in]
tokamak has joined #yocto
tokamak has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in]
tokamak has joined #yocto
starblue has quit [Ping timeout: 248 seconds]
tokamak has quit [Client Quit]
starblue has joined #yocto
tokamak has joined #yocto
Thorn has joined #yocto
stephano has joined #yocto
stephano is now known as stephano[away]
stephano[away] has quit [Quit: ZZZzzz…]
kevinrowland has quit [Ping timeout: 260 seconds]
jclsn has quit [Ping timeout: 248 seconds]
jclsn has joined #yocto
seninha has quit [Remote host closed the connection]
seninha has joined #yocto
amitk has joined #yocto
sakoman has quit [Quit: Leaving.]
seninha has quit [Quit: Leaving]
Thorn has quit [Ping timeout: 264 seconds]
Wouter010067044 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter010067044 has joined #yocto
AKN has joined #yocto
Lihis has quit [Quit: Quitting]
Lihis has joined #yocto
Thorn has joined #yocto
schtobia has quit [Quit: Bye!]
schtobia has joined #yocto
nemik has quit [Ping timeout: 265 seconds]
nemik has joined #yocto
nemik has quit [Ping timeout: 252 seconds]
nemik has joined #yocto
alessioigor has joined #yocto
Thorn has quit [Quit: It's a dud! It's a dud! It's a du...]
amitk_ has joined #yocto
AKN has quit [Ping timeout: 260 seconds]
Estrella has quit [Read error: Connection reset by peer]
Estrella has joined #yocto
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
rob_w has joined #yocto
goliath has joined #yocto
nemik has quit [Ping timeout: 260 seconds]
nemik has joined #yocto
Schlumpf has joined #yocto
hcg has joined #yocto
AKN has joined #yocto
mckoan|away is now known as mckoan
<mckoan> good morning
DvorkinDmitry has joined #yocto
<DvorkinDmitry> Is there are a way to encrypt rootfs at image creation step?
azcraft has joined #yocto
Jham has joined #yocto
aak-rookie has joined #yocto
janvermaete[m] has joined #yocto
<janvermaete[m]> the packages is generated.
<janvermaete[m]> Question: is there something wrong with gstreamer1.0-rtsp-server-apps or gstreamer1.0-rtsp-server-doc?
<janvermaete[m]> But I can't add it to the image.
<janvermaete[m]> The gstreamer1.0-rtsp-server itself is working fine.
<janvermaete[m]> It doesnt work with ipk or the default one.
piie has joined #yocto
florian_kc has joined #yocto
<mckoan> DvorkinDmitry: no, you have to encrypt the resulting rootfs in a separate step
grma has joined #yocto
mvlad has joined #yocto
<DvorkinDmitry> is there are any recommended Docker setup for building Yocto images?
gegir has joined #yocto
Wouter010067044 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter010067044 has joined #yocto
leon-anavi has joined #yocto
aak-rookie has quit [Quit: Client closed]
aak-rookie has joined #yocto
Ablu[m] has joined #yocto
<Ablu[m]> Hi all, is there a way to get the version number of a recipe within foo_%.bbappend file? ${PV} just seems to be % there 🤔...
xmn has quit [Remote host closed the connection]
xmn has joined #yocto
<mcfrisk> Ablu[m]: PV and PR will be set within a bitbake task for sure, even if the task code came from a bbappend
<Ablu[m]> mcfrisk: Hm. I do prepend `FILESEXTRAPATHS:prepend := "${THISDIR}/qemu-${PV}:"`. In order to load .patches from there. Would you have a recommendation what a good task would be to handle such kind of stuff? Of course I could patch things manually in do_patch, but then I loose all the automatic *.patch iteration benefits.
camus1 has joined #yocto
<mcfrisk> Ablu[m]: you have a generic, non-versioned bbappend and want to apply version specific patches? I don't see any recipes doing that so maybe at bbappend parsing time PV is not set. cargo-cross-canadian is adding PV to path in recipe itself, after PV has been set, and that works.
<DvorkinDmitry> yocton, thank you!
camus has quit [Ping timeout: 265 seconds]
camus1 is now known as camus
manuel1985 has joined #yocto
ptsneves1 has joined #yocto
<Ablu[m]> mcfrisk: Right... It may be a bit of a weird thing to do... Mostly I want to apply the patches in a way that things break loudly if a new version is released where I need to update the patches. If I just do version-specific .bbappends then it would just silently drop the patch and there would only be a warning in the log about not recipe being available for that .bbappend...
Patrick2 has joined #yocto
<qschulz> Ablu[m]: it should fail by default
<qschulz> c.f. BB_DANGLINGAPPENDS_WARNONLY
<qschulz> so hunt the layer that enables this and shout at them for doing so
<Patrick2> Hi, i get an error while building an SDK:  ERROR: core-image-minimal-1.0-r0 do_populate_sdk: Could not invoke dnf.
<Patrick2> I thought it should not happen because libdnf-native should have been built before? https://dpaste.org/q6HBT
<Ablu[m]> qschulz: Oh interesting. Though I can imagine which one does it... We share this recipe across different Yocto versions without branching. So I guess fixing that would be a better spent of time...
<Ablu[m]> Thanks all and sorry for the noise!
<Ablu[m]> Patrick2: I think the real error is here:... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/81fdc33a959e18e4428feaa0d0923301c11f1782>)
prabhakarlad has joined #yocto
<Patrick2> Ablu[m] thanks, looks like this! This is caused because the machine i have created has some flaws ?  I will check that again.
<Saur[m]> Ablu[m]: The way we handle that is we have our main layer work with one version of OE (currently Langdale). Then we have an adaptation layer where we handle all changes that need to be done to work with another version of OE (i.e., master in our case). A common case then is that we have updated the version of a recipe from OE in our main layer. We do this using versioned bbappends, which typically then contain `PV` and
<Saur[m]> `SRCREV`/`SRC_URI[sha256sum]`. Since OE master then typically already contain the new version, or even a newer, we do not want the bbappend in that case. So what we do then is we use `BBMASK` in the `layer.conf` file to tell bitbake to ignore the bbappend file. E.g., this is how we tell bitbake to ignore the update of `apache2` that we have in our main layer: `BBMASK += "/meta-axis/recipes-httpd/apache2/apache2_2.4.54.bbappend"`.
<janvermaete[m]> just to come back to my gstreamer1.0-rtsp-server-apps issue.
<janvermaete[m]> With the current master with poky. It doesn't work for me.
<janvermaete[m]> I can do in local.conf: IMAGE_INSTALL:append = " gstreamer1.0-rtsp-server"
<janvermaete[m]> But I can not do: IMAGE_INSTALL:append = " gstreamer1.0-rtsp-server-apps"
nemik has quit [Ping timeout: 248 seconds]
nemik has joined #yocto
<Patrick2> Ablu[m]: I thought that i upgraded to kirkstone, it turned out that i had to pull the poky directory... Thanks again
<janvermaete[m]> ERROR: core-image-minimal-1.0-r0 do_rootfs: Could not invoke dnf. Command '/var/tmp/user/poky/build/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/recipe-sysroot-native/usr/bin/dnf -v --rpmverbosity=info -y -c /var/tmp/user/poky/build/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/rootfs/etc/dnf/... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/9da3a3d759b499ffb9c1ec34a50b822cf3a631f3>)
ptsneves has quit [Ping timeout: 246 seconds]
ptsneves1 is now known as ptsneves
<Patrick2> janvermaete[m] this helped me two minutes ago: https://github.com/agherzan/meta-raspberrypi/issues/581
manuel1985 has quit [Ping timeout: 265 seconds]
florian__ has joined #yocto
nemik has quit [Ping timeout: 256 seconds]
nemik has joined #yocto
Schlumpf has quit [Quit: Client closed]
<Saur[m]> jan vermaete: When I build `gstreamer1.0-rtsp-server`, it does not produce any `gstreamer1.0-rtsp-server-apps` package (nor a `gstreamer1.0-rtsp-server-doc` package), so it is no wonder that trying to install the non-existing packages fail.
louis has quit [Ping timeout: 265 seconds]
<janvermaete[m]> @Suar let me check
louis has joined #yocto
<janvermaete[m]> it does for me: PACKAGES="gstreamer1.0-rtsp-server-src gstreamer1.0-rtsp-server-dbg gstreamer1.0-rtsp-server-staticdev gstreamer1.0-rtsp-server-dev gstreamer1.0-rtsp-server-doc gstreamer1.0-rtsp-server-lo\
<janvermaete[m]> cale gstreamer1.0-rtsp-server gstreamer1.0-rtsp-server-apps gstreamer1.0-rtsp-server-meta gstreamer1.0-rtsp-server-glib"
<janvermaete[m]> bitbake -e gstreamer1.0-rtsp-server > log
<Saur[m]> The `PACKAGES` variable contains packages that the recipe _may_ produce. If no files are created that matches their FILES:<package> variables, then no package will be created (unless `ALLOW_EMPTY:<package>` is set).
<janvermaete[m]> ok, got it.
<janvermaete[m]> But I changes the bb with this:
<janvermaete[m]> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.20.5.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.20.5.bb... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/953f9da333cd16dcedc86f874fdb44278b1f454b>)
<janvermaete[m]> what does create the application I need.
<janvermaete[m]> ./build/tmp/work/core2-64-poky-linux/gstreamer1.0-rtsp-server/1.20.5-r0/build/examples/test-launch
<janvermaete[m]> But it could be that the do_install isn't using it.
<Saur[m]> jan vermaete: Correct, enabling the examples only build them, but doesn't install them.
<Saur[m]> You will have to either patch the meson.build to install them, or do it in a do_install:append() in the recipe.
<janvermaete[m]> I do an attemt, thanks for the help.
seninha has joined #yocto
<janvermaete[m]> @Suar: thanks. It's working
<janvermaete[m]> diff --git a/examples/meson.build b/examples/meson.build... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/17712c16a3e82c9500fd785e0391ed0a373a9085>)
<janvermaete[m]> Should I try to have this in a patch? Or no need in the world for this?
<ptsneves> janvermaete[m]: keep in mind that your IRC client is truncating the messages you type
starblue has quit [Ping timeout: 260 seconds]
starblue has joined #yocto
nemik has quit [Ping timeout: 268 seconds]
camus has quit [Quit: camus]
<Saur[m]> jan vermaete: The need for the examples from that recipe is probably very low, so a local patch in your own layer is probably enough.
nemik has joined #yocto
<Ablu[m]> saur2000[m]: Thanks for the input! I will need to see what makes most sense for me :). But it is certainly helpful to know how other people solve things (thats what I came here for).
gegir has quit [Quit: Leaving.]
Guest8120 has joined #yocto
denisoft81 has joined #yocto
<LetoThe2nd> yo dudX
aak-rookie has quit [Quit: Client closed]
aak-rookie has joined #yocto
Guest8120 has quit [Quit: Client closed]
grma has quit [Ping timeout: 265 seconds]
rob_w has quit [Remote host closed the connection]
linex[m] has joined #yocto
ptsneves1 has joined #yocto
AKN has quit [Ping timeout: 246 seconds]
<ptsneves> @RP would it be ok that the git lfs bitbake test would use this repo https://gitlab.com/gitlab-examples/lfs
amitk_ has quit [Ping timeout: 260 seconds]
hcg has quit [Quit: Client closed]
Patrick2 has quit [Quit: Connection closed]
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
brazuca has quit [Quit: Client closed]
<RP> ptsneves: what does it use today? We might want to mirror that ourselves just to reduce the risk of network issues impacting the autobuilder
gegir has joined #yocto
<ptsneves> Funny answer. It uses a locally set up repository, but that repository does not have any git lfs file. The reason being that git lfs requires a dedicated server to serve ot. Furthermore, the test's _find_git_lfs is always false due to the PATH not being set, so the test always skips any operation on that supposed git lfs repository
gegir has left #yocto [#yocto]
gegir has joined #yocto
hcg has joined #yocto
Wouter010067044 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter010067044 has joined #yocto
AKN has joined #yocto
<RP> ptsneves: I'm a little surprised to hear that you need a special server :/
<RP> ptsneves: that would be a good reason to use the example one I guess
<linex[m]> Hello, I'm new to Yocto and I was trying to create a file on the target rootfs... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/9751c161ef9c8636a8c59af99bcbc27d4657ea59>)
<linex[m]> * Hello, I'm new to Yocto and I was trying to create a file on the target rootfs... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/230371bbff8becaa196de19fd9154211d33ead8b>)
<ptsneves> There is more. THe current test code is also not enough and does not test for the existence of the smudge which is arguably more important than having git-lfs in the path. From the point of view of yocto we do not even need to call or support lfs specifically. LFS checkout and pull would be handled by git through git config filter.*.
<ptsneves> Which leads to the alternative test path where we do not need a real git LFS server. We would just create a fake git-lfs command and put it in the PATH and check that git's smudge filter called our git-lfs fake command when checking out sources.
<ptsneves> s/yocto/bitbake
<linex[m]> > <@linex:matrix.org> Hello, I'm new to Yocto and I was trying to create a file on the target rootfs... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/ab5648fccfd492c25df04798215472b6cf92c71e>)
<linex[m]> * Hello, I'm new to Yocto and I was trying to create a file on the target rootfs... (full message at <https://libera.ems.host/_matrix/media/v3/download/libera.chat/8a43b26ca8c54fb2e3e12d5a8ebe316c05622e07>)
<linex[m]> do_package_rpm is failing, I never called it, so it must be defaults.
<linex[m]> If I override `do_package()` to be empty, I get dnf errors
<linex[m]> should I be doing something in do_package() or do_package_rpm() ?
<qschulz> linex[m]: half wondering if you shouldn't set PACKAGES = "${PN}"
<qschulz> linex[m]: but also, you need a LICENSE, LIC_FILES_CHKSUM, DESCRIPTION
denisoft81 has quit [Quit: Leaving]
<qschulz> and maybe some other variables, check other recipes
<qschulz> e.g. meta-skeleton/recipes-skeleton/hello-single/hello_1.0.bb
<linex[m]> qschulz: thank you! I actually went through so many iterations that I lost count. I did add PACKAGES = "${PN}" but it errors if I also have it in IMAGE_INSTALL.
<linex[m]> I will put it back. I also have those other fields set to empty strings for now. could that be it ?
invalidopcode1 has quit [Remote host closed the connection]
invalidopcode1 has joined #yocto
<ptsneves> @RP sent my initial patches with work on the lfs tests. Also git-lfs consumes the Git LFS API as documented here https://github.com/git-lfs/git-lfs/blob/main/docs/api/README.md?utm_source=gitlfs_site&utm_medium=api_spec_link&utm_campaign=gitlfs
<qschulz> linex[m]: if you have what in IMAGE_INSTALL?
<linex[m]> qschulz: the name of the package
<linex[m]> > <@qschulz:libera.chat> linex: if you have what in IMAGE_INSTALL?
<linex[m]> * If I append the name of the package to IMAGE_INSTALL
<qschulz> linex[m]: I think we're missing some info because this is exactly what you're supposed to put in there
<linex[m]> PS: working on poky dunfell
prabhakarlad has quit [Quit: Client closed]
kscherer has joined #yocto
<qschulz> linex[m]: first get bitbake <your-recipe> to build, then you can work on adding it to the image
<linex[m]> <qschulz> "linex: if you have what in IMAGE..." <- ```
<linex[m]> ERROR: k3s-init-git-r0 do_package: QA Issue: k3s-init is listed in PACKAGES multiple times, this leads to packaging errors. [packages-list]
<linex[m]> ```
<linex[m]> I'll remove it form IMAGE_INSTALL for now
<linex[m]> ok it does build
<linex[m]> (k3s-init is the name of my recipe)
<rburton> would be easier if you share your recipe
<qschulz> linex[m]: did you do PACKAGES += "${PN}" or PACKAGES = ""${PN}"?
<qschulz> yeah what rburton said also :)
<qschulz> between tries even :)
<linex[m]> PACKAGE += "${PN}"
<rburton> it already had PN in, so you added it again, which is why you get the error that it is listed multiple times
<rburton> honestly just share the recipe, we'll help fix it. debugging via guessing what you've done is really hard work.
<rburton> you shouldnt need PACKAGES set at all, really
<qschulz> linex[m]: take the lic_fils_cheksum value from a recipe using COMMON_LIC_DIRS like the hello-world example
<qschulz> rburton: to be fair, I suggested it
<qschulz> because of some rpm issue, was wondering if it had something to do with empty packages or something /me shrugs
<rburton> qschulz: to be fair, you're guessing what the rootfs errors were :)
<rburton> in production the file you generate should have a license statement and then LIC_FILES_CHKSUM can point at that
<rburton> even if its just "this file is mit licensed"
<linex[m]> yeah I just wanted to test stuff for now ^^
<rburton> when you can bitbake that recipe, add it to the image and if that fails again say what the error was
<linex[m]> thanks for all the info I'll tinker a little and see if I can make it work
sakoman has joined #yocto
<linex[m]> okay, I was iterating over the whole image ^^
<linex[m]> so rpm are the package types and dnf the package manager that installs them on the image ?
<rburton> yes
<rburton> well rpm is the package manager but it only deals with a single package. dnf deals with lots at once. if you know debian, it's dpkg-apt == rpm-dnf
<linex[m]> this is an irc chat i shouldn't do reactions probably ? not sure if you receive them or if they even behave correcly, but it was a thumbs up :)
stephano has joined #yocto
<qschulz> linex[m]: we don't receive them
<qschulz> linex[m]: also, don't write too long or use newline characters as this shows as a link to us and we can't read without clikcing on the link
<qschulz> (which most of us don't do, because that's not how IRC works)
<linex[m]> good to know, thanks
<linex[m]> I think my problem is resolved and it was just because I added an S to PACKAGE += ...
<linex[m]> now the kernel is panicking, but that's another thing ^^
azcraft has quit [Remote host closed the connection]
azcraft has joined #yocto
stephano has quit [Quit: byeee]
azcraft has quit [Remote host closed the connection]
azcraft has joined #yocto
azcraft has quit [Remote host closed the connection]
azcraft has joined #yocto
AKN has quit [Ping timeout: 248 seconds]
<linex[m]> Is it safe to share SSTATE_CACHE for builds on different platforms and different distros ?
<mckoan> linex[m]: what do you mean with "platforms" ?
<linex[m]> for example a raspberry pi and another arm SBC
<linex[m]> I should've said machines*
<JPEW> linex[m]: Yes
<JPEW> linex[m]: We share sstate between multiple versions of Yocto, and build for many different SoC, Archs, and platforms
<mckoan> if is a different ARCH is useless to share it
prabhakarlad has joined #yocto
<linex[m]> thanks :)
<qschulz> mckoan: you'll still share the sstate-cache for native recipes, so definitiely not useless :)
<linex[m]> It worked! I spend a week on this
<linex[m]> s/spend/spent/
thekappe has joined #yocto
<phako[m]> is there an example for an out-of-tree kernel module that pulls its sources from git somewhere?
<thekappe> hello guys ! While building a yocto image with bitbake, someone is pulling in qemu-native. Since I do not need qemu at all, how can I remove it from the flow ? THere is a way to find who needs it or where it's added to the image dependencies ?
<mckoan> qschulz: I forgot to consider that ;-)
<linex[m]> @thekappe bitbake-layers show-recipes <recipe> ?
<phako[m]> nvm, found the issue
<thekappe> @linex, thanks, I'll try asap
<linex[m]> so It would be completely safe to share sstate, a colleague told me to split the sstates because collisions can happen. probably outdated info
<rburton> thekappe: you need qemu to build some recipes
<rburton> font caches and gobject-introspection data for example
<thekappe> sometimes the qemu capstone repo is not available at git://git.qemu.org/
<thekappe> and also if I usually build with BB_NO_NETWORK it seems that qemu-native still need it
<JPEW> linex[m]: We've run sstate all the way back to yocto 2.1 with no collision problems, FWIW
<thekappe> so for the moment I've just: git config --global url."https://github.com/qemu/".insteadOf "git://git.qemu.org/"
<rburton> thekappe: either you've a special qemu recipe or an old one, as the current recipe uses a tarball
<thekappe> a very old one :D
azcraft has quit [Remote host closed the connection]
dmoseley has quit [Quit: ZNC 1.8.2 - https://znc.in]
dmoseley has joined #yocto
<qschulz> thekappe: I think you can setup a carefully crafted PREMIRRORS variable to have this in your layers directly instead of your local git config?
<rburton> thekappe: a recipe that needs network even if its been fetched with BB_NO_NETWORK is broken
<thekappe> @qschulz, yes, that's sounds right
<thekappe> rburton, makes sense
<qschulz> rburton: you could also bbappend it and modify SRC_URI directly
<thekappe> thanks guys
Minvera has joined #yocto
aak-rookie has quit [Quit: Client closed]
amitk_ has joined #yocto
amitk has quit [Ping timeout: 248 seconds]
dev1990 has quit [Quit: Konversation terminated!]
vladest has quit [Ping timeout: 260 seconds]
knicklicht has joined #yocto
<knicklicht> I am trying to use a recipe but during build I get the error: ERROR: Meson version is 0.55.1 but project requires >= 0.59.0 . Is this something I can fix or is the meson version coupled to my Yocto version?
alessioigor has quit [Quit: alessioigor]
<Saur[m]> knicklicht: You will have to update the version of meson in one of your own layers. If you look at Git history of the meson recipe in master of OE-Core, you should be able to tell what changes are needed to update from 0.55.1 to 0.59.0. The easiest way is probably to simply copy a newer version of the recipe from OE-Core. However, depending on how far back you are, there may be changes to meson.bbclass and meson-routines.bbclass that you also need
<Saur[m]> to copy.
florian__ has quit [Ping timeout: 256 seconds]
<knicklicht> Thanks, Saur[m]. So I just copy the content of "recipes-devtools/meson" into my build dir. Then I build and any errors will tell me if I also need changes to meson.bbclass and meson-routines.bbclass?
florian_kc has quit [Quit: Ex-Chat]
goliath has quit [Quit: SIGSEGV]
DvorkinDmitry has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
odra has joined #yocto
ptsneves has quit [Quit: ptsneves]
ptsneves1 is now known as ptsneves
ptsneves1 has joined #yocto
ptsneves has quit [Ping timeout: 252 seconds]
ptsneves1 is now known as ptsneves
Piraty has quit [Quit: -]
Piraty has joined #yocto
Jham has quit [Quit: Leaving]
knicklicht has quit [Quit: Client closed]
mckoan is now known as mckoan|away
kevinrowland has joined #yocto
gegir has quit [Quit: Client closed]
azcraft has joined #yocto
<Saur[m]> knicklicht: Not quite. You need to copy the recipe into one of your layers. As for the bbclasses, you will have to compare the version(s) you have with the ones in OE-Core master and based on that determine what you should do. For the bbclasses in your layer to be used, you also need to make sure that your layer is specified before `meta` in the `BBLAYERS` variable in your `bblayers.conf` file.
olani- has joined #yocto
ptsneves has quit [Quit: ptsneves]
ptsneves1 has joined #yocto
ptsneves1 has quit [Client Quit]
ptsneves has joined #yocto
ptsneves has quit [Client Quit]
ptsneves has joined #yocto
ptsneves has quit [Ping timeout: 268 seconds]
ptsneves1 has joined #yocto
florian__ has joined #yocto
ptsneves1 is now known as ptsneves
goliath has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
odra has quit [Quit: Leaving]
florian__ has quit [Ping timeout: 255 seconds]
goliath has quit [Quit: SIGSEGV]
brazuca has joined #yocto
florian__ has joined #yocto
goliath has joined #yocto
thekappe has quit [Ping timeout: 260 seconds]
Wouter010067044 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter010067044 has joined #yocto
brazuca has quit [Quit: Client closed]
ptsneves has joined #yocto
Vonter has quit [Ping timeout: 252 seconds]
amitk_ has quit [Ping timeout: 260 seconds]
florian__ has quit [Ping timeout: 255 seconds]
florian__ has joined #yocto
kevinrowland has quit [Quit: Client closed]
seninha has quit [Quit: Leaving]
vladest has joined #yocto
Patrick2 has joined #yocto
<Patrick2> Hi iam still facing the problem that I cannot generate a SDK. I have created a machine "matching" my Board. It is a bigtreetechCB1. Now i get this error:   - package packagegroup-core-boot-1.0-r17.bigtreetechcb1 does not have a compatible architecture
<Patrick2> One question which would help me, packagegroup-core-boot is a recipe, but why is the board name added there? I have the feeling that this could be caused by an concatenation error?
u1106 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
u1106 has joined #yocto
Minvera has quit [Remote host closed the connection]
<landgraf> Patrick2: board name is architecture name in this case. It's defined as ARCH = ${MACHINE_ARCH} in the recipe
lexano has quit [Quit: Leaving]
<landgraf> Patrick2: you have to find out why sdk tries to install packagegroup-core-boot.
<Patrick2> landgraf ok, did something changed? my local.conf is always cleaned when i run bitbake
<Patrick2> no wait it is now there, but it was deleted... Hm
vladest has quit [Remote host closed the connection]
vladest has joined #yocto
<Patrick2> landgraf So it should try to install u-boot?
<landgraf> Patrick2: in SDK? What for?
<Patrick2> instead of packagegroup-core-boot?
<Patrick2> so i fixed one error and one warning, the warning was no uppercases in machine names the error was a typo in LAYERSERIES_COMPAT_bsp_bigtreetech_cb1
Estrella has quit [Ping timeout: 260 seconds]
seninha has joined #yocto
azcraft has quit [Remote host closed the connection]
risca has quit [Ping timeout: 248 seconds]
pabigot has quit [Remote host closed the connection]
pabigot has joined #yocto
risca has joined #yocto
kanavin_ has joined #yocto
kanavin has quit [Ping timeout: 248 seconds]
mvlad has quit [Remote host closed the connection]
kscherer has quit [Quit: Konversation terminated!]
florian__ has quit [Ping timeout: 260 seconds]
leon-anavi has quit [Quit: Leaving]
Patrick2 has quit [Ping timeout: 252 seconds]