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
geoffhp has quit [Ping timeout: 272 seconds]
sugoi1 has joined #yocto
sugoi has quit [Ping timeout: 252 seconds]
sugoi1 is now known as sugoi
Daanct12 has joined #yocto
jclsn has quit [Ping timeout: 260 seconds]
jclsn has joined #yocto
stgl has quit [Quit: ZNC 1.8.2 - https://znc.in]
stgl has joined #yocto
Jones42 has joined #yocto
Jones42_ has quit [Ping timeout: 246 seconds]
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
Jones42_ has joined #yocto
Jones42 has quit [Ping timeout: 252 seconds]
xmn_ has joined #yocto
xmn has quit [Ping timeout: 246 seconds]
xmn_ has quit [Client Quit]
Daanct12 has quit [Ping timeout: 265 seconds]
Daanct12 has joined #yocto
<khem> DvorkinDmitry: [depends] here is specifying inter-task dependency and its variable flag syntax, it does not allow override style syntax append/prepend/remove it does allow all other standard variable operation like =, +=
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
sugoi has joined #yocto
Guest51 has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
<Guest51> Hi, I want to know how Yocto internally cross compiles python libraries, the tools it use and whole process of how yocto cross compiles python libraries for any target board
<Guest51> Also in general without using yocto how we can cross compile python libraries for any target board with the help of its toolchain and which tools we have to use
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
albeu has joined #yocto
frieder has joined #yocto
wojci__ has joined #yocto
albeu has quit [Quit: Client closed]
Habbie has joined #yocto
Habbie has quit [Read error: Connection reset by peer]
Habbie has joined #yocto
Habbie has quit [Read error: Connection reset by peer]
fotte has joined #yocto
albeu has joined #yocto
leon-anavi has joined #yocto
florian_kc has joined #yocto
CrazyGecko has joined #yocto
mckoan|away is now known as mckoan
Kubu_work has joined #yocto
rfuentess has joined #yocto
<RP> Guest51: all the code is there so you can see how it does it! :)
<albeu> RP: I think the issue is due to a different directory layout of the layers between my machine and the build server. On my machine I have all layers next to each other in the same directory, on the buildserver the additional layers are checked out in a sub directory of the main layer. AFAICT the full path of files are used for sorting the
<albeu> file_checksum_values array which result in the different ordering when some files come from the dependent layers.
<RP> albeu: could you see if that hels?
<RP> helps
<albeu> sure I'll test that. I was wondering if it might not make more sense to sort by the hash as that would also deal with duplicate basename
<albeu> or is there some cases where there is no hash?
<RP> albeu: there are cases where the location of the file in the directory structure matters and needs to be accounted for (with the same hash)
<RP> albeu: there are ways that could still be accounted for but...
Guest51 has quit [Ping timeout: 256 seconds]
mbulut_ has joined #yocto
<albeu> RP: While we are on the sstate topic I was first thinking that the issues I'm seeing came from the fact that do_fetch (which is arch-less) depend on do_recipe_qa (which is arch specific) and opened this bug: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15588 Can this be an issue too, or am I missing something and it doesn't really matter?
CosmicPenguin has quit [Ping timeout: 260 seconds]
Xogium has quit [Ping timeout: 260 seconds]
CosmicPenguin has joined #yocto
OnkelUll_ has joined #yocto
brrrm has joined #yocto
brrm has quit [Ping timeout: 260 seconds]
sarahn has quit [Ping timeout: 260 seconds]
jclsn has quit [Ping timeout: 260 seconds]
tleb has quit [Ping timeout: 260 seconds]
OnkelUlla has quit [Ping timeout: 260 seconds]
Xogium has joined #yocto
jclsn has joined #yocto
tleb has joined #yocto
florian_kc has quit [Ping timeout: 276 seconds]
Habbie has joined #yocto
goliath has joined #yocto
sarahn has joined #yocto
Guest51 has joined #yocto
<RP> albeu: could you check that is the case with recent master? There were some changes recently which should have at least significantly helped with that
fotte_ has joined #yocto
<RP> albeu: I replied in the bug to capture that
Habbie has quit [Quit: once more]
<albeu> I'll see what I can do. Looking at master do_fetch still depend on do_recipe_qa so the taskhash of do_fetch will still be arch dependent
Habbie has joined #yocto
<RP> albeu: why would that make it arch dependent ?
fotte has quit [Ping timeout: 252 seconds]
<albeu> The do_fetch sstate contains the taskhash of do_recipe_qa so each arch has a different do_fetch taskhash
<RP> albeu: If do_recipe_qa isn't arch specific, that wouldn't be true
<albeu> If, but they currently are. I saw some diff that was full of arm vs x86 stuff
<albeu> TUNE_FEATURES and a lot of other arch tunning related stuff differ
<RP> that might be fixable though
<albeu> In principle that sounds strange to have arch-less stuff depend arch-specific stuff and currently only the 'do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic', 'do_preconfigure' tasks are made arch-less when the sstate is created
<albeu> But that shouldn't break anything, there will just be more do_fetch sstate than really needed, right?
<RP> albeu: it shouldn't be arch specific
<RP> albeu: it won't really matter since do_fetch isn't an sstate task anyway
<Dvergatal> khem: ahh yeah you are right
<Dvergatal> khem: but for now this RRECOMENDS, BAD_RECOMMENDATIONS and splitting procps-sysctl into to separate packages is sufficient
<albeu> RP: I see, thanks for taking the time to help with this
<albeu> But that is for do_package_qa and do_populate_lic, not do_recipe_qa
<RP> sorry, the message is wrong ;-)
<RP> it fixes recipe_qa
<RP> I'll write a proper commit message in due course, I was just trying to share it too quickly
florian has joined #yocto
sugoi has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
<paulbarker> Hey folks, I'm seeing an unexpected yocto-check-layer failure for a BSP layer - it works with kirkstone but not scarthgap
<paulbarker> The basehash for meta-ide-support:do_deploy changes when we change MACHINE, but that recipe is not marked as MACHINE-specific
<paulbarker> Do we just need to add `PACKAGE_ARCH = "${MACHINE_ARCH}"` to that recipe? (even though it inherits nopackages)
<RP> paulbarker: the key question is whether the data that recipe writes is machine specific
<RP> paulbarker: nopackages isn't relevant, the question is are the environment scripts and so machine specific or not
<paulbarker> It dumps the entire data dictionary
<RP> so that is very much machine specific then
<paulbarker> So, is PACKAGE_ARCH the right way to say that, even if the recipe doesn't create pacakges?
<paulbarker> If so, I can send a patch
<RP> yes, I think so
<paulbarker> Cool, I'll test it and send a patch if it works
<RP> albeu: that change causes some new errors :
Daanct12 has quit [Quit: WeeChat 4.4.1]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
<RP> albeu: I've pushed a new version since the dependencies were pruned a little too much :/
<albeu> I got 98% sstate match on my test build so that helped. Just ping me if you have a new version that I can test
Guest51 has quit [Ping timeout: 256 seconds]
florian_kc has joined #yocto
Jones42_ is now known as Jones42
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
belsirk has joined #yocto
rfuentess has quit [Ping timeout: 276 seconds]
belsirk is now known as rfuentess
rfuentess has quit [Remote host closed the connection]
belsirk has joined #yocto
belsirk is now known as rfuentess
Net147 has quit [Ping timeout: 252 seconds]
ray-san has joined #yocto
DvorkinDmitry has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
Net147 has joined #yocto
Net147 has quit [Changing host]
Net147 has joined #yocto
wojci__ has quit [Ping timeout: 246 seconds]
florian has quit [Quit: Ex-Chat]
florian_kc has quit [Ping timeout: 265 seconds]
Xagen has joined #yocto
albeu has quit [Quit: Client closed]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
jstephan has joined #yocto
<jstephan> hello all! I am preparing my talk for YPDD in OSS24 about bblock and would like to know if there is anyone already used it?
fotte_ has quit [Ping timeout: 246 seconds]
Guestnorvil has joined #yocto
Marmottus11 has quit [Quit: The Lounge - https://thelounge.chat]
Marmottus11 has joined #yocto
ray-san has quit [Ping timeout: 252 seconds]
florian_kc has joined #yocto
florian_kc has quit [Ping timeout: 260 seconds]
sugoi has joined #yocto
sugoi has quit [Ping timeout: 252 seconds]
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
<Jones42> OnkelUll_: I'm currently trying to marry image_types_verity.bbclass with genimage.bbclass to split my rootfs in two ext4-verity partitions.
<Jones42> I was wondering why you run genimage depends on do_image_complete when it could already run after do_image_tar or do_rootfs
<Jones42> Is there something I'm missing?
frieder has quit [Remote host closed the connection]
jmd has joined #yocto
rfuentess has quit [Remote host closed the connection]
fotte_ has joined #yocto
CrazyGecko has quit [Ping timeout: 276 seconds]
fotte_ has quit [Ping timeout: 260 seconds]
mckoan is now known as mckoan|away
jmd has quit [Remote host closed the connection]
xmn has joined #yocto
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
amitk has quit [Quit: leaving]
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
Jones42_ has joined #yocto
Jones42_ has quit [Read error: Connection reset by peer]
Jones42 has quit [Ping timeout: 252 seconds]
jmd has joined #yocto
nerdboy has quit [Ping timeout: 252 seconds]
nerdboy has joined #yocto
nerdboy has quit [Changing host]
nerdboy has joined #yocto
amitk has joined #yocto
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
xtopher has quit [Ping timeout: 252 seconds]
[[R]] has joined #yocto
xtopher has joined #yocto
rbox has quit [Ping timeout: 252 seconds]
ndec has quit [Ping timeout: 252 seconds]
ndec has joined #yocto
[[R]] is now known as rbox
jmd has quit [Remote host closed the connection]
mrpelotazo has quit [Ping timeout: 248 seconds]
mrpelotazo has joined #yocto
sugoi has joined #yocto
sugoi has quit [Ping timeout: 252 seconds]
florian has joined #yocto
Guestnorvil has quit [Quit: Client closed]
florian has quit [Read error: Connection reset by peer]
fffarmadupe has joined #yocto
Jones42 has joined #yocto
sugoi has joined #yocto
sugoi has quit [Ping timeout: 260 seconds]
Jones42_ has joined #yocto
florian has joined #yocto
Jones42 has quit [Ping timeout: 246 seconds]
florian has quit [Ping timeout: 252 seconds]
ablu has quit [Ping timeout: 260 seconds]
ablu has joined #yocto
florian has joined #yocto
fotte_ has joined #yocto
fotte_ has quit [Quit: Leaving]
Saur_Home has quit [Quit: Client closed]
Saur_Home has joined #yocto
<khem> Jones42_: do_image_complete will run after do_image so anything in IMAGE_POSTPROCESS_COMMAND is also executed
<khem> if you ran it before do_image_complete then it wont get the tweaks from IMAGE_POSTPROCESS_COMMAND
sugoi has joined #yocto
amitk_ has joined #yocto
amitk has quit [Ping timeout: 260 seconds]
sugoi has quit [Ping timeout: 260 seconds]
amitk_ has quit [Ping timeout: 252 seconds]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
goliath has quit [Quit: SIGSEGV]
stgl has quit [Remote host closed the connection]
florian has quit [Ping timeout: 245 seconds]
stgl has joined #yocto
Kubu_work has quit [Quit: Leaving.]
tgamblin_ has joined #yocto
tgamblin has quit [Ping timeout: 265 seconds]
Xagen has joined #yocto
sugoi has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
xmn has quit [Ping timeout: 252 seconds]
RobertBerger has joined #yocto
rber|res has quit [Ping timeout: 248 seconds]