*** florian_kc <florian_kc!~florian@dynamic-093-131-038-095.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 245 seconds) | 00:03 | |
*** Perflosopher <Perflosopher!~perflosop@136.62.181.44> has quit IRC (Quit: Ping timeout (120 seconds)) | 00:05 | |
*** Net147 <Net147!~Net147@user/net147> has quit IRC (Quit: Quit) | 00:06 | |
*** Net147 <Net147!~Net147@167-179-157-192.a7b39d.syd.nbn.aussiebb.net> has joined #yocto | 00:06 | |
*** Perflosopher <Perflosopher!~perflosop@136.62.181.44> has joined #yocto | 00:07 | |
*** hnez <hnez!~quassel@flummi.grey.stw.pengutronix.de> has quit IRC (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.) | 00:08 | |
*** shoragan <shoragan!~shoragan@user/shoragan> has quit IRC (Quit: quit) | 00:08 | |
*** hnez <hnez!~quassel@flummi.grey.stw.pengutronix.de> has joined #yocto | 00:10 | |
*** shoragan <shoragan!~shoragan@user/shoragan> has joined #yocto | 00:10 | |
belgianguy | rburton, the build failed on Meson again, something about xlib based GLX requires at least one gallium driver. https://pastebin.com/NzqdbWFj | 00:19 |
---|---|---|
belgianguy | might be this https://community.st.com/t5/embedded-software-mpus/error-when-trying-to-combine-x11-with-weston-in-ecosystem/td-p/96675 | 00:20 |
belgianguy | As I can see -Dgallium-drivers= -Dllvm=disabled in my pastebin as well | 00:22 |
*** hnez <hnez!~quassel@flummi.grey.stw.pengutronix.de> has quit IRC (Read error: Connection reset by peer) | 00:23 | |
*** shoragan <shoragan!~shoragan@user/shoragan> has quit IRC (Read error: Connection reset by peer) | 00:23 | |
*** shoragan <shoragan!~shoragan@user/shoragan> has joined #yocto | 00:26 | |
*** hnez <hnez!~quassel@flummi.grey.stw.pengutronix.de> has joined #yocto | 00:27 | |
khem | belgianguy: which image are you trying to build ? I would suggest to build core-image-weston if you are not hung up on X11 | 00:33 |
belgianguy | khem, I'm just following a tutorial series on YouTube to get the hang of Yocto, but outside of the qemu builds, I haven't had much succes :) | 00:36 |
khem | yeah GPU drivers are always PITA | 00:38 |
khem | We do lot of curating for real devices in yoe distro e.g. see https://github.com/yoedistro/yoe-distro | 00:38 |
belgianguy | It's this one https://www.youtube.com/playlist?list=PLEBQazB0HUyTpoJoZecRK6PpDG31Y7RPB they build for this specific board STM32MP1 | 00:39 |
khem | What image are you building that is pulling in mesa-gl ? it seems some X11 dep | 00:39 |
belgianguy | it's the core-minimal-image, but I do see the issues that is mentioned in the st.com community forum | 00:40 |
belgianguy | it has 'osmesa gallium' but perhaps it needs 'gallium' as a standalone option (without osmesa) | 00:40 |
khem | so are you trying to follow part2 tutorial ? | 00:42 |
belgianguy | khem, indeed | 00:42 |
khem | thats based on dunfell branch and they are just building core-image-minimal | 00:42 |
khem | so no graphics | 00:43 |
belgianguy | I used kirkstone, but all the same steps | 00:43 |
khem | and same image ? | 00:43 |
belgianguy | yes | 00:43 |
khem | core-image-minimal should not be pulling mesa-gl thats a bit over dependencies | 00:43 |
belgianguy | I had also expected that minimal would be console only, but alas | 00:44 |
khem | you can generate the dependency file and see who is pulling it | 00:44 |
belgianguy | Can you tell me how? I've found 4 files related to mesa: ➜ Yocto less ./poky/meta/recipes-graphics/mesa/mesa_22.0.3.bb | 00:45 |
belgianguy | ➜ Yocto less ./poky/meta/recipes-graphics/mesa/mesa-gl_22.0.3.bb | 00:45 |
belgianguy | ➜ Yocto less ./meta-st-stm32mp/recipes-graphics/mesa/mesa_%.bbappend | 00:45 |
belgianguy | ➜ Yocto less ./meta-st-stm32mp/recipes-graphics/mesa/mesa-gl_%.bbappend | 00:45 |
khem | May be first try adding `DISTRO_FEATURES:remove = "x11"` in conf/local.conf | 00:45 |
belgianguy | will do | 00:45 |
khem | for deps you can do `bitbake -g core-image-minimal` | 00:46 |
khem | this should dump a file called `*.dot` you can pastebin them somewhere | 00:46 |
belgianguy | ah, graphviz ? I remember that :) | 00:47 |
khem | its standard dotty file format so you can either use some dotty program to display it, or open it in editor and search for -> "mesa-gl*" | 00:47 |
khem | that should list who is wanting it | 00:47 |
belgianguy | the dot file is too big for pastebin it seems | 00:49 |
belgianguy | would a grep suffice? | 00:49 |
khem | see - https://github.com/STMicroelectronics/meta-st-stm32mp/blob/kirkstone/conf/machine/include/gpu_vivante.inc#L48 | 00:50 |
khem | yeah you have to follow it a bit | 00:50 |
khem | so full file is good | 00:50 |
belgianguy | I'll try to find another pastebin clone, where I can post it in full | 00:51 |
belgianguy | khem, https://privatebin.net/?a041fef0014fd5a0#5upHrhnYT9Mn2DmuW4HuvjnxpyG2Jrw3RqayeKCxoggu | 00:52 |
belgianguy | That's the contents of task-depends.dot | 00:53 |
khem | they have bunch of EXTRA_IMAGEDEPENDS in that layer which will insert depedencies to any image including core-image-minimal sadly | 00:53 |
belgianguy | khem, and based on the dot file, is every mention of mesa on the right side of a -> a "want" from someone? | 00:57 |
khem | Here is what I can see bluez5 -> python3-pygobject -> python3-pycairo -> cairo -> mesa-gl | 00:57 |
khem | and bluez5 is inserted from st layer | 00:58 |
belgianguy | It's a bluetooth protocol stack if I read that correctly | 01:00 |
khem | yeah | 01:02 |
khem | so I think you can break this dependency chain at cairo | 01:02 |
khem | add a cairo_%.bbappend in st layer perhaps | 01:02 |
belgianguy | Could you explain how that would solve it? Would I repeat the same dependencies but leave out bluez5 then? | 01:03 |
khem | PACKAGECONFIG:append = " egl glesv2" | 01:03 |
khem | PACKAGECONFIG:remove = "opengl" | 01:04 |
*** davidinux <davidinux!~davidinux@45.11.82.220> has quit IRC (Ping timeout: 248 seconds) | 01:04 | |
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has quit IRC (Quit: Client closed) | 01:04 | |
belgianguy | I'm very new, and I really appreciate you take the time to teach me the "how", teach a man to fish etc. | 01:04 |
khem | I think you could get rid of this problem by simply removing X11 from your DISTRO_FEATURES as I suggested earlier | 01:05 |
khem | or do the cairo bbappend as I suggested now | 01:05 |
khem | cairo thing could be upstreamed to st layer too with proper overrided | 01:05 |
*** davidinux <davidinux!~davidinux@host-95-237-204-243.retail.telecomitalia.it> has joined #yocto | 01:06 | |
belgianguy | ok, I do not need or expected any GUI, so x11 can go | 01:06 |
khem | ok | 01:06 |
belgianguy | So here it's a case of "bloatyness" where a minimal image gets weighed down to be more user friendly? | 01:07 |
belgianguy | khem, would regenerating the dependency tree (dot file) also show that it no longer will be used? | 01:09 |
belgianguy | (after adding the removal of x11) | 01:11 |
*** sakoman <sakoman!~steve@dhcp-72-234-106-30.hawaiiantel.net> has quit IRC (Quit: Leaving.) | 01:13 | |
belgianguy | Tried a rebuild with the DISTRO_FEATURES:remove = "x11" at the bottom of my local.conf, but it still pulls it in | 01:14 |
belgianguy | same error | 01:14 |
khem | can you try bitbake-getvar DISTRO_FEATURES | 01:17 |
belgianguy | will do | 01:17 |
belgianguy | khem, https://pastebin.com/c9WVKXLh | 01:19 |
belgianguy | it mentions wayland :/ | 01:19 |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has quit IRC (Quit: ZNC - http://znc.in) | 01:20 | |
khem | it still has x11 | 01:20 |
belgianguy | ah, I had commented that removal line | 01:20 |
belgianguy | let me repeat it with it active | 01:20 |
khem | try adding `DISTRO_FEATURES :remove = "x11"` in conf/local.conf file | 01:20 |
khem | DISTRO_FEATURES:remove that is | 01:21 |
belgianguy | I added it, but x11 seems to stay even with it active https://pastebin.com/52Ra86aP | 01:22 |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has joined #yocto | 01:22 | |
khem | where did you add it can you show the diff and file location you added it to | 01:25 |
belgianguy | sure, I'll make a screenshot and a diff | 01:25 |
khem | this local.conf should be in your build/conf/ dir same place where you made change for MACHINE as per the tutorial | 01:26 |
belgianguy | khem, you're right, I had another build folder in poky that I was editing, now added the removal parameter to the correct file (sorry) | 01:28 |
khem | np you learn :) | 01:30 |
belgianguy | khem, https://pastebin.com/5yCk1KDz x11 no longer there :) | 01:31 |
khem | looks better | 01:31 |
khem | give it a try | 01:31 |
belgianguy | I'll give the dependency tree a whirl | 01:31 |
khem | sure, | 01:32 |
belgianguy | Learned lots of diagnostics, which is very valuable to poke around :) | 01:32 |
belgianguy | no more mention of mesa when I grep the task-depends.dot file :) | 01:33 |
belgianguy | let's give it a go | 01:33 |
belgianguy | I hope they don't use a GUI in the next steps of the tutorial :D, oh well, we'll see | 01:35 |
*** Circuitsoft <Circuitsoft!uid393878@id-393878.lymington.irccloud.com> has joined #yocto | 01:41 | |
belgianguy | khem, thanks for the help and the link to https://github.com/yoedistro/yoe-distro, seems like something I could use :) | 01:46 |
khem | sure, once you want some more fun you are welcome there :) | 02:03 |
belgianguy | khem, the build completed succesfully! Thanks for taking the time to explain things (teach a man to fish etc. ;) ) | 02:05 |
khem | cool enjoy | 02:06 |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 02:22 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has joined #yocto | 02:22 | |
*** sakoman <sakoman!~steve@dhcp-72-234-106-30.hawaiiantel.net> has joined #yocto | 02:27 | |
*** pbsds <pbsds!~pbsds@84.20.102.94> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 02:53 | |
*** pbsds <pbsds!~pbsds@84.20.102.94> has joined #yocto | 02:54 | |
*** amitk_ <amitk_!~amit@58.84.61.40> has joined #yocto | 03:41 | |
dash_hope | i am not familiar with meson build so wondering if anyone knows this: | 03:53 |
dash_hope | common_inc += [ include_directories('.'), include_directories(join_paths(meson.current_build_dir(), '../../../recipe-sysroot/usr/include/internal/'))] | 03:53 |
dash_hope | testcommon = shared_library( 'testcommon', sources, include_directories: common_inc, dependencies: t_deps, link_args : t_link_args,install: true,) | 03:53 |
dash_hope | This is currently a hack that is present in the code which is causing issue, wondering if there is any way to get rid of the hardcoded path as the header is already present in usr/include from other package? | 03:53 |
dash_hope | install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} FILES_MATCHING PATTERN *.h) | 03:53 |
*** amitk_ <amitk_!~amit@58.84.61.40> has quit IRC (Ping timeout: 248 seconds) | 04:02 | |
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Ping timeout: 246 seconds) | 04:04 | |
*** Pinta <Pinta!~Pinta@sprxy4.nrl.navy.mil> has joined #yocto | 04:08 | |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has quit IRC (Ping timeout: 252 seconds) | 04:30 | |
*** xmn <xmn!~xmn@2600:4040:9390:8c00:ec38:95b7:95d5:685d> has quit IRC (Quit: ZZZzzz…) | 04:32 | |
*** sakoman <sakoman!~steve@dhcp-72-234-106-30.hawaiiantel.net> has quit IRC (Quit: Leaving.) | 04:32 | |
*** Ablu <Ablu!~Ablu@user/Ablu> has joined #yocto | 04:53 | |
*** Wenqing <Wenqing!~wenqingzo@78.40.148.178> has quit IRC (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.) | 05:00 | |
*** Wenqing <Wenqing!~wenqingzo@78.40.148.178> has joined #yocto | 05:01 | |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has joined #yocto | 05:02 | |
*** zelgomer <zelgomer!~jake@gateway/tor-sasl/zelgomer> has quit IRC (*.net *.split) | 05:05 | |
*** GNUmoon <GNUmoon!~GNUmoon@gateway/tor-sasl/gnumoon> has quit IRC (*.net *.split) | 05:05 | |
*** zelgomer <zelgomer!~jake@gateway/tor-sasl/zelgomer> has joined #yocto | 05:11 | |
*** xmn <xmn!~xmn@2600:4040:9390:8c00:2492:4d1b:326e:70e0> has joined #yocto | 06:03 | |
*** dash_hope <dash_hope!~dash_hope@54-240-198-33.amazon.com> has quit IRC (Quit: Client closed) | 06:08 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 06:27 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has joined #yocto | 06:27 | |
*** Lihis <Lihis!~Lihis@2001:41d0:e:f34::1> has quit IRC (Quit: Quitting) | 06:58 | |
*** Lihis <Lihis!~Lihis@2001:41d0:e:f34::1> has joined #yocto | 07:00 | |
*** Pinta <Pinta!~Pinta@sprxy4.nrl.navy.mil> has quit IRC (Quit: Client closed) | 07:00 | |
*** Chaser <Chaser!~Chaser@user/chaser> has joined #yocto | 07:08 | |
*** xmn <xmn!~xmn@2600:4040:9390:8c00:2492:4d1b:326e:70e0> has quit IRC (Ping timeout: 248 seconds) | 07:41 | |
belgianguy | khem, https://github.com/STMicroelectronics/meta-st-stm32mp/pull/56 ;) | 08:30 |
*** GNUmoon <GNUmoon!~GNUmoon@gateway/tor-sasl/gnumoon> has joined #yocto | 08:32 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 09:31 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd49ef5.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 244 seconds) | 09:40 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd4908f.dip0.t-ipconnect.de> has joined #yocto | 09:42 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has joined #yocto | 09:54 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has quit IRC (Ping timeout: 244 seconds) | 10:14 | |
*** goliath <goliath!~goliath@user/goliath> has joined #yocto | 10:23 | |
*** kpo <kpo!~kpo@031011130015.dynamic-3-poz-k-1-0-0.vectranet.pl> has joined #yocto | 10:27 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 10:54 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 10:54 | |
*** Starfoxxes <Starfoxxes!~Starfoxxe@2a02:8070:5380:54c0:884e:1e44:9cf7:e439> has quit IRC (Ping timeout: 244 seconds) | 11:06 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 11:10 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 11:36 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 11:51 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 11:51 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has joined #yocto | 12:05 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd4908f.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 245 seconds) | 12:19 | |
*** davidinux <davidinux!~davidinux@host-95-237-204-243.retail.telecomitalia.it> has quit IRC (Quit: WeeChat 3.5) | 12:33 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd49967.dip0.t-ipconnect.de> has joined #yocto | 12:43 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 12:47 | |
*** prabhakar <prabhakar!~prabhakar@pc.renesas.eu> has quit IRC (Ping timeout: 258 seconds) | 12:49 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has quit IRC (Ping timeout: 245 seconds) | 13:01 | |
*** ajfriesen8473 <ajfriesen8473!~ajfriesen@p4fd49822.dip0.t-ipconnect.de> has joined #yocto | 13:01 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd49967.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 256 seconds) | 13:03 | |
*** ajfriesen8473 is now known as ajfriesen847 | 13:03 | |
*** camus <camus!~Instantbi@58.246.136.203> has quit IRC (Remote host closed the connection) | 13:22 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has joined #yocto | 13:39 | |
*** Sai-Kiran <Sai-Kiran!~Sai-Kiran@103.5.135.82> has joined #yocto | 13:57 | |
*** florian_kc <florian_kc!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has quit IRC (Ping timeout: 248 seconds) | 13:58 | |
*** kpo <kpo!~kpo@031011130015.dynamic-3-poz-k-1-0-0.vectranet.pl> has quit IRC (Ping timeout: 256 seconds) | 13:58 | |
Sai-Kiran | Hi. I am using meta-rust and compiling an rust application. I would like to know how to cross compile the same code, in Yocto. Could someone give some pointers for this? | 13:59 |
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto | 13:59 | |
*** Sai-Kiran <Sai-Kiran!~Sai-Kiran@103.5.135.82> has quit IRC (Quit: Client closed) | 14:18 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p4fd49822.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 240 seconds) | 15:07 | |
*** Chaser <Chaser!~Chaser@user/chaser> has quit IRC (Quit: Chaser) | 15:08 | |
*** belgianguy <belgianguy!~belgiangu@ptr-651fbf7gush35y8axjp.18120a2.ip6.access.telenet.be> has quit IRC (Remote host closed the connection) | 15:17 | |
*** kpo <kpo!~kpo@156.17.147.54> has joined #yocto | 15:34 | |
*** sakoman <sakoman!~steve@dhcp-72-234-106-30.hawaiiantel.net> has joined #yocto | 15:36 | |
*** belgianguy <belgianguy!~belgiangu@ptr-651fbf7s64zhzol22g2.18120a2.ip6.access.telenet.be> has joined #yocto | 15:52 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p54b9453d.dip0.t-ipconnect.de> has joined #yocto | 16:12 | |
*** belgianguy <belgianguy!~belgiangu@ptr-651fbf7s64zhzol22g2.18120a2.ip6.access.telenet.be> has quit IRC (Remote host closed the connection) | 16:19 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p54b9453d.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 256 seconds) | 16:22 | |
*** starblue <starblue!~juergen@dslb-088-078-111-236.088.078.pools.vodafone-ip.de> has quit IRC (Ping timeout: 246 seconds) | 16:24 | |
*** ajfriesen847 <ajfriesen847!~ajfriesen@p54b9453d.dip0.t-ipconnect.de> has joined #yocto | 16:26 | |
*** zelgomer <zelgomer!~jake@gateway/tor-sasl/zelgomer> has quit IRC (Ping timeout: 246 seconds) | 16:29 | |
*** zelgomer <zelgomer!~jake@gateway/tor-sasl/zelgomer> has joined #yocto | 16:31 | |
*** Chaser <Chaser!~Chaser@user/chaser> has joined #yocto | 16:38 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 16:42 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has joined #yocto | 16:42 | |
*** Chaser <Chaser!~Chaser@user/chaser> has quit IRC (Ping timeout: 250 seconds) | 16:42 | |
*** GNUmoon <GNUmoon!~GNUmoon@gateway/tor-sasl/gnumoon> has quit IRC (Ping timeout: 246 seconds) | 17:11 | |
dvergatal | abelloni: I'm running it from latest c8cac0d5db1a12b3fb37f0a7d3f9a9b456d2e9e4 abelloni/master-next to see what is causing these ipks failures | 17:17 |
*** GNUmoon <GNUmoon!~GNUmoon@gateway/tor-sasl/gnumoon> has joined #yocto | 17:23 | |
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Read error: Connection reset by peer) | 17:29 | |
*** florian <florian!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has joined #yocto | 17:52 | |
*** pabigot <pabigot!~pab@10.sub-75-236-36.myvzw.com> has quit IRC (Ping timeout: 248 seconds) | 18:08 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 18:15 | |
*** pabigot <pabigot!~pab@183.sub-75-236-54.myvzw.com> has joined #yocto | 18:24 | |
*** Chaser <Chaser!~Chaser@user/chaser> has joined #yocto | 18:33 | |
*** Chaser <Chaser!~Chaser@user/chaser> has quit IRC (Client Quit) | 18:33 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 18:33 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 18:34 | |
*** Chaser <Chaser!~Chaser@user/chaser> has joined #yocto | 18:39 | |
*** Chaser <Chaser!~Chaser@user/chaser> has quit IRC (Remote host closed the connection) | 18:44 | |
*** Chaser <Chaser!~Chaser@user/chaser> has joined #yocto | 18:45 | |
khem | dvergatal: which fails ? | 18:45 |
*** starblue <starblue!~juergen@p200300c13f4cf400b9d07ecc8e7e384c.dip0.t-ipconnect.de> has joined #yocto | 18:50 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 19:07 | |
*** Wouter0100670440 <Wouter0100670440!~Wouter010@entry.nbg.netvos.nl> has joined #yocto | 19:07 | |
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV) | 20:12 | |
*** kpo <kpo!~kpo@156.17.147.54> has quit IRC (Ping timeout: 256 seconds) | 20:24 | |
*** Chaser <Chaser!~Chaser@user/chaser> has quit IRC (Quit: Chaser) | 20:33 | |
*** amitk <amitk!~amit@58.84.61.40> has quit IRC (Ping timeout: 256 seconds) | 20:41 | |
*** starblue <starblue!~juergen@p200300c13f4cf400b9d07ecc8e7e384c.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 246 seconds) | 20:43 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 20:50 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 20:51 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Client Quit) | 20:55 | |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has joined #yocto | 20:56 | |
*** goliath <goliath!~goliath@user/goliath> has joined #yocto | 21:06 | |
*** starblue <starblue!~juergen@dslb-088-078-111-236.088.078.pools.vodafone-ip.de> has joined #yocto | 21:08 | |
*** pabigot <pabigot!~pab@183.sub-75-236-54.myvzw.com> has quit IRC (Ping timeout: 250 seconds) | 21:58 | |
*** pabigot <pabigot!~pab@131.sub-75-236-57.myvzw.com> has joined #yocto | 22:14 | |
dvergatal | khem: the one with mine patches for preserving acls in ipks | 22:24 |
JaMa | dvergatal, khem: fwiw I've recently updated glibc to 2.38 on gentoo and I'm not seeing that failure (with oe-core/master + glibc-2.38 changes) | 22:28 |
*** alessioigor <alessioigor!~alessioig@185.178.95.254> has quit IRC (Quit: alessioigor) | 22:30 | |
dvergatal | khem: alexandre has written to me yesterday https://autobuilder.yoctoproject.org/typhoon/#/builders/117/builds/3349/steps/12/logs/stdio | 22:31 |
dvergatal | JaMa: your talking about ACLs? | 22:31 |
dvergatal | JaMa: sorry, my bad, it should be written "you're" :P | 22:33 |
JaMa | dvergatal: I meant this issue https://lists.openembedded.org/g/openembedded-core/message/185546 | 22:34 |
JaMa | I was assuming you were talking about this and that it should be reproducible with glibc-2.38 on host even without your ACL patchset | 22:35 |
dvergatal | v10 is wrong | 22:39 |
dvergatal | there is already v12 | 22:39 |
dvergatal | btw. I haven't seen that message from khem on my email before, which is odd, thx JaMa | 22:40 |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has quit IRC (Ping timeout: 248 seconds) | 23:09 | |
*** warthog9 <warthog9!warthog9@proxy.monkeyblade.net> has joined #yocto | 23:09 | |
*** rsalveti <rsalveti!uid117878@id-117878.uxbridge.irccloud.com> has quit IRC (Quit: Connection closed for inactivity) | 23:13 | |
*** florian <florian!~florian@dynamic-093-133-186-182.93.133.pool.telefonica.de> has quit IRC (Ping timeout: 245 seconds) | 23:25 | |
*** prabhakar <prabhakar!~prabhakar@pc.renesas.eu> has joined #yocto | 23:37 | |
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has joined #yocto | 23:37 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!