kscherer has quit [Quit: Konversation terminated!]
florian_kc has quit [Ping timeout: 260 seconds]
olani has joined #yocto
goliath has quit [Quit: SIGSEGV]
Tokamak_ has joined #yocto
Tokamak has quit [Ping timeout: 256 seconds]
davidinux has quit [Ping timeout: 260 seconds]
davidinux has joined #yocto
starblue has quit [Ping timeout: 264 seconds]
amitk has joined #yocto
starblue has joined #yocto
davidinux has quit [Ping timeout: 264 seconds]
<mark_>
I am migrating our Yocto from Dunfell to Kirkstone, I got most of the packages working, but stuck with this go package, https://paste.gnome.org/q4L7JMxBK I found netdb.h and unistd.h under recipe-sysroot/usr/include but not recipe-sysroot-native/usr/include which is probably where the build system was searching the hearder files. But I'm not really sure how to get thoes files to the native verison of the recipe-sysroot.
<mark_>
This package build fine in Dunfell. Any insight would be greatly appreciated
<michalkotyla>
Hello! We added a new layer (we use main as a default branch) to layers.openembedded.org, but I see that while updating the recipe list, it looking for a master branch instead of a default branch with any name. I looked at sources from layerindex-web repo, and I see that the branch name "master" is directly passed as a string in many lines. So just
<michalkotyla>
make sure: If I want to make our layer properly indexed, I can only change our branch name from main to master?
mthenault has joined #yocto
leon-anavi has joined #yocto
Tokamak has quit [Read error: Connection reset by peer]
Tokamak has joined #yocto
<LetoThe2nd>
yo dudX
<LetoThe2nd>
michalkotyla: to be (brutally honest), the perfect way would be to send a patch to support other branch names to the layerindex (and take up its maintenance along the way ;-) )
alessioigor has joined #yocto
GNUmoon has quit [Remote host closed the connection]
rob_w has joined #yocto
GNUmoon has joined #yocto
d-fens has joined #yocto
<michalkotyla>
LetoThe2nd: good, I can try to do that. So generally, that patch should replace "get data from origin/master" to "get data from origin/<defaultbranch>"?
mvlad has joined #yocto
<LetoThe2nd>
michalkotyla: i literally have no clue :-(
<rburton>
mcfrisk: cleansstate is slow as it has to iterate the sstate cache looking for specific filenames. if your sstate is large, that just takes a long time.
tre has joined #yocto
<mcfrisk>
zfs is really slow when deleteing files, rm -rf tmp takes a lot of time as well
Nini has joined #yocto
Nini has left #yocto [#yocto]
Guestu has joined #yocto
<d-fens>
zfs crashing on my home backup nas a few years ago made me lose lots of data, even professional recovery service couldn't restore it - so no zfs for me never again
<Guestu>
Hello, is it ok with yocto to change deploydir path for images ? I have to build 1 image with 2 machines and 2 different distros but DISTRO is not inside the deploy dir path, so output files will overwrite
gsalazar_ has joined #yocto
gho has quit [Ping timeout: 264 seconds]
<qschulz>
Guestu: mmm, by default the images are installed in TMPDIR/deploy/images/<machine>
<qschulz>
c.f. DEPLOY_DIR_IMAGE variable
<qschulz>
ah, the issue is not the two machines, it's the two distros for the same machine
<qschulz>
you can modify DEPLOY_DIR_IMAGE to have DISTRO in it too
<phako[m]>
ah. thanks. trying to figure out why it does not pick up ours
<rburton>
something might be overriding FILES:PN-dev and wiping the default value
<phako[m]>
I am leaning towards our cmake files and their default install folders
zpfvo has quit [Ping timeout: 265 seconds]
zpfvo has joined #yocto
mthenault has quit [Remote host closed the connection]
tor_ has joined #yocto
tor_ has quit [Remote host closed the connection]
gho has quit [Ping timeout: 265 seconds]
florian_kc has quit [Ping timeout: 264 seconds]
florian_kc has joined #yocto
KrisC has joined #yocto
alessioigor has quit [Quit: alessioigor]
gho has joined #yocto
starblue has quit [Quit: WeeChat 3.0]
rsalveti has quit [Quit: Connection closed for inactivity]
florian_kc has quit [Ping timeout: 265 seconds]
starblue has joined #yocto
<phako[m]>
I vaguely remember there was some PACKAGECONFIG for ex/including tests from build? Or was that something we had custom in my previous yocto experience?
florian_kc has joined #yocto
<JaMa>
maybe you mean ptest.bbclass?
<Saur[m]>
phako: Are you thinking of the `ptest` distro feature?
<phako[m]>
no it was for explicitly disabling the building of tests in the projects. might have been something cooked up by our integration team
<Saur[m]>
I don't think there is anything generic for that.
xmn has joined #yocto
rfuentess has quit [Remote host closed the connection]
<phako[m]>
is there a nicer way to do this: EXTRA_OECMAKE = "-DNUMPY_INCLUDE_DIRS=/usr/lib/python3.10/site-packages/numpy/core/include"
<phako[m]>
ye. inherit python3-dir
leon-anavi has quit [Quit: Leaving]
Vonter_ has quit [Quit: WeeChat 3.7.1]
<phako[m]>
halleluja. It works in qemuarm64. Thanks everyone :)
florian_kc has joined #yocto
florian_kc has quit [Ping timeout: 264 seconds]
florian_kc has joined #yocto
prabhakarlad has quit [Ping timeout: 260 seconds]
amitk_ has quit [Ping timeout: 264 seconds]
hcg has joined #yocto
sakoman has quit [Ping timeout: 260 seconds]
chep` has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep` is now known as chep
<hcg>
Hi guys, I am trying to create a bloat measurement class. I have a class which parses the status file in var/lib/opkg and gives me all of the data I require based on the uncompressed data, however, I would also like to report the size of the final ubifis image, so I need this task to run after the ubifs image is created. I have tried using the IMAGE_POSTPROCESS_COMMAND variable, but it appears as though the
<hcg>
ubifs image is created after the IMAGE_POSTPROCESS_COMMAND variable is executed - I added some debugs and the image file is certainly not present when my script runs - can anyone help please?