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
cabazon50 has joined #yocto
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
<zeddii> RP: doh. My bad. I forgot I was testing that with 6.6 and copied it in.
lexano has quit [Ping timeout: 272 seconds]
nayfe has quit [Quit: Client closed]
cabazon50 has quit [Quit: Client closed]
Jones42__ has joined #yocto
Jones42_ has quit [Ping timeout: 248 seconds]
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
Jones42 has joined #yocto
Jones42__ has quit [Ping timeout: 260 seconds]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
Jones42 has quit [Ping timeout: 245 seconds]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
enok has joined #yocto
Jones42 has joined #yocto
mbulut has quit [Ping timeout: 244 seconds]
enok has quit [Quit: enok]
enok71 has joined #yocto
enok71 is now known as enok
enok has quit [Ping timeout: 245 seconds]
Jones42 has quit [Ping timeout: 248 seconds]
Jones42 has joined #yocto
jmd has joined #yocto
amitk has joined #yocto
ablu has quit [Ping timeout: 276 seconds]
ablu has joined #yocto
sakman has quit [*.net *.split]
mischief has quit [*.net *.split]
grma has quit [*.net *.split]
khimaros has quit [*.net *.split]
CosmicPenguin has quit [*.net *.split]
LetoThe2nd has quit [*.net *.split]
armpit has quit [*.net *.split]
madisox_ has quit [*.net *.split]
Crofton has quit [*.net *.split]
NishanthMenon has quit [*.net *.split]
michaelo has quit [*.net *.split]
mrpelotazo has quit [*.net *.split]
sakman has joined #yocto
grma has joined #yocto
mischief has joined #yocto
khimaros has joined #yocto
LetoThe2nd has joined #yocto
CosmicPenguin has joined #yocto
armpit has joined #yocto
madisox_ has joined #yocto
Crofton has joined #yocto
NishanthMenon has joined #yocto
michaelo has joined #yocto
mrpelotazo has joined #yocto
tgamblin has quit [*.net *.split]
mdp has quit [*.net *.split]
smurray has quit [*.net *.split]
dvergatal has quit [*.net *.split]
jstephan_ has quit [*.net *.split]
xantoz has quit [*.net *.split]
demirok has quit [*.net *.split]
jdiez has quit [*.net *.split]
dvergatal has joined #yocto
smurray has joined #yocto
tgamblin has joined #yocto
mdp has joined #yocto
demirok has joined #yocto
jstephan_ has joined #yocto
xantoz has joined #yocto
jdiez has joined #yocto
tlwoerner has quit [Remote host closed the connection]
tlwoerner has joined #yocto
Articulus has joined #yocto
ray-san has joined #yocto
goliath has joined #yocto
jmd has quit [Remote host closed the connection]
rfuentess has joined #yocto
rob_w has joined #yocto
enok has joined #yocto
leon-anavi has joined #yocto
enok has quit [Ping timeout: 252 seconds]
florian has joined #yocto
YKT has joined #yocto
Kubu_work has joined #yocto
mckoan|away is now known as mckoan
dmoseley has quit [Ping timeout: 252 seconds]
dmoseley_ has joined #yocto
florian_kc has joined #yocto
YKT has quit [Ping timeout: 256 seconds]
mvlad has joined #yocto
mbulut has joined #yocto
florian has quit [Quit: Ex-Chat]
rob_w has quit [Remote host closed the connection]
florian_kc has quit [Ping timeout: 252 seconds]
ehussain has joined #yocto
mihai has joined #yocto
sakoman has quit [Ping timeout: 252 seconds]
ahussain has joined #yocto
ehussain has quit [Ping timeout: 260 seconds]
ahussain is now known as ehussain
kanavin has joined #yocto
enok has joined #yocto
sakoman has joined #yocto
enok has quit [Ping timeout: 260 seconds]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
florian_kc has joined #yocto
<RP> jonmason, rburton: https://autobuilder.yoctoproject.org/typhoon/#/builders/97/builds/8690/steps/16/logs/stdio - qemuarm64 intermittent glitch - "hub failed to enable device, error -62"
<rburton> new kernel?
<RP> rburton: no, that is a different email
<RP> the one above is master
<rburton> bah
florian_kc has quit [Ping timeout: 255 seconds]
nayfe has joined #yocto
enok has joined #yocto
Troels has joined #yocto
Troels is now known as troels51
<troels51> Hi everyone. While debugging a recipe I was writing, the log warnings were kind of lacking. I was getting a FileNotFoundError(2, "No such file or directory"), which was lacking the path of the file that was missing, tracking this log message brought me to a log line that looked like this 'logger.error(repr(exc))' with exc being the exception being
<troels51> logged. Changing this to log str(exc) instead of repr(exc) gave me the path information i needed. It looks like it is a general pattern that bitbake logs repr(object) instead of str(object), is there a reason why this is, and would you accept a patch that changes this?
enok has quit [Ping timeout: 252 seconds]
<RP> troels51: we've had the opposite problem in the past where str(e) has also lost information if I remember rightly. I tink we concluded repr() was safer :/
<RP> troels51: str is probably more correct looking at the docs but it does sometimes lose info
<troels51> Hmm, that's unfortunate. Do you know the specifics?
<troels51> Of what is lost
<RP> troels51: I don't remember I'm afraid. Probably we needed to know some parameters which repr() did show and str simplified too muc
<troels51> Looking at the docs, it sounds to me that repr() is meant for printing objects such that they can be parsed again, whereas str() is human readable purposes. But if either looses some amount of information, i won't do a patch changing it :)
prabhakalad has quit [Ping timeout: 248 seconds]
<RP> troels51: a patch showing where you ran into this would be helpful. I'm wondering whether we print both repr() and str()...
prabhakalad has joined #yocto
<troels51> Ill put something together monday :). I only ran in to logs with repr, but i there is one __repr__ that forwards to __str__, which i don't think is right
<jonmason> RP: thanks, I love intermittent issues :)
<RP> jonmason: I have more if you'd like? :)
<jonmason> No thanks, assign them all to rburton
<RP> jonmason: He said something about vacation and not wanting to deprive you of them!
<fray> Is there a way to know if a multiconfig is available? Is it as simple as checking if something exists in BBMULTICONFIG? (I have a recipe that depends on a multiconfig, but there are cases where the multiconfig might not be added/enabled and I want to throw an error other then multiconfig dependency is bad.
Xagen has joined #yocto
rfuentess has quit [Remote host closed the connection]
Pferreira has joined #yocto
berton has joined #yocto
<RP> fray: I think checking that should work
<Pferreira> Hey guys, im trying to send a patch using: git send-email --to openembedded-core@lists.openembedded.org --confirm=always -M -2
<Pferreira> Is this correct? im receiving successfully on my email a copy of it but it doesnt seem to be visible on the https://lists.openembedded.org/g/openembedded-core/messages
<RP> Pferreira: logs show "Non-member pedro.silva.ferreira@criticaltechworks.com attempted to send message "[PATCH 1/2] buildhistory: fix package output folder creation" via email
<RP> Pferreira: are you subscribed?
<Pferreira> Got it, im using my company account but im subscribed with my personal account. Thanks for the hint
<RP> denix: did you see my question about the reproducibility issue? Wondering if I should try and help?
Pferreira has quit [Quit: Client closed]
<rburton> RP: well -62 might be '#defineETIME62/* Timer expired */'
<RP> rburton: yes :/
enok has joined #yocto
luc4 has joined #yocto
_lore_ has quit [Quit: ZNC 1.8.2+deb2+deb11u1 - https://znc.in]
_lore_ has joined #yocto
Xagen has quit [Ping timeout: 252 seconds]
Xagen has joined #yocto
nayfe has quit [Quit: Client closed]
lexano has joined #yocto
luc4 has quit [Remote host closed the connection]
luc4 has joined #yocto
luc4 has quit [Ping timeout: 260 seconds]
jmd has joined #yocto
Tyaku_ has quit [Quit: Lost terminal]
<RP> denix: I think the patch has a quoting problem for ${1} after some experiments. I'm working on some fixes
amitk_ has joined #yocto
jmd has quit [Remote host closed the connection]
jmd has joined #yocto
amitk has quit [Ping timeout: 276 seconds]
leon-anavi has quit [Quit: Leaving]
mckoan is now known as mckoan|away
davidinux2 has joined #yocto
davidinux2 has quit [Client Quit]
mbulut has quit [Ping timeout: 252 seconds]
ehussain has quit [Ping timeout: 276 seconds]
enok has quit [Ping timeout: 276 seconds]
Perflosopher has quit [Quit: The Lounge - https://thelounge.chat]
Perflosopher has joined #yocto
goliath has quit [Quit: SIGSEGV]
enok has joined #yocto
jpuhlman has quit [Read error: Connection reset by peer]
jpuhlman has joined #yocto
sakman_ has joined #yocto
sakman has quit [Ping timeout: 260 seconds]
troels51 has quit [Quit: Client closed]
jmd has quit [Remote host closed the connection]
<mischief> i keep getting errors about cached basehash changes and i kept ignoring it but it's friday so i suppose it's time to find out what's wrong
<mischief> my recipe (upx-native_4.2.4.bb) https://0x0.st/XOxP.txt, and 'bitbake-diffsigs -t upx-native do_unpack' https://0x0.st/XOxK.txt. i have no clue why these variables would suddenly change :s
enok has quit [Quit: enok]
enok71 has joined #yocto
goliath has joined #yocto
enok71 is now known as enok
dmoseley_ has quit [Quit: ZNC 1.9.1 - https://znc.in]
dmoseley has joined #yocto
enok has quit [Ping timeout: 252 seconds]
berton has quit [Quit: Connection closed for inactivity]
Articulus5 has joined #yocto
Articulus has quit [Ping timeout: 260 seconds]
paulg has joined #yocto
goliath has quit [Quit: SIGSEGV]
amitk_ has quit [Ping timeout: 245 seconds]
mvlad has quit [Remote host closed the connection]
Kubu_work has quit [Quit: Leaving.]
florian_kc has joined #yocto
cabazon13 has joined #yocto
goliath has joined #yocto
Guest92 has joined #yocto
prabhakalad has quit [Quit: Konversation terminated!]
prabhakalad has joined #yocto
cabazon13 has quit [Quit: Client closed]
mbulut has joined #yocto
florian_kc has quit [Ping timeout: 245 seconds]
Guest92 has quit [Quit: Client closed]
mbulut has quit [Ping timeout: 252 seconds]
tangofoxtrot has quit [Remote host closed the connection]
tangofoxtrot has joined #yocto
dkl has quit [Quit: %quit%]
Vonter has quit [Ping timeout: 248 seconds]
dkl has joined #yocto
Vonter has joined #yocto
jpuhlman has quit [Ping timeout: 248 seconds]
jpuhlman has joined #yocto