*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC | 00:04 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 00:13 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 00:13 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 00:17 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 00:17 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:ddfa:6ede:7f7:8153> has joined #yocto | 00:20 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC | 00:27 | |
*** vineela <vineela!~vtummala@134.134.137.75> has quit IRC | 01:02 | |
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC | 01:05 | |
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto | 01:15 | |
moto-timo | disk dying or what? ERROR: Failee to spwan fakeroot worker to run /.../ (Errno 32) Broken pipe | 01:34 |
---|---|---|
* moto-timo can't type | 01:34 | |
moto-timo | ubuntu 18.04 host, happens on warrior and zeus branch, so makes me think disk... | 01:38 |
moto-timo | also throwing two warnings in runqueue:2123 ResourceWarning: unclosed file <_io.BufferedReader name=nn> | 01:39 |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC | 01:41 | |
moto-timo | used another drive, no errors. smells like dying ssd :( | 01:51 |
khem | second one is normal | 02:01 |
khem | Errno 32 Broken pipe seems I have never seen it | 02:02 |
moto-timo | khem: me neither... it's a mystery | 02:03 |
khem | they seem to be related to sockets | 02:04 |
khem | and perhaps socket is closed | 02:05 |
DvorkinDmitry | why do I get 30% bigger binary for armv5 using Yocto GCC instead of the cross-compiler from developer.arm.com? | 02:06 |
khem | DvorkinDmitry: is it also GNU toolchain or ADS | 02:08 |
DvorkinDmitry | sorry, did not get you clearly. gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabi from arm.com (open-source build) gives me 30% smaller binary versus arm-tps-linux-gnueabi* generated for arm926ej-s/armv5te | 02:11 |
khem | ok so it is gcc based | 02:11 |
DvorkinDmitry | with the same flags. I am using -nostdlib. yes. It is just open-source gcc. | 02:12 |
khem | what version do you have from yocto generated toolchain ? | 02:12 |
DvorkinDmitry | I am very restricted in memory for my bootloader and it makes sense | 02:12 |
DvorkinDmitry | both are the same versions: 8.3.0 | 02:12 |
khem | ok | 02:13 |
khem | you said flags were same as well ? | 02:13 |
DvorkinDmitry | exactly. May I give you complete list there? | 02:13 |
khem | can you check if one of them is not passing -mthumb ? | 02:13 |
khem | paste it somewhere | 02:14 |
DvorkinDmitry | both are passing -mthumb | 02:14 |
khem | detail logs for building your app/bootloader using both toolchains might hint something | 02:14 |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-fspwhkfdrqavcjym> has joined #yocto | 02:16 | |
DvorkinDmitry | khem, https://pastebin.com/T8ZSaFsd | 02:17 |
DvorkinDmitry | additional "-mno-long-calls -freg-struct-return -fshort-wchar" was my experiments. gives nothing | 02:20 |
khem | can you get rid of -marm in yocto toolchain ? | 02:26 |
DvorkinDmitry | it is set by env from env script, you know | 02:26 |
khem | although you have -mthumb following it so ideally it should be overriding it but want to be sure | 02:26 |
khem | yeah edit it | 02:26 |
DvorkinDmitry | what about -mcpu? leave it is is? | 02:27 |
khem | delete that too | 02:28 |
khem | although that should not be a problem | 02:29 |
DvorkinDmitry | result is the same | 02:31 |
DvorkinDmitry | I try -mthumb and got an error, but without -mthumb it gives the same size | 02:31 |
*** mischief <mischief!~mischief@wopr.sciops.net> has quit IRC | 02:31 | |
DvorkinDmitry | my DEFAULTTUNE ?= "arm926ejs" | 02:31 |
khem | thats ok | 02:31 |
khem | what error do you get with -mthumb | 02:32 |
DvorkinDmitry | Error: selected processor does not support `mcr p15,0,r4,c7,c0,4' in Thumb mode | 02:32 |
khem | without -mthumb the default is to use ARM ISA | 02:32 |
khem | I see | 02:32 |
khem | leave mcpu in there | 02:33 |
khem | or we can do reverse experiment. Where you remove -mthumb from arm.com toolchain and see what size you get | 02:33 |
DvorkinDmitry | ok | 02:34 |
khem | if it matches yocto toolchain generated size then it would hint that we are not using thumb ISA on yocto toolchain and that will explain 30% more code | 02:34 |
DvorkinDmitry | it is slightly bigger, about 5%. And it does not fit into my RAM now | 02:37 |
DvorkinDmitry | I made an assembly output and I see it differs a bit | 02:45 |
DvorkinDmitry | khem, no ideas? | 02:55 |
khem | hmm | 03:11 |
khem | 5% compared to what ? | 03:12 |
DvorkinDmitry | without -mthumb | 03:12 |
khem | ok. so without mthumb yocto compiled code is 5% bigger is that right ? | 03:13 |
DvorkinDmitry | oh, no 5%. Object file was 19KB with -mthumb and 26 without... | 03:13 |
khem | ok | 03:13 |
DvorkinDmitry | not yocto, I've try it with arm.com gcc | 03:13 |
*** learningc <learningc!~pi@121.122.98.56> has quit IRC | 03:14 | |
khem | are you able to remove -marm and see if yocto gcc gives you ~19KB | 03:14 |
DvorkinDmitry | ok. will try now. Sorry, arm.com gives me 20.5KB without -mthumb switch and 19KB with. Was looking in wrong folder... | 03:16 |
khem | I see ok. Lets try yocto gcc in same fasion without -marm | 03:16 |
DvorkinDmitry | without -marm yocto gcc gives me 100bytes smaller obj | 03:17 |
khem | hmm | 03:17 |
khem | ok can you check outout of size plf_dram.o ? | 03:19 |
khem | cmd | 03:19 |
khem | that will show the text/data/bss | 03:19 |
khem | I am think it could be debug info which is making difference | 03:20 |
DvorkinDmitry | with what tool? | 03:20 |
DvorkinDmitry | ls -l ? | 03:20 |
*** vineela <vineela!vtummala@nat/intel/x-qekkhrjqaauokbfd> has joined #yocto | 03:21 | |
khem | tool name is 'size' | 03:21 |
DvorkinDmitry | no changes, but it is 100bytes smaller without -marm | 03:24 |
khem | compare arm.com gcc generated .o with yocto gcc generated .o | 03:24 |
DvorkinDmitry | https://pastebin.com/Vnn1mkp4 | 03:24 |
khem | I want you to compare arm.com vs yocto gcc generated objs not arm vs thumb ISA code | 03:25 |
DvorkinDmitry | arm.com text is bigger for 20 bytes, but obj is smaller for 6KB | 03:28 |
DvorkinDmitry | https://pastebin.com/LS60KQxj | 03:28 |
*** vineela <vineela!vtummala@nat/intel/x-qekkhrjqaauokbfd> has quit IRC | 03:29 | |
khem | so actually yocto code is smaller :) | 03:30 |
*** vineela <vineela!~vtummala@134.134.139.72> has joined #yocto | 03:30 | |
khem | see the 'dec' section ? | 03:30 |
khem | or rather 'hex' section | 03:30 |
DvorkinDmitry | yes. but why obj and final binary is bigger then? | 03:31 |
khem | debug info | 03:31 |
khem | which wont showup on target anyway | 03:31 |
DvorkinDmitry | oh, really? I did not ask compiler for debug info. how should I get rid of it? strip has no effect | 03:32 |
khem | oh final binary might be bigger because you are including debug_info as well | 03:32 |
khem | remove -g switch | 03:32 |
*** vineela <vineela!~vtummala@134.134.139.72> has quit IRC | 03:34 | |
DvorkinDmitry | it did not helped. obj is smaller, "size" gives the same info, but final binary remains too big | 03:36 |
khem | run size on final binary | 03:41 |
khem | what does it say | 03:41 |
DvorkinDmitry | I can't: https://pastebin.com/VvuLyMzj | 03:41 |
DvorkinDmitry | maybe the linker adds some additional sections? But I made an assembly dump and see the code differs a bit | 03:46 |
khem | can you show boot.ld | 03:53 |
DvorkinDmitry | https://pastebin.com/3yaa3iuE | 03:54 |
khem | also paste xboot.map | 03:55 |
DvorkinDmitry | it is generated by the compiler | 03:55 |
khem | yes | 03:56 |
khem | its in your bin/xboot.map | 03:56 |
DvorkinDmitry | xboot.map is 42KB file: https://pastebin.com/c4Nf4zKR | 03:57 |
khem | can you compare .map files generated by arm.com gcc | 04:01 |
DvorkinDmitry | first 100 lines of diff: https://pastebin.com/WjBTgDrc | 04:06 |
DvorkinDmitry | first file is generated by arm.com | 04:08 |
khem | can you objdump getBootDevID fn from common/bootmain.o from both compilers | 04:10 |
khem | yocto size is 0x20 but arm.com is 0xc | 04:11 |
khem | I wonder if yocto is doing some inlining stuff | 04:11 |
DvorkinDmitry | how to make this dump correctly? I never did it for special symbol | 04:12 |
khem | arm-tps-linux-gnueabi-objdump -d common/bootmain.o | 04:12 |
DvorkinDmitry | armcom: https://pastebin.com/MbkGZkht | 04:16 |
DvorkinDmitry | yocto: https://pastebin.com/eEeZ6n1w | 04:16 |
DvorkinDmitry | getBootDevID is : unsigned int getBootDevID(void) { return g_bootinfo.bootdev; | 04:20 |
DvorkinDmitry | getBootDevID is : unsigned int getBootDevID(void) { return g_bootinfo.bootdev; } | 04:20 |
DvorkinDmitry | khem, what do you think? | 04:25 |
*** fatalhalt <fatalhalt!~fatalhalt@2601:244:4d01:52df:225:90ff:feda:2428> has joined #yocto | 04:26 | |
khem | OK I think -marm is the problem | 04:41 |
khem | DvorkinDmitry: what I see is that getBootDevID function in yocto compiled dump is ARM isa | 04:42 |
khem | so lets remove -marm from your env | 04:42 |
khem | and rebuild I think that will fix it | 04:42 |
DvorkinDmitry | removed it already and it gave me this code | 04:42 |
khem | then you need to add -mthumb as well | 04:43 |
khem | and clean the project | 04:43 |
khem | and rebuild all objects | 04:43 |
khem | what you showed me is still compiled without -mthumb and with -marm | 04:43 |
khem | default is -marm too so if you need to use thumb code you need to use -mthumb options during compile | 04:44 |
DvorkinDmitry | -mthumb without -marm increased objdump size to 0.5 KB | 04:45 |
DvorkinDmitry | without -marm, with -mthumb: https://pastebin.com/qcRYCCCr | 04:46 |
khem | thats ok | 04:47 |
khem | show me the new dump | 04:47 |
DvorkinDmitry | already: https://pastebin.com/qcRYCCCr | 04:48 |
DvorkinDmitry | no difference in this function | 04:48 |
khem | sure but now its compiled in thumb mode so its good | 04:50 |
khem | ok so I see PC relative loads | 04:50 |
DvorkinDmitry | but still bigger then it have to be | 04:53 |
khem | can you add -fno-pie -fno-PIE | 04:54 |
DvorkinDmitry | -mthumb decreased the size of bootmain.o for 76 bytes. | 04:54 |
DvorkinDmitry | khem,Bingo! | 04:55 |
DvorkinDmitry | thank you so much, khem! Now it fits | 04:55 |
DvorkinDmitry | I have no this options in armcom gcc and it looks like it sets it by default | 04:57 |
khem | yay | 04:59 |
khem | Yocto toolchains by default generate PIE code | 04:59 |
*** xtron <xtron!~xtron@110.93.212.98> has joined #yocto | 05:31 | |
xtron | bitbake -g target doesn't generate recipe-depends file, something changes? using poky zeus on ubuntu 19.10 | 05:46 |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 06:36 | |
*** agust <agust!~agust@p54833695.dip0.t-ipconnect.de> has joined #yocto | 06:56 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 07:02 | |
*** pohly <pohly!~pohly@p54BD5B80.dip0.t-ipconnect.de> has joined #yocto | 07:11 | |
*** guerinoni <guerinoni!~guerinoni@internet.micro-systems.it> has joined #yocto | 07:12 | |
*** frsc <frsc!~frsc@i59F7229D.versanet.de> has joined #yocto | 07:37 | |
*** onlyesterday <onlyesterday!~onlyester@113.160.58.178> has joined #yocto | 07:54 | |
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has joined #yocto | 07:58 | |
*** leon-anavi <leon-anavi!~Leon@78.130.245.67> has joined #yocto | 08:08 | |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 08:21 | |
*** alicef <alicef!~none@gentoo/developer/alicef> has quit IRC | 08:23 | |
*** mcfrisk <mcfrisk!mcfrisk@91.232.154.11> has quit IRC | 08:23 | |
*** abelal <abelal!~quassel@110.93.212.98> has quit IRC | 08:23 | |
*** Lihis <Lihis!~Lihis@ns3006753.ip-151-80-42.eu> has quit IRC | 08:23 | |
*** mario-goulart <mario-goulart!~user@static.107.70.9.5.clients.your-server.de> has quit IRC | 08:23 | |
*** LetoThe2nd <LetoThe2nd!~ubuntu@unaffiliated/letothe2nd> has quit IRC | 08:23 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 08:23 | |
*** erbo <erbo!~erik@linode.unixshell.se> has quit IRC | 08:23 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has quit IRC | 08:23 | |
*** weltling <weltling!~toll@klapt.com> has quit IRC | 08:23 | |
*** yann <yann!~yann@91-170-159-152.subs.proxad.net> has quit IRC | 08:23 | |
*** alicef <alicef!~none@gentoo/developer/alicef> has joined #yocto | 08:24 | |
*** mcfrisk <mcfrisk!mcfrisk@91.232.154.11> has joined #yocto | 08:24 | |
*** abelal <abelal!~quassel@110.93.212.98> has joined #yocto | 08:24 | |
*** Lihis <Lihis!~Lihis@ns3006753.ip-151-80-42.eu> has joined #yocto | 08:24 | |
*** mario-goulart <mario-goulart!~user@static.107.70.9.5.clients.your-server.de> has joined #yocto | 08:24 | |
*** LetoThe2nd <LetoThe2nd!~ubuntu@unaffiliated/letothe2nd> has joined #yocto | 08:24 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 08:24 | |
*** erbo <erbo!~erik@linode.unixshell.se> has joined #yocto | 08:24 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has joined #yocto | 08:24 | |
*** weltling <weltling!~toll@klapt.com> has joined #yocto | 08:24 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has quit IRC | 08:25 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 08:25 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 08:25 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has joined #yocto | 08:26 | |
wertigon | Ok, so I finally have an sdk - how do I make Windows trust it? | 08:27 |
wertigon | It is either Windows or my antivirus that says this is dangerous, and whitelisting each and every application seems like too much work for a toolchain that contains like 50 separate binaries :D | 08:29 |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has quit IRC | 08:29 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 08:33 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 08:38 | |
*** wertigon <wertigon!8addfa13@138.221.250.19> has quit IRC | 08:40 | |
__angelo | hi, is there a way to allow postinst scripts on a IMAGE_FEATURES += "read-only-rootfs" ? | 08:52 |
LetoThe2nd | __angelo: how would they run, or what would they do if they cannot write anything? | 08:57 |
*** diego_r <diego_r!~diego@217-133-17-98.static.clienti.tiscali.it> has joined #yocto | 08:57 | |
bluelightning_ | postinst scripts are allowed during rootfs construction but they must be able to run successfully at that time | 08:58 |
bluelightning_ | if they fail or explicitly defer -> error | 08:58 |
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto | 09:00 | |
__angelo | LetoThe2nd, ok. I need to test a dm-verity stuff now, can i just disable them for now ? | 09:03 |
yocti | New news from stackoverflow: Edit which file /etc/resolv.conf is linked to at boot time [closed] <https://stackoverflow.com/questions/59161823/edit-which-file-etc-resolv-conf-is-linked-to-at-boot-time> | 09:03 |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 09:04 | |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 09:04 | |
Ad0 | I have things I need that doesn't work / isn't update for warrior, but works in thud. what's the big difference between those versions of yocto? | 09:13 |
*** hpsy <hpsy!~hpsy@85.203.15.88> has quit IRC | 09:17 | |
*** hpsy <hpsy!~hpsy@217.66.60.5> has joined #yocto | 09:18 | |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has quit IRC | 09:20 | |
*** yann <yann!~yann@85.118.38.73> has joined #yocto | 09:22 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has quit IRC | 09:24 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC | 09:29 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 09:30 | |
yocti | New news from stackoverflow: Using repo with gitlab forks <https://stackoverflow.com/questions/59172369/using-repo-with-gitlab-forks> | 09:33 |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 09:41 | |
*** florian_kc is now known as florian | 09:43 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 09:45 | |
qschulz | Ad0: https://www.yoctoproject.org/docs/2.7.2/ref-manual/ref-manual.html#moving-to-the-yocto-project-2.7-release | 09:48 |
Ad0 | thanks, so it doesn't seem like a huge problem to go back to thud | 09:49 |
qschulz | but there shouldn't be a reason to do it | 09:49 |
qschulz | so maybe you can explain which package/recipe is impacted and what "doesn't work" means | 09:50 |
*** wertigon <wertigon!8addfa13@138.221.250.19> has joined #yocto | 09:51 | |
Ad0 | https://github.com/jiazhang0/meta-secure-core relies on a newer version of autoconf-archive than is present in warrior. | 09:52 |
Ad0 | but I am not sure if I can use it's thud branch in warrior? | 09:52 |
*** JaMa <JaMa!~martin@109.238.218.228> has joined #yocto | 09:52 | |
paulbarker | Is there any way to check the database behind layers.openembedded.org? I don't see meta-sancloud listed as a layer but when I try to add it I get "Layer with this Layer name already exists." | 09:53 |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has joined #yocto | 09:53 | |
Ad0 | and another layer I use is incompatible with the warrior rust version because it uses some other dependency that uses another version of rust etc | 09:55 |
Ad0 | things like producing an error instead of a warning that used to be a warning and that kind of stuff | 09:56 |
qschulz | Ad0: https://github.com/jiazhang0/meta-secure-core/issues/135 have you seen that one? | 09:58 |
Ad0 | that's me | 09:58 |
Ad0 | :) | 09:58 |
*** LFSVeteran <LFSVeteran!~LFSVetera@2a02:a440:69df:1:dafc:93ff:fec0:20f6> has joined #yocto | 09:59 | |
Ad0 | so I can a) go back to thud, b) wait for a fix (how long would it take) c) create a fork, learn how to fix that patch | 09:59 |
qschulz | halstead: hi. https://git.yoctoproject.org/ has weak encryption and Firefox Focus on my Android straight up refuses to let me access the website. Can this be fixed somehow please :)? | 10:00 |
wertigon | Ad0: 4. Create a branch of the git repository and cherry-pick the change(s) you need, wait until warrior/zeus matures | 10:01 |
wertigon | (on thud then) | 10:02 |
qschulz | Ad0: 5. create a bbappend with the patch in your own layer :) | 10:02 |
Ad0 | hehe, that's an option | 10:02 |
halstead | qschulz: yes very soon. There is a new server nearly ready to replace it with modern TLS. | 10:02 |
qschulz | Ad0: and send a PR to meta-secure-core please :) | 10:02 |
qschulz | halstead: cool, thanks! | 10:03 |
Ad0 | yeah, btw is that *the* tpm2 repository? I have seen different ones around, but that's the one listed in the openembedded index | 10:03 |
halstead | paulbarker: there is an admin interface to investigate things like that. Contact Paul Eggleton and Mark Hatle for more info about layerindex. | 10:04 |
qschulz | Ad0: https://layers.openembedded.org/layerindex/branch/master/recipes/?q=tpm2 note that it appears we don't have tpm2 in "supported" layers in warrior | 10:09 |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dyagxvgwhrxoxawp> has joined #yocto | 10:18 | |
LFSVeteran | https://pastebin.com/GyqXFcX3 | 10:20 |
bojones | Hello, image-specific config files (i.e. for X11) - what is the best/right way to handle this in yocto? | 10:23 |
qschulz | bojones: ROOTFS_POSTPROCESS_COMMAND maybe? but usually, image-specific things outside of packages to install aren't great ideas (think machine or distro instead) so be careful | 10:31 |
*** __angelo is now known as angelo__ | 10:41 | |
*** mcfrisk <mcfrisk!mcfrisk@91.232.154.11> has quit IRC | 10:42 | |
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto | 10:42 | |
Ad0 | ok | 10:47 |
*** kaspter <kaspter!~Instantbi@101.93.194.160> has quit IRC | 10:47 | |
*** kaspter <kaspter!~Instantbi@101.93.194.160> has joined #yocto | 10:48 | |
bojones | qschulz: Hmm ok. So people use a different distro, depending if it is a release/production image or if it is a test/development image? | 10:52 |
Ad0 | I am wondering about the same thing actually. if I want a qemu86 build and an ARM build of the same distro where different firmware files are required which are image based, not distro based. you can have the same distro, but bitbake different images I guess | 11:07 |
*** ThomasD13 <ThomasD13!~ThomasD13@DSL01.212.114.255.148.ip-pool.NEFkom.net> has joined #yocto | 11:12 | |
ThomasD13 | Hi, I've worked a lot with bitbake to build various images and packages. I want to get rid of all the cached stuff and temp files. Can I just delete build/cache build/downloads build/sstate-cache and build/tmp manually? | 11:15 |
ThomasD13 | Or will something break if I do that. I just want to get a clean state. | 11:16 |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 11:17 | |
*** onlyesterday <onlyesterday!~onlyester@113.160.58.178> has quit IRC | 11:22 | |
*** LFSVeteran <LFSVeteran!~LFSVetera@2a02:a440:69df:1:dafc:93ff:fec0:20f6> has quit IRC | 11:24 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 11:39 | |
*** berton <berton!~berton@189.103.49.163> has joined #yocto | 11:46 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has joined #yocto | 11:47 | |
Ad0 | qschulz, I patched the patch lol. maybe I should make a PR. kinda meta to diff a patch :P | 11:48 |
*** berton <berton!~berton@189.103.49.163> has quit IRC | 11:48 | |
*** berton <berton!~berton@189.103.49.163> has joined #yocto | 11:51 | |
wertigon | I keep bashing my head against the same bloody brick wall -_- | 11:54 |
wertigon | CreateProcess: No such file or directory when I try to compile hello world with the mingw-built GCC | 11:54 |
wertigon | (yes, I have defined toolchain, -mfloat=hard and -mfpu) | 11:55 |
wertigon | Is there a package I am missing? | 11:56 |
qschulz | bojones: or separate the original x11 config file from its "normal" package and create another package with the dev x11 config file? | 11:56 |
qschulz | Ad0: wdym you patched the patch? | 11:57 |
wertigon | ThomasD13: Nothing will break if you do that but you will recompile a lot of things so only do it if you're absolutely sure :) | 11:58 |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 11:59 | |
*** guerinoni <guerinoni!~guerinoni@internet.micro-systems.it> has quit IRC | 12:01 | |
Ad0 | qschulz, I used editdiff with nano to add that line properly | 12:03 |
Ad0 | in the existing .bbpatch | 12:03 |
ThomasD13 | thx wertigon ;) | 12:06 |
RP | hmm, what have I just done | 12:16 |
qschulz | Ad0: you know you litterally just have to download the patch of the commit from github and add it in a bbappend? https://github.com/tpm2-software/tpm2-tss/commit/b7b42326ecfb139e09847e2188d2f2a911aa16af.patch should be enough I think | 12:19 |
qschulz | Then send a PR with this patch added to theSRC_URI of the recipe | 12:19 |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 12:22 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has quit IRC | 12:29 | |
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has quit IRC | 12:34 | |
ThomasD13 | SRC_URI_append += "foo" makes no sense, right? | 12:34 |
ThomasD13 | *highlight _append an += | 12:34 |
qschulz | it does not. The only side effect is that you don't need to preprend foo with a space | 12:36 |
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has joined #yocto | 12:48 | |
Ad0 | qschulz, seems like this is out of date too: https://github.com/jiazhang0/meta-secure-core/blob/master/meta-tpm2/recipes-devtools/tpm2simulator/tpm2simulator-native_git.bb - rdepends upon non-existent task do_package_write_ipk in that file | 12:53 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has joined #yocto | 12:54 | |
*** goliath <goliath!~goliath@nat002-WLTU1.uibk.ac.at> has joined #yocto | 12:55 | |
qschulz | Ad0: I'm sorry I don't understand what you're saying | 12:59 |
*** rokm <rokm!rokm@freeshell.de> has joined #yocto | 13:01 | |
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 13:01 | |
Ad0 | when adding tpm2simulator-native to IMAGE_INSTALL_append it gives error "do_populate_sdk in myimage.bb rdepends upon non-existent task do_package_write_ipk in .../tpm2simulator-native_git.bb" | 13:01 |
Ad0 | think I'm going back to thud lol. | 13:10 |
Ad0 | or is it a very cryptic way to tell me that I need python-beautifulsoup4-native ? | 13:14 |
qschulz | are you building ipk packages? | 13:15 |
Ad0 | I have no idea what IPK even is | 13:19 |
Ad0 | it has DEPENDS+= python-native python-beautifulsoup4-native | 13:20 |
qschulz | what do you have for PACKAGE_CLASSES in conf/local.conf? | 13:20 |
Ad0 | in my layer or build dir? | 13:21 |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 13:21 | |
qschulz | then check why your image.bb depends on do_package_write_ipk and not do_package_write_rpm or do_package_write_deb | 13:21 |
qschulz | Ad0: buildir/conf/loca.conf | 13:21 |
Ad0 | it has no PACKAGE_CLASSES | 13:21 |
qschulz | how did you create your local.conf? | 13:23 |
Ad0 | I didn't I do it all in my custom meta-myOS | 13:25 |
Ad0 | I followed rburton's project | 13:26 |
Ad0 | afaik build/local.conf is not source control-friendly right? | 13:26 |
Ad0 | qschulz, maybe I should use this instead: https://git.yoctoproject.org/cgit/cgit.cgi/meta-security/tree/meta-tpm/recipes-tpm2 | 13:41 |
Ad0 | I am confused by these different layers at different locations :) | 13:42 |
Ad0 | why aren't the tpm2 recipes from meta-security listed in the openembedded layer index ? | 13:47 |
RP | Ad0: adding a -native to IMAGE_INSTALL doesn't make sense since its not a target recipe | 13:49 |
Ad0 | yeah | 13:49 |
RP | since its not a target recipe it doesn't have packages and hence no write_ipk task | 13:49 |
Ad0 | thank you, I guess I have misunderstood it . | 13:50 |
qschulz | RP: ah, missed the obvious *facepalm* | 13:50 |
Ad0 | so is it a part of some other recipe? | 13:50 |
qschulz | Ad0: what do you want to do with `IMAGE_INSTALL_append = "tpm2simulator-native"`? | 13:51 |
Ad0 | install the TPM simulator | 13:51 |
rburton | it would be tpm2simulator then, not -native | 13:52 |
qschulz | -native packages is for the host only, not the target | 13:52 |
qschulz | are* | 13:53 |
Ad0 | ok | 13:54 |
Ad0 | tpm2simulator doesn't exist :/ | 13:54 |
Ad0 | https://layers.openembedded.org/layerindex/branch/master/layer/meta-tpm2/ | 13:55 |
*** goliath <goliath!~goliath@nat002-WLTU1.uibk.ac.at> has quit IRC | 13:55 | |
qschulz | Ad0: do you really need this to run on the target? | 13:56 |
rburton | if you really want that on the target, just rename the recipe to be tpm2simulator.bb, remove all the -native lines, and add BBCLASSEXTEND=native | 13:56 |
rburton | simples | 13:56 |
Ad0 | qschulz, yes it's for testing / emulating a TPM2 chip | 13:56 |
Ad0 | for secure boot and communication | 13:56 |
Ad0 | maybe qemu has a TPM sim | 13:58 |
qschulz | rburton: there is an inherit pythonnative in the recipe as well | 13:59 |
Ad0 | also - https://git.yoctoproject.org/cgit/cgit.cgi/meta-security/tree/meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1332.bb | 13:59 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has quit IRC | 13:59 | |
Ad0 | it's the same thing in essence, but these recipes are not listed on the openembedded index | 13:59 |
Ad0 | so I am not sure which one I should pick hehe. | 13:59 |
Ad0 | the meta-security is more up to date, but it's recipes for tpm2 are not listed although they seem to be in git | 14:00 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has joined #yocto | 14:00 | |
Ad0 | https://git.yoctoproject.org/cgit/cgit.cgi/meta-security/tree/meta-tpm/recipes-tpm2 vs https://layers.openembedded.org/layerindex/branch/master/layer/meta-security/ | 14:00 |
*** ThomasD13 <ThomasD13!~ThomasD13@DSL01.212.114.255.148.ip-pool.NEFkom.net> has quit IRC | 14:04 | |
*** diego_r <diego_r!~diego@217-133-17-98.static.clienti.tiscali.it> has quit IRC | 14:04 | |
*** vmeson <vmeson!~rmacleod@24-52-239-53.cable.teksavvy.com> has quit IRC | 14:04 | |
*** ecdhe <ecdhe!~quassel@unaffiliated/ecdhe> has quit IRC | 14:04 | |
*** tsjsieb <tsjsieb!~quassel@103.214.7.25> has quit IRC | 14:04 | |
*** cpo <cpo!~cpo@helix.mybll.net> has quit IRC | 14:04 | |
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC | 14:04 | |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has quit IRC | 14:04 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC | 14:04 | |
*** dfrey <dfrey!~dfrey@172.103.152.101> has quit IRC | 14:04 | |
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC | 14:04 | |
*** Ad0 <Ad0!~Ad0@93.124.245.194> has quit IRC | 14:04 | |
*** aehs29 <aehs29!~aehs29@149.199.62.131> has quit IRC | 14:04 | |
*** georgem <georgem!~georgem@216.21.169.52> has quit IRC | 14:04 | |
*** cp- <cp-!~cp-@b157153.ppp.asahi-net.or.jp> has quit IRC | 14:04 | |
*** kanavin_ <kanavin_!~kanavin@141.113.66.202> has quit IRC | 14:04 | |
*** kamel_b <kamel_b!~kamel@ec2-52-47-93-88.eu-west-3.compute.amazonaws.com> has quit IRC | 14:04 | |
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC | 14:04 | |
*** mardy <mardy!~mardy@88-115-221-237.elisa-laajakaista.fi> has quit IRC | 14:04 | |
*** rewitt <rewitt!rewitt@nat/intel/x-ejmvnfcnubhndazp> has quit IRC | 14:04 | |
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has quit IRC | 14:04 | |
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has quit IRC | 14:04 | |
*** qschulz <qschulz!~quentin@ns326003.ip-37-187-106.eu> has quit IRC | 14:04 | |
*** silver-gekko <silver-gekko!~calhotas@185.17.231.94> has quit IRC | 14:04 | |
*** RP <RP!~RP@5751f4a1.skybroadband.com> has quit IRC | 14:04 | |
*** fray <fray!~fray@kernel.crashing.org> has quit IRC | 14:04 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has quit IRC | 14:04 | |
*** alicef <alicef!~none@gentoo/developer/alicef> has quit IRC | 14:04 | |
*** abelal <abelal!~quassel@110.93.212.98> has quit IRC | 14:04 | |
*** Lihis <Lihis!~Lihis@ns3006753.ip-151-80-42.eu> has quit IRC | 14:04 | |
*** mario-goulart <mario-goulart!~user@static.107.70.9.5.clients.your-server.de> has quit IRC | 14:04 | |
*** LetoThe2nd <LetoThe2nd!~ubuntu@unaffiliated/letothe2nd> has quit IRC | 14:04 | |
*** erbo <erbo!~erik@linode.unixshell.se> has quit IRC | 14:04 | |
*** weltling <weltling!~toll@klapt.com> has quit IRC | 14:04 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has quit IRC | 14:04 | |
*** wertigon <wertigon!8addfa13@138.221.250.19> has quit IRC | 14:04 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has quit IRC | 14:04 | |
*** kaspter <kaspter!~Instantbi@101.93.194.160> has quit IRC | 14:04 | |
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has quit IRC | 14:04 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 14:04 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 14:04 | |
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has quit IRC | 14:04 | |
*** frsc <frsc!~frsc@i59F7229D.versanet.de> has quit IRC | 14:04 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 14:04 | |
*** OnkelUlla <OnkelUlla!~uol@ptx.hi.pengutronix.de> has quit IRC | 14:04 | |
*** palate <palate!~palate@unaffiliated/palate> has quit IRC | 14:04 | |
*** iokill <iokill!~dave@static.16.105.130.94.clients.your-server.de> has quit IRC | 14:04 | |
*** tz <tz!~tz@orange.tzarc.io> has quit IRC | 14:04 | |
*** jij <jij!jonashg@nat/axis/x-xlzlevzpfxtviawf> has quit IRC | 14:04 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has quit IRC | 14:04 | |
*** xtron <xtron!~xtron@110.93.212.98> has quit IRC | 14:04 | |
*** mdp <mdp!sid49840@gateway/web/irccloud.com/x-nkepsnpbscijdfaw> has quit IRC | 14:04 | |
*** zopsi <zopsi!zopsi@2600:3c00::f03c:91ff:fe14:551f> has quit IRC | 14:04 | |
*** bachp <bachp!bachpmatri@gateway/shell/matrix.org/x-xtqkdhuybybbekru> has quit IRC | 14:04 | |
*** andycooper <andycooper!uid246432@gateway/web/irccloud.com/x-rfhwgjyxnpewodtr> has quit IRC | 14:04 | |
*** angelo__ <angelo__!~prefetch@unaffiliated/ad/x-0785363> has quit IRC | 14:04 | |
*** ribalda <ribalda!sid306640@gateway/web/irccloud.com/x-ymlnldhoxjxreexn> has quit IRC | 14:04 | |
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-lfnkbkydzdponkwp> has quit IRC | 14:04 | |
*** darknighte <darknighte!sid214177@pdpc/supporter/professional/darknighte> has quit IRC | 14:04 | |
*** kergoth <kergoth!~kergoth@107.170.225.75> has quit IRC | 14:04 | |
*** diamondman <diamondman!sid306859@gateway/web/irccloud.com/x-wjzysclyzcptvhvr> has quit IRC | 14:04 | |
*** ndec <ndec!sid219321@linaro/ndec> has quit IRC | 14:04 | |
*** uhaider <uhaider!sid307926@gateway/web/irccloud.com/x-lphtifazbzfpqhnm> has quit IRC | 14:04 | |
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has quit IRC | 14:04 | |
*** berton <berton!~berton@189.103.49.163> has quit IRC | 14:04 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC | 14:04 | |
*** yann <yann!~yann@85.118.38.73> has quit IRC | 14:04 | |
*** hpsy <hpsy!~hpsy@217.66.60.5> has quit IRC | 14:04 | |
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC | 14:04 | |
*** leon-anavi <leon-anavi!~Leon@78.130.245.67> has quit IRC | 14:04 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 14:04 | |
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC | 14:04 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has quit IRC | 14:04 | |
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC | 14:04 | |
*** jhar <jhar!~har@c-75-70-112-20.hsd1.co.comcast.net> has quit IRC | 14:04 | |
*** Saur <Saur!pkj@nat/axis/x-ttvqjligxffmcicx> has quit IRC | 14:04 | |
*** wooosaiiii <wooosaiiii!~prix@89-212-21-243.static.t-2.net> has quit IRC | 14:04 | |
*** zbooth <zbooth!~zbooth@ec2-18-219-251-161.us-east-2.compute.amazonaws.com> has quit IRC | 14:04 | |
*** meow` <meow`!~sbourdeli@147.ip-167-114-97.net> has quit IRC | 14:04 | |
*** u1106_ <u1106_!~quassel@163.172.172.46> has quit IRC | 14:04 | |
*** jwessel <jwessel!~jwessel@128.224.252.2> has quit IRC | 14:04 | |
*** DvorkinDmitry <DvorkinDmitry!~Dvorkin@59-120-32-26.HINET-IP.hinet.net> has quit IRC | 14:04 | |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has quit IRC | 14:04 | |
*** Piraty <Piraty!~irc@unaffiliated/piraty> has quit IRC | 14:04 | |
*** zkrx <zkrx!~quassel@adsl-84-226-215-143.adslplus.ch> has quit IRC | 14:04 | |
*** GeneralStupid <GeneralStupid!~patrick@nostromo.0x47.net> has quit IRC | 14:04 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC | 14:04 | |
*** alimon <alimon!alimon@gateway/shell/linaro/x-zessobyfoxedchep> has quit IRC | 14:04 | |
*** la_croix <la_croix!~la_croix@cpc97624-walt24-2-0-cust98.13-2.cable.virginm.net> has quit IRC | 14:04 | |
*** dp <dp!~phillid@oh.not.bad.aye.yeah.nah.nz> has quit IRC | 14:04 | |
*** dStruct <dStruct!~matt@unaffiliated/dstruct> has quit IRC | 14:04 | |
*** Jusii <Jusii!~jalanara@alanara.fi> has quit IRC | 14:04 | |
*** ilbelkyr <ilbelkyr!ilbelkyr@freenode/staff/atheme.ilbelkyr> has quit IRC | 14:04 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 14:04 | |
*** JaMa <JaMa!~martin@109.238.218.228> has quit IRC | 14:04 | |
*** agust <agust!~agust@p54833695.dip0.t-ipconnect.de> has quit IRC | 14:04 | |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-fspwhkfdrqavcjym> has quit IRC | 14:04 | |
*** jofr <jofr!~jofr@193.182.166.3> has quit IRC | 14:04 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has quit IRC | 14:04 | |
*** JPEW <JPEW!~JPEW@2600:1f16:181:f300:d350:982:b6f5:216c> has quit IRC | 14:04 | |
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC | 14:04 | |
*** junland <junland!~junland@142.93.201.46> has quit IRC | 14:04 | |
*** rubdos <rubdos!~rubdos@2a02:578:859d:700:8b44:5716:382d:a7da> has quit IRC | 14:04 | |
*** inf <inf!~informati@unaffiliated/informatic> has quit IRC | 14:04 | |
*** psrcode <psrcode!~psrcode@198.50.220.193> has quit IRC | 14:04 | |
*** bjobjo <bjobjo!~bjobjo@2a01:79d:3e81:5208::9e6> has quit IRC | 14:04 | |
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has quit IRC | 14:04 | |
*** clement <clement!~clement@51.158.149.110> has quit IRC | 14:04 | |
*** fury <fury!uid193779@gateway/web/irccloud.com/x-gprnwwwtbbbtpbbn> has quit IRC | 14:04 | |
*** ric96 <ric96!sid234506@gateway/web/irccloud.com/x-jlrmvoemngfdypbm> has quit IRC | 14:04 | |
*** jpnurmi <jpnurmi!jpnurmi@qt/jpnurmi> has quit IRC | 14:04 | |
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has quit IRC | 14:04 | |
*** compenguy <compenguy!~compenguy@c-73-240-172-56.hsd1.wa.comcast.net> has quit IRC | 14:04 | |
*** RB2 <RB2!~RB2@c-73-178-160-56.hsd1.nj.comcast.net> has quit IRC | 14:04 | |
*** ernstp <ernstp!sid168075@gateway/web/irccloud.com/x-rcuhgnlqehnaszpm> has quit IRC | 14:04 | |
*** shauno <shauno!~soneil@pdpc/supporter/professional/shauno> has quit IRC | 14:04 | |
*** stwcx <stwcx!~stwcx@2604:880:a:6::c9c> has quit IRC | 14:04 | |
*** fullstop <fullstop!~fullstop@162.243.42.48> has quit IRC | 14:04 | |
*** dagmcr <dagmcr!sid323878@gateway/web/irccloud.com/x-guxxnvmzvbtgyfof> has quit IRC | 14:04 | |
*** rhadye <rhadye!sid217449@gateway/web/irccloud.com/x-gvtiznpljrirpprs> has quit IRC | 14:04 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dyagxvgwhrxoxawp> has quit IRC | 14:04 | |
*** pohly <pohly!~pohly@p54BD5B80.dip0.t-ipconnect.de> has quit IRC | 14:04 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:ddfa:6ede:7f7:8153> has quit IRC | 14:04 | |
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC | 14:04 | |
*** nayfe <nayfe!uid259604@gateway/web/irccloud.com/x-nfrqepxxbhoouxkr> has quit IRC | 14:04 | |
*** aidanh <aidanh!~aidanh@unaffiliated/aidanh> has quit IRC | 14:04 | |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has quit IRC | 14:04 | |
*** ukembedded <ukembedded!sid304355@gateway/web/irccloud.com/x-novnikfxxlyoqasf> has quit IRC | 14:04 | |
*** marble_visions_ <marble_visions_!~user@68.183.79.8> has quit IRC | 14:04 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has quit IRC | 14:04 | |
*** bojones <bojones!~jonas@customer-2a00-7660-0846-0001-020c-29ff-fed5-d5b4.ip6.gigabit.dk> has quit IRC | 14:04 | |
*** thierryE <thierryE!sid286446@gateway/web/irccloud.com/x-qvnjfbfdtmzbmewz> has quit IRC | 14:04 | |
*** fancer <fancer!fancer@gateway/web/irccloud.com/x-tkjighovhubiotvk> has quit IRC | 14:04 | |
*** milloni <milloni!~milloni@preemptable.org> has quit IRC | 14:04 | |
*** Tartarus <Tartarus!sid72705@gateway/web/irccloud.com/x-rphuybynlrllfmwt> has quit IRC | 14:04 | |
*** filt3r <filt3r!~x@2a03:b0c0:2:d0::7d:7001> has quit IRC | 14:04 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC | 14:04 | |
*** griffinp <griffinp!griffinp@gateway/shell/linaro/x-sqrpkvipgserevmq> has quit IRC | 14:04 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC | 14:04 | |
*** lexano <lexano!lexano@gateway/vpn/nordvpn/lexano> has quit IRC | 14:04 | |
*** elGamal <elGamal!~elg@104.244.209.100> has quit IRC | 14:04 | |
*** roussinm <roussinm!~mroussin@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC | 14:04 | |
*** champagneg <champagneg!~gchamp@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC | 14:04 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 14:04 | |
*** zeddii <zeddii!~zeddii@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC | 14:04 | |
*** Dracos-Carazza <Dracos-Carazza!~Dracos-Ca@ip4d1530cd.dynamic.kabel-deutschland.de> has quit IRC | 14:04 | |
*** frosteyes <frosteyes!~frosteyes@185.53.130.211> has quit IRC | 14:04 | |
*** adelcast <adelcast!~adelcast@130.164.62.197> has quit IRC | 14:04 | |
*** Zajc <Zajc!~Zajc@89-212-111-208.static.t-2.net> has quit IRC | 14:04 | |
*** orzen <orzen!~orz@84-216-100-149.customers.ownit.se> has quit IRC | 14:04 | |
*** wbn <wbn!~badegg@ns509729.ip-198-245-62.net> has quit IRC | 14:04 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC | 14:04 | |
*** cengiz_io <cengiz_io!~cengiz_io@159.89.7.238> has quit IRC | 14:04 | |
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC | 14:04 | |
*** linuxjacques <linuxjacques!~jacques@nslu2-linux/jacques> has quit IRC | 14:04 | |
*** mattsm <mattsm!~mattsm@76-205-175-243.lightspeed.austtx.sbcglobal.net> has quit IRC | 14:04 | |
*** icee <icee!mlyle@dRonin/dev/icee> has quit IRC | 14:04 | |
*** jero <jero!~boo@fougasse.net> has quit IRC | 14:04 | |
*** lpoulain <lpoulain!lpoulain@gateway/shell/linaro/x-kzrmbxcmvnbhjopk> has quit IRC | 14:04 | |
*** rrerolle <rrerolle!~rrerolle@vps.neonex.fr> has quit IRC | 14:04 | |
*** dirbaio <dirbaio!~dirbaio@nsmbhd.net> has quit IRC | 14:04 | |
*** jft <jft!znc@159.203.20.86> has quit IRC | 14:04 | |
*** Crofton|road <Crofton|road!uid401373@gateway/web/irccloud.com/x-ygrfgheccqoacfbx> has quit IRC | 14:04 | |
*** CarlGel <CarlGel!~Rika-chan@unaffiliated/carlgel> has quit IRC | 14:04 | |
*** Chaser <Chaser!~Chaser@ec2-13-233-34-134.ap-south-1.compute.amazonaws.com> has quit IRC | 14:04 | |
*** dl9pf <dl9pf!uid395223@opensuse/member/dl9pf> has quit IRC | 14:04 | |
*** rperier <rperier!~quassel@unaffiliated/bambee> has quit IRC | 14:04 | |
*** jonmason <jonmason!sid36602@gateway/web/irccloud.com/x-abmfbzflozsxqqwh> has quit IRC | 14:04 | |
*** silviof <silviof!silv-iomat@gateway/shell/matrix.org/x-xeoffflzblgtdzaa> has quit IRC | 14:04 | |
*** rokm <rokm!rokm@freeshell.de> has quit IRC | 14:04 | |
*** fatalhalt <fatalhalt!~fatalhalt@2601:244:4d01:52df:225:90ff:feda:2428> has quit IRC | 14:04 | |
*** Hauke <Hauke!~Hauke@hauke-m.de> has quit IRC | 14:04 | |
*** comptroller <comptroller!~comptroll@47-213-230-143.paolcmtc01.res.dyn.suddenlink.net> has quit IRC | 14:04 | |
*** clopez <clopez!~tau@neutrino.es> has quit IRC | 14:04 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has quit IRC | 14:04 | |
*** OutBackDingo <OutBackDingo!~quassel@unaffiliated/outbackdingo> has quit IRC | 14:04 | |
*** tardyp <tardyp!sid45259@gateway/web/irccloud.com/x-uclnhyigwkxxzyij> has quit IRC | 14:04 | |
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has quit IRC | 14:04 | |
*** stew-dw <stew-dw!~stew-dw@2607:fb90:a225:53ef:cb09:74aa:aebc:ced4> has quit IRC | 14:04 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has quit IRC | 14:04 | |
*** rsalveti <rsalveti!sid117878@gateway/web/irccloud.com/x-btkxkimomqnvubmz> has quit IRC | 14:04 | |
*** paulbarker <paulbarker!sid269702@gateway/web/irccloud.com/x-dkkyxsjkuxlrqgdj> has quit IRC | 14:04 | |
*** smurray <smurray!sid98062@gateway/web/irccloud.com/x-rtoywpypeebxgeor> has quit IRC | 14:04 | |
*** nohit <nohit!sid334887@gateway/web/irccloud.com/x-pmdnybykzbazjivf> has quit IRC | 14:04 | |
*** marex-cloud <marex-cloud!sid137234@gateway/web/irccloud.com/x-bjljvfezwgvgiaql> has quit IRC | 14:04 | |
*** mithro <mithro!sid24875@gateway/web/irccloud.com/x-jjkzianqypvotzdh> has quit IRC | 14:04 | |
*** ruru4143 <ruru4143!~ruru4143@vmi243882.contaboserver.net> has quit IRC | 14:04 | |
*** ongy <ongy!~ongyerth@unaffiliated/ongy> has quit IRC | 14:04 | |
*** beneth <beneth!~beneth@lxcb.beneth.fr> has quit IRC | 14:04 | |
*** dexterlb <dexterlb!~dexterlb@qtrp.org> has quit IRC | 14:04 | |
*** runde <runde!sid228344@gateway/web/irccloud.com/x-yffivfkgootsppka> has quit IRC | 14:04 | |
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has quit IRC | 14:04 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has joined #yocto | 14:24 | |
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto | 14:24 | |
*** rokm <rokm!rokm@freeshell.de> has joined #yocto | 14:24 | |
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has joined #yocto | 14:24 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 14:24 | |
*** berton <berton!~berton@189.103.49.163> has joined #yocto | 14:24 | |
*** ThomasD13 <ThomasD13!~ThomasD13@DSL01.212.114.255.148.ip-pool.NEFkom.net> has joined #yocto | 14:24 | |
*** kaspter <kaspter!~Instantbi@101.93.194.160> has joined #yocto | 14:24 | |
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto | 14:24 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dyagxvgwhrxoxawp> has joined #yocto | 14:24 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has joined #yocto | 14:24 | |
*** JaMa <JaMa!~martin@109.238.218.228> has joined #yocto | 14:24 | |
*** wertigon <wertigon!8addfa13@138.221.250.19> has joined #yocto | 14:24 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 14:24 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto | 14:24 | |
*** yann <yann!~yann@85.118.38.73> has joined #yocto | 14:24 | |
*** hpsy <hpsy!~hpsy@217.66.60.5> has joined #yocto | 14:24 | |
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto | 14:24 | |
*** diego_r <diego_r!~diego@217-133-17-98.static.clienti.tiscali.it> has joined #yocto | 14:24 | |
*** yourfate <yourfate!~yourfate@unaffiliated/yourfate> has joined #yocto | 14:24 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 14:24 | |
*** weltling <weltling!~toll@klapt.com> has joined #yocto | 14:24 | |
*** erbo <erbo!~erik@linode.unixshell.se> has joined #yocto | 14:24 | |
*** LetoThe2nd <LetoThe2nd!~ubuntu@unaffiliated/letothe2nd> has joined #yocto | 14:24 | |
*** mario-goulart <mario-goulart!~user@static.107.70.9.5.clients.your-server.de> has joined #yocto | 14:24 | |
*** Lihis <Lihis!~Lihis@ns3006753.ip-151-80-42.eu> has joined #yocto | 14:24 | |
*** abelal <abelal!~quassel@110.93.212.98> has joined #yocto | 14:24 | |
*** alicef <alicef!~none@gentoo/developer/alicef> has joined #yocto | 14:24 | |
*** leon-anavi <leon-anavi!~Leon@78.130.245.67> has joined #yocto | 14:24 | |
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has joined #yocto | 14:24 | |
*** frsc <frsc!~frsc@i59F7229D.versanet.de> has joined #yocto | 14:24 | |
*** pohly <pohly!~pohly@p54BD5B80.dip0.t-ipconnect.de> has joined #yocto | 14:24 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 14:24 | |
*** agust <agust!~agust@p54833695.dip0.t-ipconnect.de> has joined #yocto | 14:24 | |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto | 14:24 | |
*** xtron <xtron!~xtron@110.93.212.98> has joined #yocto | 14:24 | |
*** fatalhalt <fatalhalt!~fatalhalt@2601:244:4d01:52df:225:90ff:feda:2428> has joined #yocto | 14:24 | |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-fspwhkfdrqavcjym> has joined #yocto | 14:24 | |
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto | 14:24 | |
*** armpit <armpit!~armpit@2601:202:4180:a5c0:ddfa:6ede:7f7:8153> has joined #yocto | 14:24 | |
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has joined #yocto | 14:24 | |
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto | 14:24 | |
*** jhar <jhar!~har@c-75-70-112-20.hsd1.co.comcast.net> has joined #yocto | 14:24 | |
*** thierryE <thierryE!sid286446@gateway/web/irccloud.com/x-qvnjfbfdtmzbmewz> has joined #yocto | 14:24 | |
*** vmeson <vmeson!~rmacleod@24-52-239-53.cable.teksavvy.com> has joined #yocto | 14:24 | |
*** OnkelUlla <OnkelUlla!~uol@ptx.hi.pengutronix.de> has joined #yocto | 14:24 | |
*** palate <palate!~palate@unaffiliated/palate> has joined #yocto | 14:24 | |
*** iokill <iokill!~dave@static.16.105.130.94.clients.your-server.de> has joined #yocto | 14:24 | |
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto | 14:24 | |
*** nayfe <nayfe!uid259604@gateway/web/irccloud.com/x-nfrqepxxbhoouxkr> has joined #yocto | 14:24 | |
*** Saur <Saur!pkj@nat/axis/x-ttvqjligxffmcicx> has joined #yocto | 14:24 | |
*** tz <tz!~tz@orange.tzarc.io> has joined #yocto | 14:24 | |
*** wooosaiiii <wooosaiiii!~prix@89-212-21-243.static.t-2.net> has joined #yocto | 14:24 | |
*** jofr <jofr!~jofr@193.182.166.3> has joined #yocto | 14:24 | |
*** Hauke <Hauke!~Hauke@hauke-m.de> has joined #yocto | 14:24 | |
*** jij <jij!jonashg@nat/axis/x-xlzlevzpfxtviawf> has joined #yocto | 14:24 | |
*** lexano <lexano!lexano@gateway/vpn/nordvpn/lexano> has joined #yocto | 14:24 | |
*** halfhalo <halfhalo!halfhalo@nasadmin/webteam/halfhalo> has joined #yocto | 14:24 | |
*** zbooth <zbooth!~zbooth@ec2-18-219-251-161.us-east-2.compute.amazonaws.com> has joined #yocto | 14:24 | |
*** mdp <mdp!sid49840@gateway/web/irccloud.com/x-nkepsnpbscijdfaw> has joined #yocto | 14:24 | |
*** meow` <meow`!~sbourdeli@147.ip-167-114-97.net> has joined #yocto | 14:24 | |
*** elGamal <elGamal!~elg@104.244.209.100> has joined #yocto | 14:24 | |
*** JPEW <JPEW!~JPEW@2600:1f16:181:f300:d350:982:b6f5:216c> has joined #yocto | 14:24 | |
*** u1106_ <u1106_!~quassel@163.172.172.46> has joined #yocto | 14:24 | |
*** roussinm <roussinm!~mroussin@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has joined #yocto | 14:24 | |
*** dfrey <dfrey!~dfrey@172.103.152.101> has joined #yocto | 14:24 | |
*** comptroller <comptroller!~comptroll@47-213-230-143.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto | 14:24 | |
*** jwessel <jwessel!~jwessel@128.224.252.2> has joined #yocto | 14:24 | |
*** champagneg <champagneg!~gchamp@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has joined #yocto | 14:24 | |
*** ecdhe <ecdhe!~quassel@unaffiliated/ecdhe> has joined #yocto | 14:24 | |
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto | 14:24 | |
*** DvorkinDmitry <DvorkinDmitry!~Dvorkin@59-120-32-26.HINET-IP.hinet.net> has joined #yocto | 14:24 | |
*** tsjsieb <tsjsieb!~quassel@103.214.7.25> has joined #yocto | 14:24 | |
*** cpo <cpo!~cpo@helix.mybll.net> has joined #yocto | 14:24 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 14:24 | |
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto | 14:24 | |
*** clopez <clopez!~tau@neutrino.es> has joined #yocto | 14:24 | |
*** uhaider <uhaider!sid307926@gateway/web/irccloud.com/x-lphtifazbzfpqhnm> has joined #yocto | 14:24 | |
*** ndec <ndec!sid219321@linaro/ndec> has joined #yocto | 14:24 | |
*** diamondman <diamondman!sid306859@gateway/web/irccloud.com/x-wjzysclyzcptvhvr> has joined #yocto | 14:24 | |
*** kergoth <kergoth!~kergoth@107.170.225.75> has joined #yocto | 14:24 | |
*** darknighte <darknighte!sid214177@pdpc/supporter/professional/darknighte> has joined #yocto | 14:24 | |
*** awafaa <awafaa!sid716@gateway/web/irccloud.com/x-lfnkbkydzdponkwp> has joined #yocto | 14:24 | |
*** ribalda <ribalda!sid306640@gateway/web/irccloud.com/x-ymlnldhoxjxreexn> has joined #yocto | 14:24 | |
*** angelo__ <angelo__!~prefetch@unaffiliated/ad/x-0785363> has joined #yocto | 14:24 | |
*** andycooper <andycooper!uid246432@gateway/web/irccloud.com/x-rfhwgjyxnpewodtr> has joined #yocto | 14:24 | |
*** bachp <bachp!bachpmatri@gateway/shell/matrix.org/x-xtqkdhuybybbekru> has joined #yocto | 14:24 | |
*** zopsi <zopsi!zopsi@2600:3c00::f03c:91ff:fe14:551f> has joined #yocto | 14:24 | |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has joined #yocto | 14:24 | |
*** OutBackDingo <OutBackDingo!~quassel@unaffiliated/outbackdingo> has joined #yocto | 14:24 | |
*** junland <junland!~junland@142.93.201.46> has joined #yocto | 14:24 | |
*** aidanh <aidanh!~aidanh@unaffiliated/aidanh> has joined #yocto | 14:24 | |
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has joined #yocto | 14:24 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 14:24 | |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has joined #yocto | 14:24 | |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has joined #yocto | 14:24 | |
*** rubdos <rubdos!~rubdos@2a02:578:859d:700:8b44:5716:382d:a7da> has joined #yocto | 14:24 | |
*** dexterlb <dexterlb!~dexterlb@qtrp.org> has joined #yocto | 14:24 | |
*** silviof <silviof!silv-iomat@gateway/shell/matrix.org/x-xeoffflzblgtdzaa> has joined #yocto | 14:24 | |
*** Piraty <Piraty!~irc@unaffiliated/piraty> has joined #yocto | 14:24 | |
*** inf <inf!~informati@unaffiliated/informatic> has joined #yocto | 14:24 | |
*** zkrx <zkrx!~quassel@adsl-84-226-215-143.adslplus.ch> has joined #yocto | 14:24 | |
*** psrcode <psrcode!~psrcode@198.50.220.193> has joined #yocto | 14:24 | |
*** zeddii <zeddii!~zeddii@CPEe8de27b71faa-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto | 14:24 | |
*** tardyp <tardyp!sid45259@gateway/web/irccloud.com/x-uclnhyigwkxxzyij> has joined #yocto | 14:24 | |
*** adelcast <adelcast!~adelcast@130.164.62.197> has joined #yocto | 14:24 | |
*** GeneralStupid <GeneralStupid!~patrick@nostromo.0x47.net> has joined #yocto | 14:24 | |
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has joined #yocto | 14:24 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto | 14:24 | |
*** ongy <ongy!~ongyerth@unaffiliated/ongy> has joined #yocto | 14:24 | |
*** Dracos-Carazza <Dracos-Carazza!~Dracos-Ca@ip4d1530cd.dynamic.kabel-deutschland.de> has joined #yocto | 14:24 | |
*** frosteyes <frosteyes!~frosteyes@185.53.130.211> has joined #yocto | 14:24 | |
*** bjobjo <bjobjo!~bjobjo@2a01:79d:3e81:5208::9e6> has joined #yocto | 14:24 | |
*** Ad0 <Ad0!~Ad0@93.124.245.194> has joined #yocto | 14:24 | |
*** aehs29 <aehs29!~aehs29@149.199.62.131> has joined #yocto | 14:24 | |
*** neverpanic <neverpanic!~clemens@towel.neverpanic.de> has joined #yocto | 14:24 | |
*** georgem <georgem!~georgem@216.21.169.52> has joined #yocto | 14:24 | |
*** cp- <cp-!~cp-@b157153.ppp.asahi-net.or.jp> has joined #yocto | 14:24 | |
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has joined #yocto | 14:24 | |
*** clement <clement!~clement@51.158.149.110> has joined #yocto | 14:24 | |
*** Zajc <Zajc!~Zajc@89-212-111-208.static.t-2.net> has joined #yocto | 14:24 | |
*** orzen <orzen!~orz@84-216-100-149.customers.ownit.se> has joined #yocto | 14:24 | |
*** wbn <wbn!~badegg@ns509729.ip-198-245-62.net> has joined #yocto | 14:24 | |
*** dp <dp!~phillid@oh.not.bad.aye.yeah.nah.nz> has joined #yocto | 14:24 | |
*** stew-dw <stew-dw!~stew-dw@2607:fb90:a225:53ef:cb09:74aa:aebc:ced4> has joined #yocto | 14:24 | |
*** ukembedded <ukembedded!sid304355@gateway/web/irccloud.com/x-novnikfxxlyoqasf> has joined #yocto | 14:24 | |
*** fury <fury!uid193779@gateway/web/irccloud.com/x-gprnwwwtbbbtpbbn> has joined #yocto | 14:24 | |
*** ric96 <ric96!sid234506@gateway/web/irccloud.com/x-jlrmvoemngfdypbm> has joined #yocto | 14:24 | |
*** jpnurmi <jpnurmi!jpnurmi@qt/jpnurmi> has joined #yocto | 14:24 | |
*** nohit <nohit!sid334887@gateway/web/irccloud.com/x-pmdnybykzbazjivf> has joined #yocto | 14:24 | |
*** kanavin_ <kanavin_!~kanavin@141.113.66.202> has joined #yocto | 14:24 | |
*** marble_visions_ <marble_visions_!~user@68.183.79.8> has joined #yocto | 14:24 | |
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has joined #yocto | 14:24 | |
*** ka6sox <ka6sox!ka6sox@nasadmin/ka6sox> has joined #yocto | 14:24 | |
*** bojones <bojones!~jonas@customer-2a00-7660-0846-0001-020c-29ff-fed5-d5b4.ip6.gigabit.dk> has joined #yocto | 14:24 | |
*** cengiz_io <cengiz_io!~cengiz_io@159.89.7.238> has joined #yocto | 14:24 | |
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has joined #yocto | 14:24 | |
*** grumble <grumble!~grumble@freenode/staff/grumble> has joined #yocto | 14:24 | |
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has joined #yocto | 14:24 | |
*** compenguy <compenguy!~compenguy@c-73-240-172-56.hsd1.wa.comcast.net> has joined #yocto | 14:24 | |
*** ernstp <ernstp!sid168075@gateway/web/irccloud.com/x-rcuhgnlqehnaszpm> has joined #yocto | 14:24 | |
*** ilbelkyr <ilbelkyr!ilbelkyr@freenode/staff/atheme.ilbelkyr> has joined #yocto | 14:24 | |
*** Jusii <Jusii!~jalanara@alanara.fi> has joined #yocto | 14:24 | |
*** dStruct <dStruct!~matt@unaffiliated/dstruct> has joined #yocto | 14:24 | |
*** la_croix <la_croix!~la_croix@cpc97624-walt24-2-0-cust98.13-2.cable.virginm.net> has joined #yocto | 14:24 | |
*** alimon <alimon!alimon@gateway/shell/linaro/x-zessobyfoxedchep> has joined #yocto | 14:24 | |
*** marex-cloud <marex-cloud!sid137234@gateway/web/irccloud.com/x-bjljvfezwgvgiaql> has joined #yocto | 14:24 | |
*** mithro <mithro!sid24875@gateway/web/irccloud.com/x-jjkzianqypvotzdh> has joined #yocto | 14:24 | |
*** rsalveti <rsalveti!sid117878@gateway/web/irccloud.com/x-btkxkimomqnvubmz> has joined #yocto | 14:24 | |
*** smurray <smurray!sid98062@gateway/web/irccloud.com/x-rtoywpypeebxgeor> has joined #yocto | 14:24 | |
*** paulbarker <paulbarker!sid269702@gateway/web/irccloud.com/x-dkkyxsjkuxlrqgdj> has joined #yocto | 14:24 | |
*** dagmcr <dagmcr!sid323878@gateway/web/irccloud.com/x-guxxnvmzvbtgyfof> has joined #yocto | 14:24 | |
*** stwcx <stwcx!~stwcx@2604:880:a:6::c9c> has joined #yocto | 14:24 | |
*** shauno <shauno!~soneil@pdpc/supporter/professional/shauno> has joined #yocto | 14:24 | |
*** fullstop <fullstop!~fullstop@162.243.42.48> has joined #yocto | 14:24 | |
*** RB2 <RB2!~RB2@c-73-178-160-56.hsd1.nj.comcast.net> has joined #yocto | 14:24 | |
*** rhadye <rhadye!sid217449@gateway/web/irccloud.com/x-gvtiznpljrirpprs> has joined #yocto | 14:24 | |
*** fancer <fancer!fancer@gateway/web/irccloud.com/x-tkjighovhubiotvk> has joined #yocto | 14:24 | |
*** kamel_b <kamel_b!~kamel@ec2-52-47-93-88.eu-west-3.compute.amazonaws.com> has joined #yocto | 14:24 | |
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto | 14:24 | |
*** jero <jero!~boo@fougasse.net> has joined #yocto | 14:24 | |
*** ruru4143 <ruru4143!~ruru4143@vmi243882.contaboserver.net> has joined #yocto | 14:24 | |
*** linuxjacques <linuxjacques!~jacques@nslu2-linux/jacques> has joined #yocto | 14:24 | |
*** mardy <mardy!~mardy@88-115-221-237.elisa-laajakaista.fi> has joined #yocto | 14:24 | |
*** CarlGel <CarlGel!~Rika-chan@unaffiliated/carlgel> has joined #yocto | 14:24 | |
*** rewitt <rewitt!rewitt@nat/intel/x-ejmvnfcnubhndazp> has joined #yocto | 14:24 | |
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has joined #yocto | 14:24 | |
*** milloni <milloni!~milloni@preemptable.org> has joined #yocto | 14:24 | |
*** beneth <beneth!~beneth@lxcb.beneth.fr> has joined #yocto | 14:24 | |
*** Crofton|road <Crofton|road!uid401373@gateway/web/irccloud.com/x-ygrfgheccqoacfbx> has joined #yocto | 14:24 | |
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has joined #yocto | 14:24 | |
*** Chaser <Chaser!~Chaser@ec2-13-233-34-134.ap-south-1.compute.amazonaws.com> has joined #yocto | 14:24 | |
*** qschulz <qschulz!~quentin@ns326003.ip-37-187-106.eu> has joined #yocto | 14:24 | |
*** icee <icee!mlyle@dRonin/dev/icee> has joined #yocto | 14:24 | |
*** fray <fray!~fray@kernel.crashing.org> has joined #yocto | 14:24 | |
*** mattsm <mattsm!~mattsm@76-205-175-243.lightspeed.austtx.sbcglobal.net> has joined #yocto | 14:24 | |
*** silver-gekko <silver-gekko!~calhotas@185.17.231.94> has joined #yocto | 14:24 | |
*** RP <RP!~RP@5751f4a1.skybroadband.com> has joined #yocto | 14:24 | |
*** dl9pf <dl9pf!uid395223@opensuse/member/dl9pf> has joined #yocto | 14:24 | |
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto | 14:24 | |
*** griffinp <griffinp!griffinp@gateway/shell/linaro/x-sqrpkvipgserevmq> has joined #yocto | 14:24 | |
*** Tartarus <Tartarus!sid72705@gateway/web/irccloud.com/x-rphuybynlrllfmwt> has joined #yocto | 14:24 | |
*** filt3r <filt3r!~x@2a03:b0c0:2:d0::7d:7001> has joined #yocto | 14:24 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has joined #yocto | 14:24 | |
*** lpoulain <lpoulain!lpoulain@gateway/shell/linaro/x-kzrmbxcmvnbhjopk> has joined #yocto | 14:24 | |
*** rperier <rperier!~quassel@unaffiliated/bambee> has joined #yocto | 14:24 | |
*** jonmason <jonmason!sid36602@gateway/web/irccloud.com/x-abmfbzflozsxqqwh> has joined #yocto | 14:24 | |
*** runde <runde!sid228344@gateway/web/irccloud.com/x-yffivfkgootsppka> has joined #yocto | 14:24 | |
*** jft <jft!znc@159.203.20.86> has joined #yocto | 14:24 | |
*** dirbaio <dirbaio!~dirbaio@nsmbhd.net> has joined #yocto | 14:24 | |
*** rrerolle <rrerolle!~rrerolle@vps.neonex.fr> has joined #yocto | 14:24 | |
*** halstead <halstead!~halstead@drupal.org/user/301087/view> has joined #yocto | 14:24 | |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has joined #yocto | 14:27 | |
JPEW | Hmm, why doesn't my core-image-sato build have any kernel modules.... | 14:31 |
*** stephano <stephano!~stephano@c-73-164-244-205.hsd1.or.comcast.net> has joined #yocto | 14:32 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:5f85> has quit IRC | 14:32 | |
RP | JPEW: I decided to merge hashequiv and turn it on ;-) | 14:34 |
RP | JPEW: thanks for your help with it! | 14:34 |
JPEW | RP: I saw, that's awesome | 14:34 |
*** xtron <xtron!~xtron@110.93.212.98> has quit IRC | 14:37 | |
*** ThomasD13 <ThomasD13!~ThomasD13@DSL01.212.114.255.148.ip-pool.NEFkom.net> has quit IRC | 14:37 | |
RP | File "/home/pokybuild/yocto-worker/pkgman-deb-non-deb/build/bitbake/lib/hashserv/__init__.py", line 45, in setup_database | 14:39 |
RP | cursor.execute('DROP INDEX IF EXISTS taskhash_lookup') | 14:39 |
RP | sqlite3.OperationalError: disk I/O error | 14:39 |
RP | JPEW: a new one? of course why isn't it connecting to the central server too :/ | 14:39 |
JPEW | RP: Eww, that's gross | 14:40 |
JPEW | Simultaeous access? | 14:40 |
RP | JPEW: its just running with a local DB. Misconfiguration | 14:41 |
RP | JPEW: it'd be unique to the build so not sure why it failed | 14:41 |
*** hyper_dave <hyper_dave!~quassel@196.188.72.247> has joined #yocto | 14:41 | |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC | 14:42 | |
RP | JPEW: seems to be specifically happening only on tubleweed | 14:43 |
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto | 14:46 | |
*** ericch <ericch!~ericch@pool-108-34-251-214.prvdri.fios.verizon.net> has joined #yocto | 14:48 | |
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC | 14:55 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has quit IRC | 14:58 | |
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has quit IRC | 15:00 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has joined #yocto | 15:04 | |
JPEW | hmm, perhaps a difference in sqlite? | 15:06 |
*** Sandrita <Sandrita!d0586e2e@gateway/web/cgi-irc/kiwiirc.com/ip.208.88.110.46> has joined #yocto | 15:13 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 15:15 | |
qschulz | kanavin_: Hi. I have an issue with gobject-introspection on warrior. icecc enabled if that matters in any way. It does NOT happen all the time so I'm quite lost right now. | 15:40 |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has quit IRC | 15:40 | |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has joined #yocto | 15:40 | |
JPEW | qschulz: Whats the error? | 15:42 |
kanavin_ | qschulz, I am not using icecc, so maybe you could try without it? | 15:45 |
qschulz | JPEW: sorry got stopped while crafting the log :D | 15:47 |
qschulz | kanavin_: http://code.bulix.org/0dsjn7-984653 | 15:47 |
qschulz | it's just the first in the list, then all the next calls are failing as well | 15:47 |
qschulz | I don't see any specific error code | 15:47 |
qschulz | I "hacked" the run.do_compile to not call icecc and meson but instead call that exact line which is failing and I see one more line | 15:48 |
qschulz | Error while loading /tmp/StreamSDK-tmp-build-yocto/work/cortexa8hf-neon-poky-linux-gnueabi/gobject-introspection/1.58.3-r0/build/tools/g-ir-compiler: No such file or directory | 15:49 |
qschulz | and indeed, with a find, g-ir-compiler is in /tmp/StreamSDK-tmp-build-yocto/work/cortexa8hf-neon-poky-linux-gnueabi/gobject-introspection/1.58.3-r0/recipe-sysroot-native/usr/bin/g-ir-compiler | 15:50 |
qschulz | this blows my mind because I don't understand why this would fail only sometimes. | 15:52 |
qschulz | kanavin_: I could disable icecc but the last time I did a cleansstate or remove tmpdir but keeping sstate-cache, the error didn't happend before a few builds later. So I wanted to keep it in that state if we want to debug it from there | 15:53 |
kanavin_ | qschulz, the only thing I can suggest is, take plain poky, see if it works for you, and work out what the difference is | 15:55 |
qschulz | we're using poky distro and not modifying gobject-introspection in any way... | 15:57 |
qschulz | kanavin_: any idea if there are actually more debug messages printable? because there's actually no error printed in the log.do_compile so it makes everything harder to debug :) | 15:58 |
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC | 16:02 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 16:03 | |
*** yann <yann!~yann@85.118.38.73> has quit IRC | 16:04 | |
kanavin_ | qschulz, you probably need to focus on that failing script, I think it runs qemu and things are failing there | 16:11 |
qschulz | kanavin_: the one error I see when "manually" running the line is: Error while loading /tmp/StreamSDK-tmp-build-yocto/work/cortexa8hf-neon-poky-linux-gnueabi/gobject-introspection/1.58.3-r0/build/tools/g-ir-compiler: No such file or directory | 16:12 |
qschulz | I see that there is a patch you wrote in meson that is touching the dir of g-ir-compiler but maybe I'm looking too far now | 16:13 |
qschulz | anyway, will look on my side :) Thanks for your time | 16:13 |
kanavin_ | qschulz, as I said, take plain poky, and do the same thing there. It works for me, it works on the autobuilder, so the issue is likely local to your setup. | 16:14 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has quit IRC | 16:26 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 16:28 | |
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC | 16:39 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has quit IRC | 16:44 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 16:49 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 16:51 | |
RP | JPEW: of course the async requirement in the server now means we effectively made python 3.5 the minimum version | 16:52 |
RP | I don't think I want to consider not using the async support in that code | 16:52 |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 16:54 | |
*** yann <yann!~yann@91-170-159-152.subs.proxad.net> has joined #yocto | 16:55 | |
JPEW | No, you really need async for that code to perform reasonably | 16:56 |
JPEW | I tried a single thread and multiple threads and it just didn't scale | 16:56 |
*** LFSVeteran <LFSVeteran!~LFSVetera@2a02:a440:69df:1:dafc:93ff:fec0:20f6> has joined #yocto | 16:59 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has quit IRC | 16:59 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 17:00 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has quit IRC | 17:01 | |
LFSVeteran | almost done with rebuilding the system | 17:05 |
LFSVeteran | however trouble with some packages | 17:05 |
LFSVeteran | util-linux: https://pastebin.com/JV1DfFiV | 17:06 |
*** diego_r <diego_r!~diego@217-133-17-98.static.clienti.tiscali.it> has quit IRC | 17:10 | |
khem | you need to depend on pcre2 | 17:17 |
khem | perhaps its poking at your build system and deciding that it needs to enable pcre but then it does not find it during link because its a cross compile ? | 17:20 |
khem | lot of bad things of such order can happen with unprotected cross-compiling build systems | 17:20 |
khem | I dont use cross builds if I do I always use known ones | 17:21 |
LFSVeteran | I have pcre2 installed | 17:22 |
LFSVeteran | even pointing to it with LDFLAGS | 17:22 |
khem | check config.log | 17:25 |
khem | sometimes autotools have mind of their own | 17:26 |
khem | how is pcre2 compiled ? | 17:26 |
khem | because it sometimes use pkgconfig to find libs and headers for a package and pkgconfig should be sysroot aware for it to work in cross-compile env otherwise it will return native paths | 17:29 |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has quit IRC | 17:31 | |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has joined #yocto | 17:32 | |
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has joined #yocto | 17:32 | |
RP | JPEW: we should add some messages about minimum python versions | 17:34 |
*** leitao <leitao!~leitao@2620:10d:c092:200::1:72ee> has quit IRC | 17:34 | |
*** frsc <frsc!~frsc@i59F7229D.versanet.de> has quit IRC | 17:41 | |
* RP adds bug 13678 | 17:41 | |
yocti | Bug https://bugzilla.yoctoproject.org/show_bug.cgi?id=13678 normal, Undecided, ---, ross.burton, NEW , We need to document and test py 3.5 version requirement for hashequiv | 17:41 |
*** stephano <stephano!~stephano@c-73-164-244-205.hsd1.or.comcast.net> has quit IRC | 17:44 | |
RP | All I seem to do is file bugs atm :/ | 17:48 |
ecdhe | Is there a recommended way to create an empty /lib/firmware directory in my rootfs? | 17:49 |
Ad0 | qschulz, I got it working by switching to meta-security. it has proper TPM2 recipes which actually work, and again - strange that they don't show up in the index. | 17:49 |
RP | ecdhe: create a package which has that empty directory and install it into the rootfs | 17:51 |
LFSVeteran | pcre: https://pastebin.com/UJsZvGbW | 17:56 |
LFSVeteran | RP: maybe fixing the bugs too? ;) | 17:56 |
LFSVeteran | fingers crossed | 17:59 |
RP | LFSVeteran: finding them faster than I can fix... | 18:00 |
LFSVeteran | sounds familiar..... | 18:00 |
*** vineela <vineela!~vtummala@134.134.137.77> has joined #yocto | 18:07 | |
LFSVeteran | finally....one down 4 to go | 18:12 |
rburton | LFSVeteran: considering this is #yocto, why are you not using the oe-core recipes for those | 18:14 |
LFSVeteran | possible...have to search for those recipe's then | 18:16 |
LFSVeteran | two down, 3 to go | 18:17 |
moto-timo | RP: turns out if I look a log.do_testimage it has the errors, such as "you don't have r/w access to /dev/net/tun" or "... /dev/kvm" | 18:38 |
RP | moto-timo: hmm, so why aren't those displayed | 18:38 |
moto-timo | RP: but it seems like that should be written to the main console, not obscured by "qemu exited with exit code 1" | 18:38 |
moto-timo | RP: yes, why indeed? | 18:39 |
RP | moto-timo: no idea, worth a bug while you can describe how to reproduce | 18:39 |
moto-timo | RP: so that's the next bit of investigation | 18:39 |
moto-timo | RP: will do | 18:39 |
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has quit IRC | 18:46 | |
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has quit IRC | 18:54 | |
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has joined #yocto | 18:58 | |
*** kscherer <kscherer!~kscherer@dsl-173-206-23-158.tor.primus.ca> has joined #yocto | 18:59 | |
*** jaganteki <jaganteki!7361be1d@115.97.190.29> has joined #yocto | 19:00 | |
jaganteki | Hi, anyone knows dual boot partition format with .wks | 19:02 |
jaganteki | https://paste.ubuntu.com | 19:02 |
jaganteki | I'm trying to create 2 boot partitions here., but I can seen that the second partition shows the boot flag where as first one doesn't. | 19:03 |
jaganteki | https://paste.ubuntu.com/p/yjddkKYS8K/ | 19:03 |
jaganteki | any idea? | 19:03 |
*** LFSVeteran <LFSVeteran!~LFSVetera@2a02:a440:69df:1:dafc:93ff:fec0:20f6> has quit IRC | 19:09 | |
*** LFSVeteran <LFSVeteran!~LFSVetera@2a02:a440:69df:1:dafc:93ff:fec0:20f6> has joined #yocto | 19:10 | |
jaganteki | sorry wrong link for .wks file. here is updated https://paste.ubuntu.com/p/YYMQMB7RHc/ | 19:10 |
*** tgamblin <tgamblin!~tgamblin@CPE64777de11593-CM64777de11590.cpe.net.cable.rogers.com> has joined #yocto | 19:14 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 19:14 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto | 19:16 | |
*** roussinm <roussinm!~mroussin@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC | 19:18 | |
*** roussinm <roussinm!~mroussin@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has joined #yocto | 19:20 | |
*** comptroller <comptroller!~comptroll@47-213-230-143.paolcmtc01.res.dyn.suddenlink.net> has quit IRC | 19:50 | |
*** comptroller <comptroller!~comptroll@47-213-230-143.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto | 20:01 | |
*** hpsy <hpsy!~hpsy@217.66.60.5> has quit IRC | 20:10 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dyagxvgwhrxoxawp> has quit IRC | 20:11 | |
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto | 20:21 | |
*** jaganteki <jaganteki!7361be1d@115.97.190.29> has quit IRC | 20:28 | |
*** champagneg <champagneg!~gchamp@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC | 20:36 | |
*** aidanh <aidanh!~aidanh@unaffiliated/aidanh> has quit IRC | 20:42 | |
*** stephano <stephano!~stephano@c-73-164-244-205.hsd1.or.comcast.net> has joined #yocto | 20:43 | |
*** champagneg <champagneg!~gchamp@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has joined #yocto | 20:45 | |
*** aidanh <aidanh!~aidanh@unaffiliated/aidanh> has joined #yocto | 20:46 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 20:53 | |
*** kanavin__ <kanavin__!~kanavin@141.113.66.202> has joined #yocto | 20:56 | |
*** kanavin_ <kanavin_!~kanavin@141.113.66.202> has quit IRC | 20:56 | |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-fspwhkfdrqavcjym> has quit IRC | 21:06 | |
*** berton <berton!~berton@189.103.49.163> has quit IRC | 21:17 | |
*** Willy-- <Willy--!~william@drmons0552w-159-2-38-13.dhcp-dynamic.fibreop.ns.bellaliant.net> has joined #yocto | 21:22 | |
*** vineela <vineela!~vtummala@134.134.137.77> has quit IRC | 21:49 | |
*** kscherer <kscherer!~kscherer@dsl-173-206-23-158.tor.primus.ca> has quit IRC | 21:52 | |
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC | 21:53 | |
*** pohly <pohly!~pohly@p54BD5B80.dip0.t-ipconnect.de> has quit IRC | 21:58 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC | 22:10 | |
*** vineela <vineela!~vtummala@134.134.137.77> has joined #yocto | 22:12 | |
JPEW | moto-timo: running qemu in a container is trippy :) | 22:34 |
moto-timo | JPEW: almost have it... although chnmod 666 on /dev/kvm and /dev/net/tun is not what I want to do... nor run --priviledged | 22:38 |
JPEW | Hmm, It just worked in podman w/o coercing any permissions | 22:39 |
moto-timo | JPEW: facepalm. I forgot to look at podman... I'm using gitlab-runner | 22:39 |
JPEW | moto-timo: Ya, I actually can't run docker right now... Fedora31 broke it with cgroups2 switch | 22:41 |
JPEW | podman works pretty well, although image builds are painfully slow compared to docker+buildkit | 22:42 |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 22:42 | |
*** alessioigor <alessioigor!8c69cfe3@out-207-227.elettra.trieste.it> has quit IRC | 22:57 | |
moto-timo | JPEW: I've stayed on Fedora-29 to avoid those breakages... but also Debian-10 now | 22:58 |
*** leon-anavi <leon-anavi!~Leon@78.130.245.67> has quit IRC | 22:59 | |
khem | but you need cgroup2 to work for priviliges like this | 23:07 |
*** wertigon <wertigon!8addfa13@138.221.250.19> has quit IRC | 23:12 | |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto | 23:16 | |
Ad0 | what do I do if something I compile requires uuid/uuid.h ? (cmake)= | 23:18 |
Ad0 | I have to put something in DEPENDS but have no idea what :D | 23:18 |
Ad0 | linux-utils if anything wondered :P | 23:22 |
*** JaMa <JaMa!~martin@109.238.218.228> has quit IRC | 23:25 | |
rburton | Ad0: oe-pkgdata-util find-path /usr/include/**/uuid.h is useful for that | 23:41 |
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC | 23:57 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!