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
savolla has quit [Quit: WeeChat 4.4.3]
hnez has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
chrissi^|lxa has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
shoragan has quit [Quit: quit]
hnez has joined #yocto
chrissi^|lxa has joined #yocto
chrissi^|lxa has quit [Read error: Connection reset by peer]
hnez has quit [Read error: Connection reset by peer]
shoragan has joined #yocto
chrissi^|lxa has joined #yocto
mischief has joined #yocto
zeemate has quit [Ping timeout: 248 seconds]
Jones42 has quit [Ping timeout: 252 seconds]
Jones42 has joined #yocto
Bardon_ has quit [Quit: ZNC - https://znc.in]
Bardon has joined #yocto
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
Jones42 has quit [Ping timeout: 260 seconds]
Jones42 has joined #yocto
xmn has joined #yocto
sakman has quit [Remote host closed the connection]
gvmeson has joined #yocto
vmeson has quit [Ping timeout: 276 seconds]
sakman has joined #yocto
enok has joined #yocto
enok has quit [Client Quit]
enok has joined #yocto
enok has quit [Client Quit]
enok has joined #yocto
enok has quit [Ping timeout: 252 seconds]
LainIwakura has quit [Quit: Client closed]
enok has joined #yocto
xmn has quit [Ping timeout: 276 seconds]
LainIwakura has joined #yocto
druppy has joined #yocto
LainIwakura has quit [Quit: Client closed]
LainIwakura has joined #yocto
LainIwakura has quit [Write error: Broken pipe]
OnkelUlla has joined #yocto
goliath has joined #yocto
druppy has quit [Ping timeout: 252 seconds]
alessio has joined #yocto
rob_w has joined #yocto
ablu has quit [Ping timeout: 252 seconds]
ablu has joined #yocto
Lihis has quit [Quit: Quitting]
Lihis has joined #yocto
enok has quit [Ping timeout: 252 seconds]
frgo_ has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
frgo_ has quit [Ping timeout: 252 seconds]
florian has joined #yocto
mckoan|away is now known as mckoan
yannd has quit [Remote host closed the connection]
yannd has joined #yocto
rfuentess has joined #yocto
frieder has joined #yocto
frieder has quit [Ping timeout: 248 seconds]
zeemate has joined #yocto
florian has quit [Ping timeout: 276 seconds]
prabhakalad has joined #yocto
leon-anavi has joined #yocto
frieder has joined #yocto
florian has joined #yocto
MarioMariollini1 has joined #yocto
<MarioMariollini1> Is there a way I can easily append environment variables to the environment file of the esdk?
pilonsi has quit [Ping timeout: 268 seconds]
pilonsi has joined #yocto
<rburton> MarioMariollini1: see eg the (i think) meson cmake or curl recipes that drop an environment script in
<MarioMariollini1> rburton: thanks, seems you need to add a script during do_install:class-nativesdk to a particular dir, then the script should export the variables:
<MarioMariollini1> ```
<MarioMariollini1>     mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
<MarioMariollini1>     install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${SDKPATHNATIVE}/environment-setup.d/cmake.sh
<MarioMariollini1> ``
<MarioMariollini1> Pretty nice :)
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
savolla has joined #yocto
zero-xray6 has joined #yocto
zero-xray has quit [Ping timeout: 276 seconds]
zero-xray6 is now known as zero-xray
MarioMariollini1 has quit [Quit: Client closed]
pilonsi has quit [Ping timeout: 252 seconds]
savolla has quit [Ping timeout: 252 seconds]
vquicksilver has quit [Quit: WeeChat 4.4.3]
florian_kc has joined #yocto
gvmeson is now known as vmeson
savolla has joined #yocto
MarioMariollini1 has joined #yocto
bigch1cken has joined #yocto
bigch1cken has quit [Quit: Client closed]
MarioMariollini1 has quit [Ping timeout: 240 seconds]
MarioMariollini1 has joined #yocto
psi has joined #yocto
linus1 has joined #yocto
florian_kc has quit [Ping timeout: 248 seconds]
<linus1> I'm considering trying to move all configs from /etc to /usr/lib and I'm wondering if just changing sysconfdir is a good idea, what do you guys think?
florian_kc has joined #yocto
<psi> Hello,
<psi> Is there a clean way to make tasks depend on some calculated hash?
<psi> I calculate my hash like:
<psi> MYHASH := "${@get_my_hash(d)}"
<psi> Then I tried a few things but nothing worked:
<psi> 1) Adding vardeps to tasks:
<psi> do_fetch[vardeps] += " MYHASH"
<psi> Fail with:
<psi> ERROR: When reparsing recipe.bb:do_package_write_ipk, the basehash value changed from aaa to bbb. The metadata is not deterministic and this needs to be fixed.
<psi> 1.2) A fix to that would be setting:
<psi> BB_HASH_IGNORE_MISMATCH = '1'
<psi> Fails still with taskhash mismatches
<psi> 2) prepending to the tasks:
<psi> do_fetch:prepend() {
<psi>     _myhash_value=d.getVar("MYHASH")
<psi> }
<psi> But tasks is not rerun when hash changes
<psi> 3) Setting stamp-extra-info:
<psi> do_fetch[stamp-extra-info] = "${MYHASH}"
<psi> Totally kills yocto hashing because only ${MACHINE} is allowed there
<psi> 4) Setting custom stamps
<psi> STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}-${MYHASH}"
<psi> STAMPCLEAN = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/*-*-*"
<psi> SSTATE_SWSPEC = "sstate:gcc::${PV}:${PR}-${MYHASH}::${SSTATE_VERSION}:"
<psi> Again does not work because it generates errors when looking for lic files (I think there is an issue here when unpacking the recipe)
LainIwakura has joined #yocto
florian_kc has quit [Read error: Connection reset by peer]
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
LainIwakura has quit [Client Quit]
LainIwakura has joined #yocto
LainIwakura has quit [Client Quit]
ldywicki has quit [Quit: Connection closed for inactivity]
LainIwakura has joined #yocto
shivamurthy has quit [Quit: Connection closed for inactivity]
florian_kc has joined #yocto
florian_kc has quit [Read error: Connection reset by peer]
bigch1cken has joined #yocto
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
florian_kc has joined #yocto
bigch1cken has quit [Quit: Client closed]
cyxae has joined #yocto
xmn has joined #yocto
goliath has quit [Quit: SIGSEGV]
bigch1cken has joined #yocto
Axman6 has quit [*.net *.split]
LainIwakura has quit [Quit: Client closed]
LainIwakura has joined #yocto
rob_w has quit [Remote host closed the connection]
florian_kc has quit [Ping timeout: 276 seconds]
frieder has quit [Remote host closed the connection]
goliath has joined #yocto
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
florian has quit [Quit: Ex-Chat]
enok has joined #yocto
enok71 has joined #yocto
psi has quit [Quit: Client closed]
enok has quit [Ping timeout: 276 seconds]
enok71 is now known as enok
cyxae has quit [Remote host closed the connection]
florian_kc has joined #yocto
bigch1cken has quit [Quit: Client closed]
wicki0 has joined #yocto
savolla has quit [Quit: WeeChat 4.4.3]
wicki has quit [Ping timeout: 252 seconds]
wicki0 is now known as wicki
AdrianF has quit [Ping timeout: 252 seconds]
AdrianF has joined #yocto
MarioMariollini1 has quit [Quit: Client closed]
LainIwakura has quit [Quit: Client closed]
rcw has joined #yocto
cyxae has joined #yocto
bigch1cken has joined #yocto
rfuentess has quit [Remote host closed the connection]
LainIwakura has joined #yocto
cyxae has quit [Quit: cyxae]
mckoan is now known as mckoan|away
LainIwakura has quit [Ping timeout: 240 seconds]
frgo has joined #yocto
frgo has quit [Remote host closed the connection]
LainIwakura has joined #yocto
pilonsi has joined #yocto
frgo has joined #yocto
rcw has quit [Quit: Client closed]
frgo has quit [Read error: Connection reset by peer]
frgo has joined #yocto
frgo has quit [Remote host closed the connection]
frgo has joined #yocto
frgo_ has joined #yocto
frgo has quit [Ping timeout: 245 seconds]
frgo_ has quit [Read error: Connection reset by peer]
frgo has joined #yocto
frgo has quit [Read error: Connection reset by peer]
frgo has joined #yocto
leon-anavi has quit [Quit: Leaving]
<tgamblin> RP: rburton: have we discussed adding some sort of simple class that exports the current python3 MAJMIN for use by other recipes before?
<tgamblin> In my head it'd mean a bit more work for maintenance of the python3 recipe itself, but may make managing other modules a bit easier. I'm running into this with numpy right now
frgo has quit [Read error: Connection reset by peer]
frgo has joined #yocto
frgo has quit [Read error: Connection reset by peer]
LainIwakura has quit [Ping timeout: 240 seconds]
bigch1cken has quit [Quit: Client closed]
frgo has joined #yocto
frgo has quit [Read error: Connection reset by peer]
frgo_ has joined #yocto
frgo_ has quit [Ping timeout: 276 seconds]
LainIwakura has joined #yocto
Axman6 has joined #yocto
alessio has quit [Quit: alessio]
florian_kc has quit [Ping timeout: 265 seconds]
florian_kc has joined #yocto
prabhakalad has quit [Ping timeout: 245 seconds]
prabhakalad has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
pilonsi has quit [Ping timeout: 276 seconds]
tr4gic has joined #yocto
pilonsi has joined #yocto
<kanavin> tgamblin, python3-dir.bbclass already does it?
ptsneves has joined #yocto
rcw has joined #yocto
LainIwakura has quit [Ping timeout: 240 seconds]
Jones42 has quit [Ping timeout: 244 seconds]
rcw has quit [Quit: Client closed]
LainIwakura has joined #yocto
<tgamblin> kanavin: so it does, thanks
GillesM has joined #yocto
GillesM has quit [Remote host closed the connection]
bantu has quit []
bantu has joined #yocto
vquicksilver has joined #yocto
frgo has joined #yocto
frgo has quit [Ping timeout: 244 seconds]
druppy has joined #yocto
bantu has quit []
bantu has joined #yocto
ptsneves has quit [Ping timeout: 260 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 265 seconds]
Articulus has quit [Quit: Leaving]
LainIwakura has quit [Ping timeout: 240 seconds]
florian_kc is now known as florian
Kubu_work has quit [Quit: Leaving.]
Kubu_work has joined #yocto
Kubu_work has quit [Client Quit]
LainIwakura has joined #yocto
druppy has quit [Ping timeout: 244 seconds]
florian has quit [Ping timeout: 244 seconds]
Kubu_work has joined #yocto
dankm has quit [Ping timeout: 260 seconds]
frgo has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
tr4gic has quit [Ping timeout: 248 seconds]
dankm has joined #yocto
tr4gic has joined #yocto
tr4gic has quit [Max SendQ exceeded]
tr4gic has joined #yocto
zeemate has quit [Ping timeout: 276 seconds]
frgo has joined #yocto
LainIwakura has quit [Quit: Client closed]
LainIwakura has joined #yocto
frgo has quit [Ping timeout: 252 seconds]
LainIwakura has quit [Quit: Client closed]
frgo has joined #yocto
goliath has quit [Quit: SIGSEGV]
frgo has quit [Ping timeout: 252 seconds]