Thursday, 2017-08-31

*** seebs <seebs!~seebs@24.196.59.174> has quit IRC00:08
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto00:11
*** Snert <Snert!~snert_@65.74.8.146> has quit IRC00:16
-YoctoAutoBuilder- build #927 of nightly-world-lsb is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world-lsb/builds/92700:24
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto01:12
*** berndhs <berndhs!~berndhs@xplr-104-249-227-92.xplornet.com> has quit IRC01:23
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto01:32
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC01:36
*** khem <khem!~khem@unaffiliated/khem> has quit IRC01:46
*** xthunderheartx <xthunderheartx!~x_xthunde@vpn.noregon.com> has quit IRC01:47
*** xthunderheartx <xthunderheartx!~x_xthunde@216-136-13-242.static.twtelecom.net> has joined #yocto01:47
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto01:57
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto01:59
*** catch22_ <catch22_!~catch22__@101.165.196.11> has joined #yocto02:04
*** catch22__ <catch22__!~catch22__@101.165.196.11> has quit IRC02:06
*** bananadev <bananadev!~bananadev@117.6.99.240> has joined #yocto02:30
*** seebs <seebs!~seebs@24.196.59.174> has quit IRC02:32
tcpdumpWoot woot just 172 mph02:33
tcpdumpSorry, wrong Channel02:33
*** scottrif <scottrif!~scottrif@47.39.44.219> has quit IRC02:39
*** catch22__ <catch22__!~catch22__@101.165.196.11> has joined #yocto02:49
*** seebs <seebs!~seebs@24.196.59.174> has joined #yocto02:50
*** catch22_ <catch22_!~catch22__@101.165.196.11> has quit IRC02:51
*** gtristan <gtristan!~tristanva@mtlxpqak-1176248019.sdsl.bell.ca> has quit IRC03:04
*** catch22_ <catch22_!~catch22__@101.165.196.11> has joined #yocto03:06
*** catch22__ <catch22__!~catch22__@101.165.196.11> has quit IRC03:08
*** jmcruzal1 <jmcruzal1!jmcruzal@nat/intel/x-usaffcxjmwibxmmg> has quit IRC03:08
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto03:24
*** hamis <hamis!~irfan@207.242.53.83> has joined #yocto03:46
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-japzsaqatwbgczot> has quit IRC04:37
*** catch22__ <catch22__!~catch22__@101.165.196.11> has joined #yocto04:46
*** catch22_ <catch22_!~catch22__@101.165.196.11> has quit IRC04:47
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has joined #yocto04:54
*** spooky_d <spooky_d!~spooky@79.116.253.201> has joined #yocto04:54
spooky_dHi guys.04:54
spooky_dI'm trying to build my own bitbake build - I don't want a full OS, but some libraries to be automatically built.04:55
spooky_dAnd I cannot convince bitbake to build more than one packet at a time.04:55
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto05:00
bluelightningspooky_d: more than one package or more than one recipe?05:02
*** spooky_cbs <spooky_cbs!~spooky@79.116.253.201> has joined #yocto05:04
spooky_cbsrecipe actually.05:04
spooky_cbsSorry, I've been disconnected.05:05
spooky_cbsI think that I have to put do_x[nostamp] in the base, I'm trying it now.05:05
spooky_cbsBut that makes them build all the time.05:06
*** spooky_cbs <spooky_cbs!~spooky@79.116.253.201> has quit IRC05:07
spooky_dso that's not really a good solution.05:08
bluelightningspooky_d: no that's probably not what you want05:08
spooky_dSo I have a simplified model05:08
spooky_dwith two tasks05:08
spooky_dfetch and build05:08
bluelightningspooky_d: do you have some local source tree you're editing and you want to build out of that?05:08
*** khem <khem!~khem@unaffiliated/khem> has quit IRC05:08
spooky_dI want to build a list of libraries to a folder. Let's say I want to have zlib, bzip2 and have a toolchain recipe that depends on these two.05:09
spooky_dI define a base.bbclass where I say:05:10
spooky_daddtask fetch and addtask build after fetch05:10
bluelightningok, with you so far05:11
spooky_dand I have this toolchain.bb which has do_fetch[depends]+= "zlib:do_build" and do_fetch[depends]+= "bzip2:do_build"05:11
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto05:11
spooky_dwhen I try to build toolchain, it tells me it wants to run 6 tasks, but only does the bzip2 fetch+build05:11
spooky_dand says everything's fine, it needs not run anything else.05:12
bluelightningit can only be because those other tasks have already been stamped as having run previously05:12
spooky_dI'm not sure why. Do I have to name them differently for each recipe?05:12
bluelightningno05:13
spooky_dI already cleaned the build folder.05:13
spooky_dSo there's no cache laying around.05:13
bluelightninglet me see if I can replicate that simple setup here05:14
*** bananadev <bananadev!~bananadev@117.6.99.240> has quit IRC05:17
spooky_dSo, I see an issue. With the recipes I made, if I run bitbake zlib it builds it (right after cleanup), but if I run bitbake bzip2 it no longer builds it.05:20
*** bananadev <bananadev!~bananadev@117.6.99.240> has joined #yocto05:20
bluelightningspooky_d: would it be possible for you to upload your current metadata somewhere to save me a bit of time?05:21
spooky_dI'm trying.05:21
*** msvb-lab <msvb-lab!~michael@x55b545be.dyn.telefonica.de> has joined #yocto05:26
*** redengin <redengin!~redengin@2601:600:987f:e616:6934:e814:99ed:d31f> has quit IRC05:30
*** redengin <redengin!~redengin@2601:600:987f:e616:4447:4a2f:343b:6aa8> has joined #yocto05:32
*** Puru <Puru!~purushoth@223.186.171.39> has joined #yocto05:39
*** pohly <pohly!~pohly@p5DE8E65B.dip0.t-ipconnect.de> has joined #yocto06:06
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto06:07
*** agust <agust!~agust@p4FCB4724.dip0.t-ipconnect.de> has joined #yocto06:09
*** catch22_ <catch22_!~catch22__@101.165.196.11> has joined #yocto06:11
*** hmwel <hmwel!~hmw@zimbra.welvaarts.com> has joined #yocto06:13
*** catch22__ <catch22__!~catch22__@101.165.196.11> has quit IRC06:13
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC06:20
*** jku <jku!~jku@192.198.151.45> has joined #yocto06:23
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto06:24
*** catch22_ <catch22_!~catch22__@101.165.196.11> has quit IRC06:25
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC06:27
*** catch22__ <catch22__!~catch22__@101.165.196.11> has joined #yocto06:29
*** luc4 <luc4!~luca@185.43.148.11> has joined #yocto06:32
*** spooky_d <spooky_d!~spooky@79.116.253.201> has quit IRC06:34
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has quit IRC06:34
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto06:49
*** Puru <Puru!~purushoth@223.186.171.39> has quit IRC06:50
*** fl0v0 <fl0v0!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has joined #yocto06:54
*** fitzsim` <fitzsim`!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto06:58
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC06:59
*** TafThorne <TafThorne!~thomastho@81.128.174.58> has joined #yocto07:02
*** fitzsim` <fitzsim`!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC07:09
*** fitzsim` <fitzsim`!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto07:09
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto07:16
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto07:19
*** ed21 <ed21!~Adium@192.198.151.45> has joined #yocto07:22
*** MiskaX <MiskaX!a7l3kp1bq9@rankki.sonarnerd.net> has quit IRC07:29
*** hnje <hnje!~hnje@static-5-186-55-130.ip.fibianet.dk> has joined #yocto07:33
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has joined #yocto07:34
msvb-labWasn07:36
msvb-labWasn't there some SSL library available that is not one of the top two (OpenSSL or WolfSSL) that was compiled to kilo- or a few megabytes?07:37
msvb-labI thought it was called 'TinySSL' but it seems I'm wrong about that.07:37
msvb-lab...was an Intel hosted project I think.07:37
msvb-labAnyone remember? I'm hoping it still exists.07:37
*** MiskaX <MiskaX!rsyj1xvfww@rankki.sonarnerd.net> has joined #yocto07:40
jkuwolfssl is considered a major tls library? I had no idea07:46
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has quit IRC07:46
*** AndersD <AndersD!~anders@185.55.11.90.c.fiberdirekt.net> has joined #yocto07:47
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has joined #yocto07:47
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto07:48
*** joseppc <joseppc!~josep@c-d524e655.010-118-73746f7.cust.bredbandsbolaget.se> has joined #yocto07:48
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto07:48
*** morphis_ <morphis_!~morphis@pD9ED60F0.dip0.t-ipconnect.de> has quit IRC07:56
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto08:00
-YoctoAutoBuilder- build #1200 of buildtools is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/buildtools/builds/120008:12
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto08:15
-YoctoAutoBuilder- build #556 of nightly-no-x11 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/builds/55608:17
*** ant_home <ant_home!~ant__@host141-230-dynamic.58-82-r.retail.telecomitalia.it> has joined #yocto08:17
eduardas_mhello, does anyone have experience implementing an embedded Linux device as a Bluetooth accessory for Apple iOS products with MFi certification?08:17
*** sjolley1 <sjolley1!~sjolley@134.134.139.83> has quit IRC08:17
*** sameo <sameo!~samuel@192.55.54.39> has joined #yocto08:18
eduardas_mthe problem is I am using the Variscite DART-MX6 BSP and it has Bluez on it and as far as I understand Bluez does not support iAP (iPod Accessory Protocol) and MFi in any way08:19
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto08:20
eduardas_mthe SoM has a TI WiLink 8 WL1837 module on it and as far as I can see it is only able to support iAP and MFi by using the TI BLuetooth Stack and not Bluez08:23
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC08:24
eduardas_mand that is only supported on TI Embedded Linux platforms and not the i.MX6 that I am using08:25
*** mihai <mihai!~mihai@unaffiliated/mihai> has joined #yocto08:25
eduardas_mdoes anyone have experience with TI Bluetooth stack and iOS devices? does it really work as advertised?08:26
*** catch22__ <catch22__!~catch22__@101.165.196.11> has quit IRC08:27
rburtoneduardas_m: i'd contact TI directly instead of asking here08:31
*** sjolley <sjolley!~sjolley@134.134.139.83> has joined #yocto08:37
-YoctoAutoBuilder- build #1182 of build-appliance is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/build-appliance/builds/118208:40
-YoctoAutoBuilder- build #534 of nightly-musl is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-musl/builds/53408:41
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC08:41
-YoctoAutoBuilder- build #928 of nightly-world-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world-lsb/builds/92808:42
*** fl0v01 <fl0v01!~fvo@p4FC0AED7.dip0.t-ipconnect.de> has joined #yocto08:43
*** fl0v0 <fl0v0!~fvo@p4FC0AEA5.dip0.t-ipconnect.de> has quit IRC08:43
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dddaabvtysadnuzj> has joined #yocto08:44
*** morphis <morphis!~morphis@pD9ED60F0.dip0.t-ipconnect.de> has joined #yocto08:47
*** catch22__ <catch22__!~catch22__@101.165.196.11> has joined #yocto08:50
-YoctoAutoBuilder- build #1205 of nightly-world is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/120508:52
*** thaytan_ <thaytan_!~thaytan@121.200.10.166> has joined #yocto08:54
*** thaytan <thaytan!~thaytan@121.200.10.166> has quit IRC08:58
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto09:05
*** g0hl1n <g0hl1n!5be602f4@gateway/web/freenode/ip.91.230.2.244> has quit IRC09:22
*** morphis_ <morphis_!~morphis@pD9ED758A.dip0.t-ipconnect.de> has joined #yocto09:23
*** morphis <morphis!~morphis@pD9ED60F0.dip0.t-ipconnect.de> has quit IRC09:24
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has joined #yocto09:37
*** aV_V <aV_V!~aV_V@146.66.253.137> has joined #yocto09:38
-YoctoAutoBuilder- build #845 of nightly-mips64 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips64/builds/84509:48
*** fray <fray!~fray@kernel.crashing.org> has quit IRC09:54
-YoctoAutoBuilder- build #1226 of nightly-x86 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/122609:55
*** fray <fray!~fray@kernel.crashing.org> has joined #yocto09:57
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC09:59
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC10:00
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto10:00
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC10:02
*** toscalix <toscalix!~toscalix@90.174.2.45> has joined #yocto10:03
*** morphis_ <morphis_!~morphis@pD9ED758A.dip0.t-ipconnect.de> has quit IRC10:04
*** toscalix_ <toscalix_!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto10:04
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has joined #yocto10:06
-YoctoAutoBuilder- build #1199 of nightly-qa-extras is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-extras/builds/119910:06
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC10:07
*** toscalix <toscalix!~toscalix@90.174.2.45> has quit IRC10:08
*** aV_V <aV_V!~aV_V@146.66.253.137> has quit IRC10:10
-YoctoAutoBuilder- build #1206 of nightly-mips is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/120610:13
-YoctoAutoBuilder- build #1219 of nightly-ppc is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/121910:15
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has quit IRC10:23
-YoctoAutoBuilder- build #1267 of nightly-x86-64 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/126710:24
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has joined #yocto10:25
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has quit IRC10:47
*** toscalix_ is now known as toscalix10:49
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has joined #yocto10:50
*** mnsgs <mnsgs!4fab95ac@gateway/web/freenode/ip.79.171.149.172> has joined #yocto10:57
*** ant_home <ant_home!~ant__@host141-230-dynamic.58-82-r.retail.telecomitalia.it> has quit IRC10:58
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto11:10
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto11:10
*** ant_home <ant_home!~ant__@host141-230-dynamic.58-82-r.retail.telecomitalia.it> has joined #yocto11:13
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto11:13
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC11:18
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto11:18
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC11:18
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto11:19
*** ant_home <ant_home!~ant__@host141-230-dynamic.58-82-r.retail.telecomitalia.it> has quit IRC11:19
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC11:20
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC11:20
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has joined #yocto11:20
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has joined #yocto11:21
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has joined #yocto11:23
*** florian_kc is now known as florian11:30
*** mnsgs <mnsgs!4fab95ac@gateway/web/freenode/ip.79.171.149.172> has quit IRC11:33
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-vsuefiokczrcgkgv> has joined #yocto11:33
-YoctoAutoBuilder- build #1234 of nightly-arm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/123411:35
*** bananadev <bananadev!~bananadev@117.6.99.240> has quit IRC11:39
*** Willy-- <Willy--!188a097e@gateway/web/freenode/ip.24.138.9.126> has joined #yocto11:42
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has quit IRC11:50
-YoctoAutoBuilder- build #828 of nightly-arm64 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/82811:56
-YoctoAutoBuilder- build #1313 of nightly is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/131311:58
*** grumble <grumble!~grumble@freenode/staff/grumble> has quit IRC11:59
*** rumble <rumble!~grumble@freenode/staff/grumble> has joined #yocto11:59
*** rumble is now known as grumble11:59
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has joined #yocto12:03
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC12:06
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto12:08
*** PinkSnake <PinkSnake!51ff1123@gateway/web/freenode/ip.81.255.17.35> has joined #yocto12:19
PinkSnakehi all, after adding open-cv as depedencie in custom recipe i'm not able to build my SDK anymore > util-linux-cferror: opencv-3.1+git0+92387b1ef8-r0 conflicts with opencv-staticdev12:19
PinkSnakeany suggestion ? :)12:19
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC12:20
jkuPinkSnake: what's that about "util-linux-cf"? a typo? Also I assume the error message has a little more details?12:28
PinkSnake@jku it's an error durring the sdk build i will copy paste12:29
jkuuse a pastebin if there's lots of context12:29
PinkSnakeyep12:30
*** Shurelous <Shurelous!~igor@187.108.42.203> has joined #yocto12:30
PinkSnake@jku https://pastebin.com/YWVaz6ki12:35
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC12:40
*** kimtinh <kimtinh!~kimtinh@2405:4800:1096:c0f7:bc60:c762:fcf:b344> has joined #yocto12:40
JEEB&2812:42
otaviozeddii: I sent what we've been using to you; it does work nice here12:45
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC12:49
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto12:50
jkuPinkSnake: can't see 100% what the issue is but I have a hunch... early on there's a warning about "no package provides opencv-staticdev"12:55
jkuthe opencv recipe (the old one you use) is adding a runtime dependency on "opencv-staticdev" to "opencv", and the former probably ends up empty12:57
PinkSnake@jku it's the only error message, i have added "EXTRA_PACKAGE = "opencv-staticdev"12:57
PinkSnake@jky in your opinion what's the most proper way to fix that ?12:59
jkuPinkSnake: you could check the opencv WORKDIR to see if the staticdev package really is empty... or maybe just try this https://pastebin.com/1L4NMUcx13:01
*** Mubarak <Mubarak!d490dc92@gateway/web/cgi-irc/kiwiirc.com/ip.212.144.220.146> has joined #yocto13:02
jkuthat's a small change for the opencv recipe, it's already in current versions of the recipe13:03
*** Mubarak <Mubarak!d490dc92@gateway/web/cgi-irc/kiwiirc.com/ip.212.144.220.146> has quit IRC13:04
PinkSnake@jku thx i will test :)13:06
*** joseppc <joseppc!~josep@linaro/joseppc> has joined #yocto13:08
*** neverpan1c is now known as neverpanic13:08
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto13:11
*** peacememories <peacememories!~textual@84-114-121-230.cable.dynamic.surfer.at> has quit IRC13:14
*** stephano <stephano!~stephano@134.134.139.75> has joined #yocto13:15
*** thaytan_ is now known as thaytan13:21
PinkSnake@jku thx a lot everything is good :)13:26
jkuhappy to help13:28
*** AndersD <AndersD!~anders@185.55.11.90.c.fiberdirekt.net> has quit IRC13:33
*** jku <jku!~jku@192.198.151.45> has quit IRC13:35
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC13:37
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC13:45
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has quit IRC13:51
*** toscalix_ <toscalix_!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has joined #yocto13:51
*** toscalix <toscalix!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC13:51
*** lamego <lamego!~jose@134.134.139.82> has joined #yocto13:52
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has joined #yocto13:55
*** Bunio_FH <Bunio_FH!~bunio@89-79-16-212.dynamic.chello.pl> has quit IRC13:59
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has quit IRC13:59
tcpdumpIMAGE_INSTALL_append = " python3"   -  Is there a directive to force bitbake to exclude python3?14:01
tcpdumpIf I need a python2 exclusive build?14:01
rburtonif you're using a modern release then good luck with that.14:03
tcpdumphaha  - great14:03
rburtonfor older releases you won't get py3 unless you ask for it14:03
rburtonwe're actively dropping py214:03
tcpdumpYea, im running into weird py3 issues that i cant seem to fix..  py2 seems to work fine, but it seems that my app still keeps snagging py314:04
*** sr105 <sr105!~sr105@72-187-19-10.res.bhn.net> has quit IRC14:08
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has joined #yocto14:14
aehs29tcpdump: you shouldnt have a problem by having both py2 and py3, their libraries are located at different places, so they shouldnt cause issues with one another'14:15
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC14:17
tcpdumphttps://www.irccloud.com/pastebin/7XE4BDDL/14:17
tcpdumpThis is the funk Im getting now.14:18
tcpdumpGuess  I add  python-setuptools14:19
kanavintcpdump: you should just go with python3, it's a good investment of time14:19
kanavinpython 2 is going away, so you need to do it sooner or later, and better sooner14:20
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has left #yocto14:29
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto14:31
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC14:32
*** yates <yates!~user@rrcs-96-10-234-158.midsouth.biz.rr.com> has quit IRC14:46
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has joined #yocto14:48
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has quit IRC14:51
*** sr105 <sr105!~sr105@72-187-19-10.res.bhn.net> has joined #yocto14:52
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has joined #yocto14:52
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto14:52
*** sbtkd85 <sbtkd85!~sbtkd85@ps3mwgproxy08-dmz.us.dell.com> has quit IRC14:54
*** sbtkd85 <sbtkd85!~sbtkd85@ps3mwgproxy08-dmz.us.dell.com> has joined #yocto14:54
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC14:57
*** scottrif <scottrif!~scottrif@47.39.44.219> has joined #yocto15:05
*** grma <grma!~gruberm@80.93.38.128> has quit IRC15:07
*** ed21 <ed21!~Adium@192.198.151.45> has quit IRC15:08
*** fl0v01 <fl0v01!~fvo@p4FC0AED7.dip0.t-ipconnect.de> has quit IRC15:18
*** gtristan <gtristan!~tristanva@modemcable172.18-161-184.mc.videotron.ca> has joined #yocto15:21
*** hmwel <hmwel!~hmw@zimbra.welvaarts.com> has quit IRC15:23
*** mihai <mihai!~mihai@unaffiliated/mihai> has quit IRC15:27
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has quit IRC15:42
tcpdumpAlright - I hope my questions aren't too dumb...   I've been struggling with getting a handful of dependent python modules to correctly install to my image.   I suppose I have a few questions:   1. Is there a good pre-made python recipe that anyone knows of that installs a lot of necessary depends .  2. Would anyone be willing to review one of my recipes that fail to install and see if there's something glaringly15:44
tcpdumpobvious?15:44
rburtontcpdump: install python-modules or python3-modules to get the whole standard library15:44
rburtonif you dont want to play chase the depends just add one of those to RDEPENDS15:45
tcpdumpI have a recipe named python-flask-httpauth_3.2.3.bb that contains:15:45
tcpdumphttps://www.irccloud.com/pastebin/ipUQ6P7k/15:45
rburtonthat depends line is wrong, either its build-time (no _PN) or runtime (RDEPENDS_${PN})15:46
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC15:49
*** vdehors_arc <vdehors_arc!~vincent@37.169.80.207> has joined #yocto15:55
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.83> has quit IRC15:56
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has joined #yocto15:59
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has quit IRC16:02
*** vdehors_arc <vdehors_arc!~vincent@37.169.80.207> has quit IRC16:02
*** vdehors_arc <vdehors_arc!~vincent@37.169.80.207> has joined #yocto16:08
*** an146_ <an146_!~anton@89.207.88.249> has quit IRC16:08
*** luc4 <luc4!~luca@185.43.148.11> has quit IRC16:09
*** Snert__ <Snert__!~snert_@65.74.8.146> has joined #yocto16:11
*** vdehors_arc <vdehors_arc!~vincent@37.169.80.207> has quit IRC16:14
*** fl0v0 <fl0v0!~fvo@p4FC0AED7.dip0.t-ipconnect.de> has joined #yocto16:16
*** fl0v0 <fl0v0!~fvo@p4FC0AED7.dip0.t-ipconnect.de> has quit IRC16:22
*** stephano <stephano!~stephano@134.134.139.75> has quit IRC16:22
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC16:24
*** tach is now known as jcstach16:24
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has joined #yocto16:29
*** martinkelly1 <martinkelly1!~martin@67.171.33.217> has joined #yocto16:33
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has joined #yocto16:35
*** vdehors_arc <vdehors_arc!~vincent@LMontsouris-657-1-239-42.w82-127.abo.wanadoo.fr> has quit IRC16:37
*** xthunderheartx <xthunderheartx!~x_xthunde@216-136-13-242.static.twtelecom.net> has quit IRC16:43
*** Zazza__ <Zazza__!~Zazza@2601:444:8100:9900:c044:8b7d:8c01:42be> has quit IRC16:44
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto16:47
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has quit IRC16:55
*** sjolley <sjolley!~sjolley@134.134.139.83> has quit IRC16:55
kergothWIP: https://github.com/openembedded/bitbake/compare/master...kergoth:gitsm-rework16:57
kergothneed to write a pile of unit tests yet16:57
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto16:59
tcpdumphttps://www.irccloud.com/pastebin/l5QExqpy/17:00
tcpdumpIm now doing a bitbake -c fetch python-flask-httpauth to test my recipe.17:00
tcpdumpIm getting an error stating Missing SRC_URI checksum, but  I have them for the git repo.17:01
*** dreyna_ <dreyna_!~dreyna@4.15.102.76> has joined #yocto17:01
*** stephano <stephano!stephano@nat/intel/x-cmtefisanesggzpt> has joined #yocto17:01
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC17:01
tcpdumpIt seems to be referencing a different source?   Is there a way to make it ignore checksums?17:02
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC17:03
*** sjolley <sjolley!sjolley@nat/intel/x-cfdondygsbmqrwvm> has joined #yocto17:08
*** dreyna_ <dreyna_!~dreyna@4.15.102.76> has quit IRC17:08
*** dreyna <dreyna!~dreyna@4.15.102.76> has joined #yocto17:08
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto17:08
kergothtcpdump: i don't understand theq uestion, it tells you exactly what url it needs a checksum for17:12
*** CTtpollard <CTtpollard!~CTtpollar@167.98.27.226> has quit IRC17:22
*** ionte <ionte!~ionte@c-31-209-59-170.cust.bredband2.com> has quit IRC17:26
*** ionte <ionte!~ionte@c-31-209-59-170.cust.bredband2.com> has joined #yocto17:28
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has quit IRC17:31
*** dreyna <dreyna!~dreyna@4.15.102.76> has quit IRC17:33
*** toscalix_ <toscalix_!~toscalix@68.red-83-42-135.dynamicip.rima-tde.net> has quit IRC17:34
*** sjolley <sjolley!sjolley@nat/intel/x-cfdondygsbmqrwvm> has quit IRC17:35
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has quit IRC17:36
*** garbados <garbados!~garbados@2601:1c2:303:6b0:71b5:be36:b80b:450a> has joined #yocto17:37
*** sameo <sameo!~samuel@192.55.54.39> has quit IRC17:38
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC17:38
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto17:38
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has joined #yocto17:41
*** sjolley <sjolley!sjolley@nat/intel/x-edivoyxhpcjcufmn> has joined #yocto17:41
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has quit IRC17:50
lsandovkergoth: and the log provides the checksums17:50
*** martinkelly <martinkelly!~martin@65-122-179-226.dia.static.qwest.net> has quit IRC17:57
*** alimon <alimon!~alimon@134.134.139.76> has quit IRC18:01
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has joined #yocto18:01
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has quit IRC18:04
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has joined #yocto18:04
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto18:20
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC18:20
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC18:20
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-dddaabvtysadnuzj> has quit IRC18:21
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has quit IRC18:24
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.76> has quit IRC18:26
*** morphis <morphis!~morphis@pD9ED758A.dip0.t-ipconnect.de> has quit IRC18:32
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has joined #yocto18:33
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has joined #yocto18:35
*** tlwoerner <tlwoerner!~Trevor@206.248.190.95> has joined #yocto18:37
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has joined #yocto18:37
*** garbados <garbados!~garbados@2601:1c2:303:6b0:71b5:be36:b80b:450a> has quit IRC18:38
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has quit IRC18:41
*** joseppc <joseppc!~josep@linaro/joseppc> has quit IRC18:45
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC18:52
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has joined #yocto18:54
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC19:00
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.73> has joined #yocto19:03
*** fitzsim`` <fitzsim``!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto19:07
*** fitzsim` <fitzsim`!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC19:11
*** Flow86 <Flow86!sbnc@www.siedler25.org> has quit IRC19:20
*** Flow86 <Flow86!sbnc@www.siedler25.org> has joined #yocto19:22
*** sjolley <sjolley!sjolley@nat/intel/x-edivoyxhpcjcufmn> has quit IRC19:26
*** Martian <Martian!~martian@84.40.91.35> has joined #yocto19:26
*** thaytan_ <thaytan_!~thaytan@121.200.10.166> has joined #yocto19:30
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has joined #yocto19:31
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto19:32
*** thaytan <thaytan!~thaytan@121.200.10.166> has quit IRC19:34
*** vmeson <vmeson!~rmacleod@192-0-133-4.cpe.teksavvy.com> has joined #yocto19:35
*** PinkSnake <PinkSnake!51ff1123@gateway/web/freenode/ip.81.255.17.35> has quit IRC19:37
*** curlybracket <curlybracket!~textual@ip-62-245-69-227.net.upcbroadband.cz> has quit IRC19:37
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC19:41
Willy--I have a build for my orange-pi-zero on an SD card that isn't working. The boot.scr has some weird code (ASCII crap when viewed with vim) before the normal text. This shouldn't be there should it? It should just view as all normal text19:47
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has joined #yocto19:51
*** tgraydon1 <tgraydon1!tgraydon@nat/intel/x-afdllnkyvydocvgd> has joined #yocto19:58
*** sjolley <sjolley!~sjolley@134.134.139.73> has joined #yocto20:02
*** bluelightning <bluelightning!~paul@118.148.117.166> has joined #yocto20:02
*** bluelightning <bluelightning!~paul@118.148.117.166> has quit IRC20:02
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:02
otaviozeddii: thx for the fixes20:06
*** jmcruzal <jmcruzal!~jmcruzal@134.134.139.73> has quit IRC20:07
*** mtahmed <mtahmed!b8178782@gateway/web/freenode/ip.184.23.135.130> has quit IRC20:07
*** pohly <pohly!~pohly@p5DE8E65B.dip0.t-ipconnect.de> has quit IRC20:11
*** jmcruzal <jmcruzal!jmcruzal@nat/intel/x-ajaroasoegmfycoe> has joined #yocto20:18
*** Martian <Martian!~martian@84.40.91.35> has quit IRC20:22
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC20:26
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto20:26
*** xthunderheartx <xthunderheartx!~x_xthunde@184.75.233.58> has joined #yocto20:44
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC20:48
*** sameo <sameo!samuel@nat/intel/x-rxawpbsaxmilwfvc> has joined #yocto20:48
*** xthunderheartx <xthunderheartx!~x_xthunde@184.75.233.58> has quit IRC20:49
*** sjolley <sjolley!~sjolley@134.134.139.73> has quit IRC20:54
*** lukma <lukma!~Thunderbi@89-77-92-62.dynamic.chello.pl> has quit IRC20:55
*** lukma <lukma!~Thunderbi@89-77-92-62.dynamic.chello.pl> has joined #yocto20:56
*** sameo <sameo!samuel@nat/intel/x-rxawpbsaxmilwfvc> has quit IRC21:10
*** klynn <klynn!~klynn@47.39.44.219> has joined #yocto21:29
*** berndhs <berndhs!~berndhs@xplr-104-249-227-92.xplornet.com> has joined #yocto21:29
*** jku <jku!~jku@178-75-131-14.bb.dnainternet.fi> has quit IRC21:31
*** xthunderheartx <xthunderheartx!~x_xthunde@184.75.233.58> has joined #yocto21:38
*** msvb-lab <msvb-lab!~michael@x55b545be.dyn.telefonica.de> has quit IRC21:41
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC21:48
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC21:51
*** dv_ <dv_!~quassel@62.178.118.86> has quit IRC21:56
*** dv__ <dv__!~quassel@62.178.118.86> has joined #yocto21:57
*** sjolley <sjolley!~sjolley@134.134.139.73> has joined #yocto22:01
*** sameo <sameo!~samuel@192.55.55.41> has joined #yocto22:03
*** stephano <stephano!stephano@nat/intel/x-cmtefisanesggzpt> has quit IRC22:05
*** lamego <lamego!~jose@134.134.139.82> has quit IRC22:06
*** Shurelous <Shurelous!~igor@187.108.42.203> has quit IRC22:07
tcpdumpHello everyone22:15
*** jmcruzal <jmcruzal!jmcruzal@nat/intel/x-ajaroasoegmfycoe> has quit IRC22:22
*** hnje <hnje!~hnje@static-5-186-55-130.ip.fibianet.dk> has quit IRC22:22
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC22:29
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto22:30
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC22:34
*** ant_home <ant_home!~ant__@host25-184-dynamic.8-87-r.retail.telecomitalia.it> has quit IRC22:44
*** sjolley <sjolley!~sjolley@134.134.139.73> has quit IRC22:48
*** sjolley <sjolley!~sjolley@134.134.139.72> has joined #yocto22:50
-YoctoAutoBuilder- build #1314 of nightly is complete: Failure [failed] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/131422:50
*** clsulliv <clsulliv!clsulliv@nat/intel/x-qncezxrwnavepxqc> has quit IRC22:56
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto23:01
*** alimon <alimon!~alimon@148.240.201.158> has joined #yocto23:02
*** vquicksilver <vquicksilver!~nobody@gentoo/contributor/vquicksilver> has quit IRC23:08
*** clsulliv <clsulliv!~clsulliv@134.134.139.72> has joined #yocto23:10
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC23:13
*** stephano <stephano!~stephano@134.134.139.78> has joined #yocto23:22
*** agust <agust!~agust@p4FCB4724.dip0.t-ipconnect.de> has quit IRC23:28
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC23:31
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto23:32
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC23:37
*** tripzero <tripzero!~tripzero@134.134.139.77> has quit IRC23:44
*** tripzero <tripzero!~tripzero@134.134.139.77> has joined #yocto23:51
*** paulg <paulg!~paulg@198-84-204-211.cpe.teksavvy.com> has quit IRC23:54
*** yahiafarghaly <yahiafarghaly!9cdf12c4@gateway/web/freenode/ip.156.223.18.196> has joined #yocto23:54
yahiafarghalycan i execute a bash script inside do_configure() ? , the script will output a file which i will use mv command to move it to a certain location in the image23:56
*** klynn <klynn!~klynn@47.39.44.219> has left #yocto23:59

Generated by irclog2html.py 2.11.0 by Marius Gedminas - find it at mg.pov.lt!