yocti has quit [Remote host closed the connection]
tammranil has quit [Remote host closed the connection]
tammranil has joined #yocto
Vonter has quit [Ping timeout: 245 seconds]
Vonter has joined #yocto
alessio has joined #yocto
Vonter has quit [Ping timeout: 268 seconds]
wojci has quit [Ping timeout: 248 seconds]
Vonter has joined #yocto
Articulus has joined #yocto
savolla has joined #yocto
eduter16 has joined #yocto
eduter16 has quit [Ping timeout: 240 seconds]
rob_w has joined #yocto
nzingile has joined #yocto
mckoan|away is now known as mckoan
eduter has joined #yocto
ChristosG has joined #yocto
rfuentess has joined #yocto
bhstalel has joined #yocto
geoff__ has quit [Remote host closed the connection]
florian has joined #yocto
Vonter has quit [Ping timeout: 252 seconds]
Vonter has joined #yocto
ChristosG has quit [Ping timeout: 240 seconds]
leon-anavi has joined #yocto
enok has joined #yocto
zeemate has joined #yocto
ChristosG has joined #yocto
Vonter has quit [Ping timeout: 246 seconds]
florian has quit [Ping timeout: 248 seconds]
Vonter has joined #yocto
Guest57 has joined #yocto
Guest27 has joined #yocto
Guest57 has quit [Quit: Client closed]
Guest27 has quit [Ping timeout: 240 seconds]
vthor_ has quit [Excess Flood]
vthor_ has joined #yocto
jero has quit [Ping timeout: 245 seconds]
chep has quit [Ping timeout: 244 seconds]
florian_kc is now known as florian
florian_kc has joined #yocto
enok71 has joined #yocto
enok has quit [Ping timeout: 252 seconds]
enok71 is now known as enok
enok71 has joined #yocto
enok has quit [Ping timeout: 260 seconds]
enok71 has quit [Ping timeout: 245 seconds]
dmoseley has quit [Ping timeout: 252 seconds]
dmoseley has joined #yocto
nzingile has quit [Ping timeout: 265 seconds]
rob_w has quit [Remote host closed the connection]
<bhstalel>
Has anyone encountred issue with running "git describe" in a custom class, the issue is that sometimes we get the error of "git" is running as uid=0, it is like BitBake is running "git describe" in a root context, it is really random
Tyaku has joined #yocto
eduter has quit [Quit: Client closed]
<neverpanic>
Chances are you're in a task that runs under pseudo, so it looks as if it's running as root, but it really isn't.
<neverpanic>
Of course that'll still trigger Git's "working on a tree not owned by you" check.
<Tyaku>
Hello, We have a receipe that generate a kernel module (.ko) that is integrated in /lib/...But now we would like to integrate it directly in the kernel so that it starts faster during the kernel boot. Did someone know 'how' to do it ? Do we have to integrate the code directly in the Makefiles of the kernel ?
eduter has joined #yocto
<bhstalel>
neverpanic We are calling a Python function that runs "git describe" in parsing time, as (SOME_VAR = "${@some_func..}", I don't know why it is running as root at that time
rfuentess has quit [Remote host closed the connection]
nzingile has joined #yocto
goliath has joined #yocto
michalsieron has joined #yocto
<michalsieron>
hi there. Is it possible to use `kernel-module-split.bbclass` WITHOUT generating `.conf` files, but rather having them already prepared? I have a recipe that compiles kernel modules and provides `.conf` files for them to be put in `modprobe.d`, but I think because of this commit
chep` has quit [Read error: Connection reset by peer]
<ernstp>
Hmm poky/bitbake/lib/bb/tests/fetch.py has some examples..
Guest67 has joined #yocto
<smurray>
RP: am I correct in thinking qemuriscv64 doesn't get tested on the AB at present?
<RP>
smurray: correct. No member has stepped up to sponsor it
chep has joined #yocto
<Guest67>
thanks khem
<smurray>
RP: okay, I was running the Rust selftest against various machines to test scarthgap/rust, and there's a failure with qemuriscv64, so I was wondering if there was anything to compare against
<ernstp>
rburton: aha, I can use PATH and BASENAME
<RP>
smurray: I think Yash may have posted some results on the mailing list with his upgrades of rust?
reatmon_ has quit [Remote host closed the connection]
<RP>
not sure which platforms were in there
reatmon_ has joined #yocto
<smurray>
RP: ah, good point, I'll go look through his emails to check
<smurray>
RP: the last couple of times he gave results (1.83 was the last I can see), riscv wasn't in the table, so I guess WR do not test it either. I'll do a couple more experiments, but won't consider it a blocker for now, I guess
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]
<fullstop>
I have an image which has some things poked into the filesystem with a IMAGE_PREPROCESS_COMMAND hook. This has proven to be unreliable since I can't really control when it happens.
<fullstop>
Is there a better method of generating some content when an image is built?
<fullstop>
For example, if a variable referenced in the hook is changed, it will not rebuild the image
<rburton>
fullstop: rootfs postprocess would likely be a better way to get stuff into the image but the answer here is to put some vardeps in the right place
<fullstop>
rburton: thank you, I will look into that.
<rburton>
if bitbake can't tell that it needs to rerun you can tell it with do_rootfs[vardeps] += "THE_VAR_NAME"
<rburton>
(assuming you use ROOTFS_POSTPROCESS_COMMAND so the relevant task is do_rootfs)
chep has joined #yocto
<fullstop>
awesome
<rburton>
the postprocess command is called after the rootfs tree is constructed so you can just poke at it directly as its just a directory at that point
<rburton>
(IMAGE_ROOTFS is the top of the tree)
<fullstop>
Thanks. I kind of remember changing this from ROOTFS to IMAGE for some reason. I'll try it see if I can remember why. :-)
chep has quit [Read error: Connection reset by peer]
<fullstop>
ah, I changed it because of some systemd shenanigans.
<khem>
interesting why would systemd enforce it
<fullstop>
I will try to explain
<fullstop>
I have SYSTEMD_UNIT_PATH set on the kernel command line
<fullstop>
and my file system is read-only
<fullstop>
so I remove, for example, /etc/systemd/system/app-platform.target.wants to /run/systemd/system/app-platform.target.wants
<fullstop>
sorry, remove the one in etc, symlink to run
<fullstop>
This lets units be enabled / disabled at runtime without needing to write to /etc. I can call systemd-preset at startup and it figured out all that jazz
<khem>
hmm it does it offline too during rootfd
<fullstop>
I forget which task does it offline, it might be image_pre ?
<fullstop>
Anyway, if those directories are not there it gets really cranky
chep` has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep` is now known as chep
chep has quit [Client Quit]
chep has joined #yocto
florian_kc has joined #yocto
leon-anavi has quit [Quit: Leaving]
chep` has joined #yocto
savolla has quit [Quit: WeeChat 4.4.3]
chep has quit [Read error: Connection reset by peer]
chep` is now known as chep
chep has quit [Client Quit]
savolla has joined #yocto
chep has joined #yocto
reatmon_ has quit [Read error: Connection reset by peer]
reatmon_ has joined #yocto
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]
bhstalel has quit [Ping timeout: 240 seconds]
florian_kc has quit [Ping timeout: 265 seconds]
chep has joined #yocto
chep has quit [Client Quit]
Habbie has joined #yocto
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]
florian_kc has joined #yocto
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
savolla has quit [Quit: WeeChat 4.4.3]
savolla has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
frgo has joined #yocto
chep has quit [Client Quit]
chep` has joined #yocto
chep` is now known as chep
chep has quit [Remote host closed the connection]
chep` has joined #yocto
chep` is now known as chep
ello has joined #yocto
ello_ has joined #yocto
Kubu_work has quit [Quit: Leaving.]
chep has quit [Read error: Connection reset by peer]
chep has joined #yocto
goliath has quit [Quit: SIGSEGV]
chep has quit [Client Quit]
cyxae has quit [Quit: cyxae]
skandigraun has quit [Ping timeout: 240 seconds]
chep has joined #yocto
tec4 has quit [Quit: bye!]
tec4 has joined #yocto
chep has quit [Client Quit]
chep has joined #yocto
chep has quit [Read error: Connection reset by peer]