LetoThe2nd changed the topic of #yocto to: Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Community: https://www.yoctoproject.org/community | IRC logs: http://irc.yoctoproject.org/irc/ | Having difficulty on the list, with someone on the list or on IRC, contact Yocto Project Community Manager Letothe2nd | CoC: https://www.yoctoproject.org/community/code-of-conduct
lexano has quit [Ping timeout: 260 seconds]
sakoman has quit [Quit: Leaving.]
xmn has joined #yocto
pabigot has quit [Ping timeout: 246 seconds]
davidinux has quit [Ping timeout: 246 seconds]
davidinux has joined #yocto
pabigot has joined #yocto
nerdboy has quit [Read error: Connection reset by peer]
Ablu has quit [Ping timeout: 245 seconds]
Ablu has joined #yocto
nerdboy has joined #yocto
nerdboy has quit [Changing host]
nerdboy has joined #yocto
camus has joined #yocto
sakoman has joined #yocto
Vonter has quit [Ping timeout: 245 seconds]
Vonter has joined #yocto
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #yocto
jclsn has quit [Ping timeout: 246 seconds]
jclsn has joined #yocto
wooosaiiii has joined #yocto
mixfix41 has joined #yocto
amitk has joined #yocto
sakoman has quit [Quit: Leaving.]
goliath has quit [Quit: SIGSEGV]
alessioigor has joined #yocto
davidinux has quit [Ping timeout: 246 seconds]
davidinux has joined #yocto
goliath has joined #yocto
leon-anavi has joined #yocto
camus1 has joined #yocto
camus has quit [Ping timeout: 260 seconds]
camus1 is now known as camus
Kubu_work has joined #yocto
frieder has joined #yocto
zpfvo has joined #yocto
mvlad has joined #yocto
pabigot has quit [Ping timeout: 246 seconds]
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
florian has joined #yocto
rfuentess has joined #yocto
rfuentess has quit [Ping timeout: 245 seconds]
pabigot has joined #yocto
xmn has quit [Ping timeout: 245 seconds]
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #yocto
zkrx has quit [Ping timeout: 245 seconds]
el_gatito has joined #yocto
pabigot has quit [Ping timeout: 245 seconds]
frieder has quit [Ping timeout: 260 seconds]
pabigot has joined #yocto
frieder has joined #yocto
zkrx has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
zkrx has quit [Ping timeout: 246 seconds]
zkrx has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
mihai has joined #yocto
<LetoThe2nd> michele_: pure gut feeling: package those prerequisites as -native and DEPEND on them.
florian has quit [Ping timeout: 250 seconds]
prabhakarlad has quit [Quit: Client closed]
prabhakarlad has joined #yocto
florian has joined #yocto
davidinux has quit [Quit: WeeChat 3.5]
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
florian_kc has joined #yocto
chep has quit [Quit: ZNC 1.8.2 - https://znc.in]
chep has joined #yocto
frieder has quit [Ping timeout: 246 seconds]
frieder has joined #yocto
vladest has joined #yocto
xmn has joined #yocto
sakoman has joined #yocto
lexano has joined #yocto
ptsneves has joined #yocto
ptsneves1 has joined #yocto
ptsneves has quit [Ping timeout: 246 seconds]
ptsneves1 is now known as ptsneves
ptsneves has quit [Ping timeout: 240 seconds]
fray has joined #yocto
<tgamblin> Has anyone seen an issue where, when creating a new layer with a different version of a recipe, said version can't be found even when setting PREFERRED_VERSION in local.conf?
<LetoThe2nd> tgamblin: creating the layer doesn't do the trick, it is adding...
* LetoThe2nd ducks and runs ;-)
* tgamblin remembers to use -v on himself in the future
<tgamblin> :)
g0hl1n has joined #yocto
goliath has quit [Quit: SIGSEGV]
g0hl1n has quit [Quit: leaving]
d-s-e has joined #yocto
g0hl1n has joined #yocto
<RP> I wondered who added the deltask to externalsrc. Of course it was me at creation of the class 10 years ago :/
<d-s-e> Hi, I have some recipes to build container images. This works fine, the image files are created in the iamge deploy dir. Now I would like to create a package containing all those images. For this I wrote a recipe that has all the container image recipes in DEPENDS, but none of them are created when I build that package. What am I doing wrong?
sotaoverride has joined #yocto
<qschulz> d-s-e: DEPENDS mechanism takes (some) files installed during the do_install task of your dependency
<qschulz> if you're looking into the deploy_dir, you need to add a dependency on the deploy_task
<qschulz> do_deploy task*
<sotaoverride> can someone walk me through the napkin math to help ensure rpi would be fast enough for running ffmpeg. I mostly just want to overlay text on high res video.
<rburton> d-s-e: DEPENDS="foo" is shorthand for do_configure[depends] = "foo:do_populate_sysroot". Your container recipe doesnt' populate the sysroot, you want to explicitly depend on do_deploy.
<rburton> which is basically what qschulz said :)
<sotaoverride> if someone can help me understand rpi would indeed work fine with ffmpeg and high res videos (4k etc) Id get down to adding ffmpeg to rpi meta layer and building my application of top of it.
<d-s-e> ah ok, the container recipes don't install anything, they don't create packages. what does this mean "add a dependency on the deploy_task"? do I need to add something to the container recipes or to the packaging recipe?
<qschulz> sotaoverride: I would say you'd probably have more luck asking the ffmpeg folks for help on that. Once you have the settings figured out, then you can implement it in Yocto
<qschulz> d-s-e: what do the container recipes do if they don't install anything?
<sotaoverride> qschulz: makes sense. ill bug the ffmpeg folks first :P
<d-s-e> qschulz: they create a tar file for example in build/tmp/deploy/images/raspberrypi4-64, that can be loaded into a container runtime.
<qschulz> d-s-e: this is a task for the do_deploy task of your container recipes to install into build/tmp/deploy/images/raspberrypi4-64
<qschulz> then in your package recipe, you need to have the task that depends on those files existing to depends on your container recipes do_deploy task
<qschulz> this is done via do_sometask[depends] += "your-contrainer-image1:do_deploy"
<qschulz> now, depending on your infrastructure this is also something that could be done directly in an image recipe for example, thus not requiring a special package recipe just for that
<rburton> https://github.com/intel/meta-acrn basically does something like this fwiw
<rburton> images recipes that makes images, and then package recipes which put those images into packages
<rburton> with multiconfig for extra fun
<d-s-e> ok, I will look into that, thanks.
d-s-e has quit [Quit: Konversation terminated!]
dmoseley has quit [Quit: ZNC 1.8.2 - https://znc.in]
dmoseley has joined #yocto
zpfvo has quit [Remote host closed the connection]
<dl9pf> question: for ubuntu 18.04 as build host and kirkstone 4.0.11 - is buildtools tarball a requirement in that combination now ?
<dl9pf> we do essentially see an issue with UNINATIVE_VERSION > 3.9 on kirkstone on a 18.04 buider
goliath has joined #yocto
florian_kc has quit [Quit: Ex-Chat]
el_gatito has quit [Ping timeout: 246 seconds]
florian has quit [Ping timeout: 250 seconds]
silurian_invader has quit [Ping timeout: 240 seconds]
frieder has quit [Remote host closed the connection]
florian has joined #yocto
mabnhdev has joined #yocto
<mabnhdev> Hi all.  Is there a way to prevent a particular recipe from being parsed for a particular machine?
<mabnhdev> I'm working with Kirkstone.  For compatibility, I have to downgrade glibc for one of the machines I support.   Normally Kirkstone uses glibc 2.35.  For my MIPS machine, I need to downgrade to 2.33.  I did the downgrade for my MIPS platform with no problems, but now my other platforms (that I would like to stay at 2.35) are failing with
<mabnhdev> complaints like the following "preferred version 2.35 of glibc not available (for item libsegfault)".  I'm assuming if the glibc 2.33 recipe is not parsed when building my other machines, I should be okay?
pbsds has quit [Ping timeout: 260 seconds]
florian has quit [Ping timeout: 246 seconds]
florian has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
pbsds has joined #yocto
mabnhdev has quit [Quit: Client closed]
<g0hl1n> hi, does anybody here ever tried to create a recipe for python3-httpx (or any other hatchling based pip module)? I'm unable to get rid of the "ERROR Backend 'hatchling.build' is not available." :-/ Any help or hints are greatly appreciated.
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
mabnhdev has joined #yocto
<rburton> g0hl1n: what does your recipe have in?
<rburton> g0hl1n: inherit python_hatchling _should_ just work, so if you're not using that then there's your problem
<LetoThe2nd> anybody have a runqemu invocation for initramfs e.g. core-image-minimal-initramfs handy?
<LetoThe2nd> (bundled or non-bundled)
<g0hl1n> rburton: yes, python_hatchling is in of course ;-) Here's the current recipe: https://privatebin.net/?ffd7cc28b2679e92#8VR3p7bEeWZpbvnezmwFZm8YEYyCyW1xHrr3tmFjyetQ
<g0hl1n> rburton: It's missing some RDEPENDS, but that doesn't change anything (as expected).
<rburton> g0hl1n: your DEPENDS= is replacing the DEPENDS from the class
<rburton> also hatch-fancy-pypi-readme will need to be -native
<g0hl1n> damn... that's awkward... I've played around with the hatch-fancy-pypi-readme a few times but didn't notice that obious DEPENDS assignment...
<g0hl1n> *obvious
<g0hl1n> rburton: thanks for helping out and sorry for bothering...
prabhakarlad has quit [Quit: Client closed]
ptsneves has joined #yocto
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #yocto
ptsneves has quit [Ping timeout: 246 seconds]
silurian_invader has joined #yocto
amitk_ has joined #yocto
amitk has quit [Ping timeout: 246 seconds]
Haxxa has quit [Quit: Haxxa flies away.]
mvlad has quit [Remote host closed the connection]
Haxxa has joined #yocto
alessioigor has quit [Remote host closed the connection]
mabnhdev has quit [Quit: Client closed]
schtobia has quit [Quit: Bye!]
schtobia has joined #yocto
<michele_> sotaoverride: rpi decoder (h264) is limited to FullHD@60 Hz. no direct experience with h265 decoder
leon-anavi has quit [Quit: Leaving]
<michele_> LetoThe2nd: thanks, I tried but issue still there. Even from devshell I cannot install a rust package
Bardon_ has joined #yocto
Bardon has quit [Ping timeout: 260 seconds]
Kubu_work has quit [Quit: Leaving.]
randomgeek has quit [Quit: Connection closed]
olani has quit [Ping timeout: 246 seconds]
olani- has quit [Ping timeout: 260 seconds]
mabnhdev has joined #yocto
brrm has quit [Ping timeout: 252 seconds]
mabnhdev has quit [Quit: Client closed]
florian has quit [Ping timeout: 245 seconds]
mihai has quit [Ping timeout: 246 seconds]
mihai has joined #yocto
goliath has quit [Quit: SIGSEGV]
brrm has joined #yocto
brrm has quit [Ping timeout: 246 seconds]
brrm has joined #yocto