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
gspbirel56 has quit [Ping timeout: 252 seconds]
xmn has quit [Quit: ZZZzzz…]
florian has quit [Ping timeout: 248 seconds]
ablu has quit [Ping timeout: 276 seconds]
ablu has joined #yocto
Xagen has joined #yocto
goliath has quit [Quit: SIGSEGV]
cabazon has joined #yocto
tolnanwo has quit [Remote host closed the connection]
tolnanwo has joined #yocto
davidinux has quit [Ping timeout: 246 seconds]
davidinux has joined #yocto
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
starblue has quit [Ping timeout: 252 seconds]
Wouter01002 has joined #yocto
starblue has joined #yocto
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jclsn has quit [Ping timeout: 252 seconds]
jclsn has joined #yocto
gspbirel56 has joined #yocto
Vonter has joined #yocto
Guest66 has joined #yocto
ehussain has joined #yocto
Notgnoshi has quit [Ping timeout: 246 seconds]
yocti` has joined #yocto
yocti has quit [Killed (NickServ (GHOST command used by yocti`!~limnoria@2a01:4f9:c010:c053::1))]
yocti has joined #yocto
yocti` has quit [Remote host closed the connection]
yocti has quit [Remote host closed the connection]
yocti has joined #yocto
benkard has joined #yocto
Guest66 has quit [Ping timeout: 256 seconds]
mulk has quit [Ping timeout: 265 seconds]
benkard is now known as mulk
cabazon has quit [Quit: Client closed]
Jones42 has joined #yocto
Jones42_ has quit [Ping timeout: 276 seconds]
mulk has quit [Ping timeout: 252 seconds]
mulk has joined #yocto
Vonter has quit [Ping timeout: 252 seconds]
JaMa has quit [Ping timeout: 264 seconds]
JaMa has joined #yocto
<mcfrisk> RP: not memory resident, normal bitbake. testimage runs qemu though. The effects are really weird. Also seeing complete wipe of ext4 filesystem inside wic containers.
<RP> mcfrisk: we boot some images in snapshot mode
<mcfrisk> yes that may have something to do with this
<mcfrisk> the ext4 rootfs gets wiped to an empty ext4 filesystem with only lost+found directory
<RP> mcfrisk: that seems unlike snapshot behaviour :/
<mcfrisk> yes
<mcfrisk> really odd
dmoseley has joined #yocto
dmoseley_ has quit [Ping timeout: 246 seconds]
leon-anavi has joined #yocto
<mcfrisk> bitbake -m doesn't since I don't start bitbake to memory resident mode. when tests fail cooker processes do get leaked and then later bitbake calls connect to it and really odd things happen. removal of tmp and even more oddities like missing python3, missing ping
florian has joined #yocto
tolnanwo has quit [Ping timeout: 260 seconds]
tolnanwo has joined #yocto
<u1106> Am I the only one who cannot switch the release on https://docs.yoctoproject.org? I only see the development version. Firefox 132, I found a https://paste.opensuse.org/pastes/fe2eacdd19b5
<mcfrisk> u1106: same for me, can't change release on Firefox 131. You could file a bug to https://bugzilla.yoctoproject.org/
<u1106> mcfrisk: Thanks for the reply. Are you insider enough that you know that bugzilla is the most effective way to get it fixed? (No idea about Yocto, but in some projects bugzilla is more like a graveyard...) I might guess the bug is not in the poky source for the documents, it is probably always for one release, but somewhere in the website that allows switching. Haven't checked though...
<mcfrisk> u1106: bugzilla should be fine, alternatively docs mailing list docs@lists.yoctoproject.org https://lists.yoctoproject.org/g/docs, but this could be combination of infra (web server) and docs (generation, javascript)
<u1106> thanks. So maybe creating a bugzilla report and sending the link to the mailing list. Let me see whether I can get that done. I probably don't have a bz account and the great commercial mailing list provider has rejected my mail before...
Jones42 has quit [Ping timeout: 260 seconds]
mbulut has joined #yocto
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
hcg has joined #yocto
<DvorkinDmitry> to build one recipe I need linux-headers of my kernel in recipe-sysroot. How to do that? the app has #include <linux/config.h> inside
jmd has joined #yocto
Guest86 has joined #yocto
aduskett has quit [Remote host closed the connection]
<Guest86> Hello Yocto,
<Guest86> Good Day.
<Guest86> I would like to collect all recipes SRC_URI. BRANCH and REVISION in a consolidated json file as part of build.
<Guest86> Thinking of a bbclass to collect this info.
<Guest86> But not sure where to start to collect the information about recipes.
<Guest86> any suggestion on bitbake api?
prabhakalad has quit [Quit: Konversation terminated!]
Kubu_work has joined #yocto
prabhakalad has joined #yocto
<mcfrisk> DvorkinDmitry: userspace kernel headers are separate from effective kernel uapi and kernel side headers. linux-libc-headers are used to compile userspace and are not generated by kernel recipe to avoid full userspace recompiles for every kernel change.
<RP> Guest86: Have you looked at buildhistory. The spdx output also contains many of these things
<RP> Guest86: could you write your file just by processing those?
<mcfrisk> DvorkinDmitry: see poky/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc
<DvorkinDmitry> mcfrisk, thank you. I found that the app contains the kernel module that gives that error, not an application that is trying to use kernel headers directly
<mcfrisk> DvorkinDmitry: for kernel module recipes, "inherit module". See poky/meta/classes-recipe/module.bbclass
<DvorkinDmitry> mcfrisk, yes, I know. :) I'm building old "sfill" app (wiping the files) and it seems like it has wrong module build commands inside its Makefile
<mcfrisk> I think it will be tricky to compile both kernel module and userspace code in a single recipe. I'd separate to different recipes, and then fix the build scripts.
<DvorkinDmitry> mcfrisk, that's what I'm thinking about now too. Or probably fix the Makefile.
<mcfrisk> though exporting module specific uapi headers etc from kernel module to userspace app is tricky. I'd just embed the definitions into userspace sources
<mcfrisk> the two recipes can share an .inc file to define SRC_URI etc
<DvorkinDmitry> mcfrisk, good idea, thanks!
ehussain has quit [Remote host closed the connection]
Vonter has joined #yocto
florian_kc has joined #yocto
florian has quit [Ping timeout: 276 seconds]
Guest86 has quit [Ping timeout: 256 seconds]
jmd has quit [Remote host closed the connection]
dlan has quit [Ping timeout: 260 seconds]
<u1106> mcfrisk: Just FYI. Bugzilla says "Self registration is currently disabled due to a recent uptick in spam. Please email..." Who said that life should be easy ;)
dlan has joined #yocto
Guest30 has joined #yocto
jmd has joined #yocto
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
dlan has quit [Ping timeout: 272 seconds]
Wouter01002 has joined #yocto
ptatrai has joined #yocto
ptatrai has quit [Ping timeout: 244 seconds]
ptatrai has joined #yocto
goliath has joined #yocto
cyxae has joined #yocto
mulk has quit [Ping timeout: 252 seconds]
mulk has joined #yocto
<tlwoerner> qschulz: your rkbin patches look great! i build-tested them and have quickly tested on rk3308, rk3566, rk3568, and rk3588
<tlwoerner> i wanted to do a more detailed before/after test and test the option for rk3308
MrFrank has joined #yocto
Guest30 has quit [Ping timeout: 256 seconds]
Xagen has joined #yocto
xmn has joined #yocto
hcg has quit [Ping timeout: 256 seconds]
MrFrank has quit [Remote host closed the connection]
MrFrank has joined #yocto
MrFrank has quit [Remote host closed the connection]
prabhakalad has quit [Quit: Konversation terminated!]
MrFrank has joined #yocto
MrFrank has quit [Remote host closed the connection]
lexano has joined #yocto
Chaser has joined #yocto
florian_kc is now known as florian
Grogu has joined #yocto
Grogu has quit [Client Quit]
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
Grogu68 has joined #yocto
jmd has quit [Remote host closed the connection]
mbulut has quit [Ping timeout: 265 seconds]
dlan has joined #yocto
davidinux1 has joined #yocto
<RP> rburton, jonmason: curiously, in the logs, "[ 1624.931615] systemd-ssh-generator[471]: Disabling SSH generator logic, since sshd is not installed."
<rburton> hm
<RP> [ 2955.938975] systemd-ssh-generator[596]: Binding SSH to AF_UNIX socket /run/ssh-unix-local/socket.
<RP> [ 2956.003139] systemd-ssh-generator[596]: → connect via 'ssh .host' locally
<RP> I put the core-image-sato and sato-sdk logs there
<rburton> i think thats the new systemd "i'm in a container!" sshd stuff
<RP> For full-cmdline, it looks like it spewed control chars on the serial port which broke the login there
<RP> not sure why ss was dead
<RP> On full cmdline, something was taking 9 minutes, something went wron
<RP> full-cmdline is in /3 above
<RP> any other logs to save?
<RP> rburton: also interesting that things are still running on alma9-vk-1, its as if it was running slowly
<tgamblin> rburton: do you have any thoughts on the numpy reproducibility issue?
<suihkulokki> Does anyone have an example of a bitbake recipe of npm module with native bindings?
<rburton> tgamblin: "burn cython with chemical fire"?
<rburton> i guess the first thing is to get a smaller test case than pandas or numpy
<rburton> do you blame cython or meson-python?
<rburton> i guess fixing the buildpaths in mesonpy is a definitelty needed first step
<tgamblin> rburton: I think it's more a problem of meson not having the right inputs, but I'm not sure. Will try to dig deeper on the weekend
<rburton> i'm not convinced its that simple
prabhakalad has joined #yocto
davidinux1 has quit [Quit: WeeChat 4.3.1]
Chaser has joined #yocto
hexbrex has quit [Read error: Connection reset by peer]
|Xagen has joined #yocto
Xagen has quit [Ping timeout: 252 seconds]
mulk has quit [Ping timeout: 255 seconds]
mulk has joined #yocto
<tgamblin> there's some nasty tmpdir stuff getting injected into files e.g. _mt19937.pyx.c, e.g.:
<tgamblin> #define __pyx_kp_s_home_tgamblin_workspace_yocto_p __pyx_mstate_global->__pyx_kp_s_home_tgamblin_workspace_yocto_p
<RP> tgamblin: that looks like a machine conversion of a build path :/
<tgamblin> RP: right
<RP> tgamblin: if you could find where that happens you could apply the remappings from DEBUG_PREFIX_MAP onto the paths before they're encoded
hexbrex has joined #yocto
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
lexano has quit [Remote host closed the connection]
Grogu68 has quit [Quit: Client closed]
davidinux1 has joined #yocto
lexano has joined #yocto
leon-anavi has quit [Quit: Leaving]
Chaser has joined #yocto
Chaser has quit [Read error: Connection reset by peer]
<khem> RP:seeing this https://0x0.st/XGml.txt with latest master-next + clang
<RP> khem: :(
<RP> khem: you need JPEW
<khem> btw I am able to build images with both gcc default and clang default
<khem> and clang + llvm-runtime default
<RP> khem: nice :)
florian has quit [Ping timeout: 260 seconds]
<khem> thats a world build
<khem> the error seems to be packaging error perhaps easy to fix
<khem> ah to reproduce it, I need to enable multilib, I see
florian has joined #yocto
<nerdboy> since you can never have too much practical documentation for this stuff: https://github.com/VCTLabs/vct-enclustra-bsp-platform
<nerdboy> *arria10 workflow for new-ish hw
geoff__ has quit [Remote host closed the connection]
<JPEW> khem: Hrm
<JPEW> Do you still have that sandbox?
<khem> yes I do
<khem> RP: we have qemux86-world build but underneath its building qemux86-64 with 32bit multilib
<khem> kind of misnomer, perhaps it should be called qemux86-64-multilib or somesuch
geoffhp has joined #yocto
<JPEW> khem: Can you run `rg 'libgcc.*GPL-3_0-with-GCC-exception' build/tmp/deploy/spdx/3.0.1/` (or sub `grep -R` for `rg` if you don't use ripgrep)
<JPEW> khem: Heh, sorry. I forgot SPDX_PRETTY = "1" is not the default :P anyway I can work with this
<khem> added in site.conf for future
<khem> perhaps a good thing for yoe distro to enable by default regardless, what is the penalty ?
<JPEW> khem: The SPDX files are larger
<JPEW> They have "extraneous" whitespace
<khem> how large ?
<JPEW> khem: I forget... like 5-10% maybe?
<khem> ok
<JPEW> You can also just do `cat <FILE> | jq .` to make it pretty
<JPEW> khem: Are you adding more entries to SPDXLICENSEMAP in your layers?
<khem> seems not
<khem> meta-qt6/conf/layer.conf has one entry but this build is not including meta-qt6
Knogle has joined #yocto
<JPEW> Did you just pull up a ways perhaps?
<JPEW> Hmm... there does appear to be a bug hiding in here
druppy has joined #yocto
tacocatgirl has joined #yocto
<tacocatgirl> I'm having issues where bitbake will remove "stale objects" after I make a really small config change like for example the root password. Is this supposed to be happening? If so is there a workaround?
<tacocatgirl> also I'm using the kas-container at https://github.com/siemens/kas
ptatrai has quit [Remote host closed the connection]
ptatrai has joined #yocto
ptatrai has quit [Ping timeout: 252 seconds]
druppy has quit [Ping timeout: 272 seconds]
rob_w has joined #yocto
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
tacocatgirl has quit [Quit: Client closed]
cyxae has quit [Quit: cyxae]
cyxae has joined #yocto
DvorkinDmitry has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
tacocatgirl has joined #yocto
florian has quit [Ping timeout: 252 seconds]
Knogle has quit [Quit: WeeChat 4.4.2]
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
tacocatgirl has quit [Quit: Client closed]
sakman has quit [Remote host closed the connection]
sakman has joined #yocto
florian has joined #yocto
goliath has quit [Quit: SIGSEGV]
cyxae has quit [Quit: cyxae]
tolnanwo has quit [Quit: WeeChat 4.4.2]
tolnanwo has joined #yocto
davidinux1 has quit [Ping timeout: 246 seconds]
prabhakalad has quit [Quit: Konversation terminated!]
prabhakalad has joined #yocto
<khem> depends on where the change is, bitbake does a good job of dependency checks and will only redo whats needed to assimilate the change
<JPEW> khem: I think I found the problem
<khem> oh neat
<khem> I am sure its the indirect mapping of licenses that gcc recipes do, tripped the original logic perhaps :)
paulg has quit [Ping timeout: 245 seconds]
<JPEW> No... it's because of the fix by Hongxu (f964b31c683e8ab02ce49f2c577a69e3d5de1e63) and bitbake didn't detect the change and rebuild so you got part of the build from sstate
<JPEW> RP: Heh... so bitabakes dependency scanner for python code doesn't like object member functions...
<JPEW> Which is fair, because that is probably _really_ complicated to do correctly
dankm has quit [Remote host closed the connection]
<khem> my builds are crazy due to clang combinations I am testing, I think normal usecases wont run into such situations often
warthog9 has quit [Quit: Leaving]
dankm has joined #yocto
geoffhp has quit [Remote host closed the connection]
geoffhp has joined #yocto
warthog9 has joined #yocto
<RP> JPEW: that doesn't surprise me at all ;-)
<RP> JPEW: we can add manual dependencies
davidinux1 has joined #yocto
Kubu_work has quit [Quit: Leaving.]
davidinux1 has quit [Ping timeout: 260 seconds]
rob_w has quit [Read error: Connection reset by peer]
Shaun_ is now known as Shaun