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
<JPEW> josch91: sorry about that. I'm out until next week, but if you ping me then I'll take a look
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
Perflosopher has quit [Ping timeout: 264 seconds]
Perflosopher has joined #yocto
<khem> rfs613:interesting, do you tweak the pressure settings for io/mem/cpu ?
Jones42_ has joined #yocto
Jones42 has quit [Ping timeout: 248 seconds]
xmn_ has joined #yocto
xmn has quit [Ping timeout: 260 seconds]
jclsn has quit [Ping timeout: 260 seconds]
jclsn has joined #yocto
Daanct12 has joined #yocto
Jones42__ has joined #yocto
Jones42_ has quit [Ping timeout: 246 seconds]
josch91 has quit [Quit: Client closed]
xmn has joined #yocto
xmn has quit [Read error: Connection reset by peer]
xmn_ has quit [Ping timeout: 260 seconds]
xmn has joined #yocto
[[R]] has joined #yocto
rbox has quit [Ping timeout: 260 seconds]
[[R]] is now known as rbox
paulg has quit [Read error: Connection reset by peer]
|Xagen has joined #yocto
Xagen_ has joined #yocto
Xagen has quit [Ping timeout: 265 seconds]
|Xagen has quit [Ping timeout: 246 seconds]
nerdboy has quit [Ping timeout: 260 seconds]
nerdboy has joined #yocto
Daanct12 has quit [Ping timeout: 252 seconds]
Daanct12 has joined #yocto
OnkelUll_ has joined #yocto
OnkelUll_ has left #yocto [#yocto]
goliath has joined #yocto
xmn has quit [Quit: ZZZzzz…]
Minvera has quit [Ping timeout: 252 seconds]
rob_w has joined #yocto
rfuentess has joined #yocto
enok has joined #yocto
alessioigor has joined #yocto
BenBE has joined #yocto
frieder has joined #yocto
zpfvo has joined #yocto
mbulut has joined #yocto
alessioigor has quit [Remote host closed the connection]
mbulut_ has joined #yocto
enok has quit [Read error: Connection reset by peer]
mckoan|away is now known as mckoan
alessioigor has joined #yocto
Kubu_work has joined #yocto
Bardon has quit [Quit: ZNC - https://znc.in]
Bardon has joined #yocto
Chaser has joined #yocto
enok has joined #yocto
mvlad has joined #yocto
leon-anavi has joined #yocto
jmiehe has joined #yocto
enok has quit [Ping timeout: 252 seconds]
Chaser has quit [Ping timeout: 255 seconds]
florian has joined #yocto
jmiehe has quit [Quit: jmiehe]
wojci has joined #yocto
alessioigor has quit [Remote host closed the connection]
alessioigor has joined #yocto
berton has joined #yocto
fotte has joined #yocto
<fotte> Hi everyone. Not really yocto related, but maybe someone knows something.. I have an i.MX6 ULL SOC, which is a cortex A7 core - does this support the 'Arm accelerated cryptographic algorithms' that can be compiled into the kernel?
Tyaku has joined #yocto
pretec has joined #yocto
<pretec> Hi everyone.
<usvi> hulo
<pretec> The website https://www.yoctoproject.org/development/releases/ says that "Scarthgap" is a "Previos Release Series" with status EOL
<pretec> That looks a bit wrong, no?
florian_kc has joined #yocto
alessioigor has quit [Remote host closed the connection]
alessioigor has joined #yocto
<rber__> @pretec: https://wiki.yoctoproject.org/wiki/Releases syes it's LTS
<rber__> says
<pretec> Yeah, thats what i thought :-)
<pretec> I was explaining a team where to find the releases and information about the yoctoproject and then we stumbled over the wrong information.
<pretec> In case anyone with write access to the website is reading here: Can we fix this? :-)
<rber__> @mbulut the only caveat with bitbake-getvar is that it only shows you the order in which operators show up in the sources, which is not necessary the order in which they are applied. Take care with :append :prepend :remove since they are applied after parsing
sakoman has quit [Ping timeout: 245 seconds]
<mbulut> rber__, good point, yes
<mbulut> thx for the heads-up
sakoman has joined #yocto
<RP> pretec: could you email helpdesk@yoctoproject.org and mention that please?
<pretec> @RP, yes, will do
<RP> pretec: thanks
<mbulut> is there anything handy in bb.utils for space separated list operations?
<mbulut> things like join, filter, etc?
<mbulut> or better use vanilla python?
<RP> mbulut: doesn't standard python work?
<RP> right :)
<mbulut> :)
<mbulut> i was just thinking maybe there's sth like the cmake list functions for recurring things
prabhakalad has quit [Quit: Konversation terminated!]
prabhakalad has joined #yocto
enok has joined #yocto
Guest74 has joined #yocto
<Guest74> Hello
<Guest74> did anyone tried to use read-only rootfs with systemd and had problem with systemd-hostnamed service?
<Guest74> We need to change hostname in runtime while having whole rootfs mounted as ro
<Guest74> then, when trying to change hostname with hostnamectl we run into following issue
<Guest74> # hostnamectl set-hostname a
<Guest74> Could not set static hostname: /etc/hostname is in a read-only filesystem.
<Guest74> Hint: use --transient option when /etc/machine-info or /etc/hostname cannot be modified (e.g. located in read-only filesystem).
<Guest74> our idea was to create a symlink for /etc/hostname to some persistent partition
<Guest74> so now we are able to write to it e.g. `echo a > /etc/hostname`
<Guest74> but using hostnamectl still fails
<mbulut> you could put an overlay on your ro rootfs
<wojci> Guest74, You probably need to use an overlay FS which would allow you to write to /etc if configured so.
<Guest74> any idea why?
<Guest74> thanks, we thought about overlay fs but is it safe? if whole etc has writeable overlay then anything there can be changed, custom config failes, services drop-ins..
<rfs613> khem: no changes to pressure settings, using distro defaults (ubuntu-20.04 fwiw)
<mbulut> you don't need to have an overlay over everything
<mbulut> you can do it on folder granularity
<Guest74> understood, but still, if I want to have `/etc/hostname` as an overlay then whole `/etc` needs to have overlay
<Guest74> and as I said, then everything in `/etc` can be changed
<Guest74> or maybe there is a way to only allow /etc/hostname to be writeable? we tried with `mount --bind` and event `mount` returns that /etc/hostname is rw, hostnamectl still return that read-only error
enok has quit [Ping timeout: 246 seconds]
<wojci> OVERLAYFS_WRITABLE_PATHS looks like it can be used to specify directories .. I don't know if this can be used to specify a list of files that can be changed.
<mbulut> Guest74, have you tried running hostnamectl with strace to see what files it accesses? maybe it takes a different route or touches additional files...
<mbulut> and how -- maybe it doesn't follow symlinks?
pretec has quit [Remote host closed the connection]
<Guest74> wojci thanks, I will look into that, I did not know this
<Guest74> mbulut yes, I did run it with strace as I was also thinking that I will find something there, but TBH I did not get anything out of it... And yes, it does look like it doesn't follow symlink but I have no idea how I could prove that
<mbulut> hmm.. maybe check source code?
florian has quit [Quit: Ex-Chat]
Tyaku has quit [Quit: leaving]
florian_kc has quit [Ping timeout: 246 seconds]
lexano has quit [Remote host closed the connection]
jbo has quit [Read error: Connection reset by peer]
jbo has joined #yocto
xmn has joined #yocto
florian has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.4.1]
Guest74 has quit [Quit: Client closed]
florian has quit [Ping timeout: 252 seconds]
lexano has joined #yocto
alessioigor has quit [Remote host closed the connection]
zkrx has quit []
florian has joined #yocto
mckoan is now known as mckoan|away
Jones42__ is now known as Jones42
DvorkinDmitry has joined #yocto
<DvorkinDmitry> Using Scarthgap. how can I change the CLANG version in meta-clang? v 18.1.6 is too new
wojci has quit [Ping timeout: 252 seconds]
zkrx has joined #yocto
Minvera has joined #yocto
mbulut has quit [Ping timeout: 246 seconds]
rob_w has quit [Remote host closed the connection]
rber__ has quit [Quit: Leaving]
fotte has quit [Ping timeout: 246 seconds]
prabhakalad has quit [Quit: Konversation terminated!]
rber|res has joined #yocto
dmoseley has quit [Quit: ZNC 1.9.1 - https://znc.in]
goliath has quit [Quit: SIGSEGV]
dmoseley has joined #yocto
LDericher has quit [Quit: ZNC 1.8.2 - https://znc.in]
LDericher has joined #yocto
ray-san has quit [Ping timeout: 245 seconds]
prabhakalad has joined #yocto
frieder has quit [Remote host closed the connection]
BenBE has quit [Ping timeout: 246 seconds]
jmiehe has joined #yocto
fotte has joined #yocto
rfuentess has quit [Remote host closed the connection]
jmd has joined #yocto
goliath has joined #yocto
leon-anavi has quit [Remote host closed the connection]
zpfvo has quit [Remote host closed the connection]
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
BenBE has joined #yocto
jmiehe has quit [Quit: jmiehe]
<khem> rfs613: interesting, I would suggest to build some large package e.g. say webkit or llvm, using old SSD and then the NVME one and see if that also has similar outcome
<khem> atleast you can remove the complexity a tad bit and see if the PCIE lanes are not too crowded for that much of data to pass through
<rfs613> khem: how about rust? that's one of the biggest ones, part of the builds I was doing.
<khem> sometimes things do not work as advertized :)
Kubu_work has quit [Quit: Leaving.]
<rfs613> it takes a good half hour to build that one...
fotte has quit [Ping timeout: 260 seconds]
<JaMa> rust is slow, but a lot less parallelized build compared to nodejs or chromium
jmiehe has joined #yocto
flom84 has joined #yocto
flom84 has quit [Remote host closed the connection]
jmiehe has quit [Remote host closed the connection]
florian has quit [Ping timeout: 255 seconds]
mihai has quit [Quit: Leaving]
jmiehe has joined #yocto
jmiehe has quit [Quit: jmiehe]
<khem> yeah half an hour build will give you stark difference in numbers if it exists
<khem> yeah chromium might be a better one for benchmarking disk performance
<khem> or webkit perhaps will be even better since it wont take hours like chromium to build
mjm has quit [Quit: mjm]
GNUmoon has quit [Remote host closed the connection]
GNUmoon has joined #yocto
berton has quit [Quit: Connection closed for inactivity]
vthor has joined #yocto
vthor has quit [Changing host]
vthor has joined #yocto
enok has joined #yocto
<fullstop> Does yocto have non-legacy iptables?
<fullstop> that is, the nftables emulation stuff
enok has quit [Ping timeout: 246 seconds]
DvorkinDmitry has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
fotte has joined #yocto
florian has joined #yocto
MattWeb82 has quit [Ping timeout: 248 seconds]
mvlad has quit [Remote host closed the connection]
jmd has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.2)]
enok has joined #yocto
olani- has joined #yocto
vthor has quit [Ping timeout: 246 seconds]
kanavin_ has joined #yocto
enok has quit [Ping timeout: 252 seconds]
kanavin has quit [Ping timeout: 265 seconds]
fotte has quit [Ping timeout: 244 seconds]
florian has quit [Ping timeout: 260 seconds]
Perflosopher has quit [Ping timeout: 255 seconds]
cabazon85 has joined #yocto
mbulut_ has quit [Ping timeout: 246 seconds]
Jones42_ has joined #yocto
cabazon85 has quit [Client Quit]
olani- has quit [Ping timeout: 252 seconds]
Jones42 has quit [Ping timeout: 246 seconds]
nerdboy has quit [Remote host closed the connection]
Jones42__ has joined #yocto
Jones42_ has quit [Ping timeout: 255 seconds]
jmiehe has joined #yocto
Perflosopher has joined #yocto
jmiehe has quit [Client Quit]