Tuesday, 2016-01-12

Raj_i have not seen this before g++: error: unrecognized command line option ‘-mthumb00:00
Raj_i have following flags in makefile CFLAGS = -W -O0 -g -std=c++11 -pthread -mthumb  -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -ffast-math00:02
*** pumpernickel_ <pumpernickel_!~pumpernic@41333086.cst.lightpath.net> has joined #yocto00:02
pumpernickel_so...00:03
pumpernickel_I was wondering...00:03
pumpernickel_If I make a package that contains a static library, is there any way for me to get bitbake to add the -L to the built library?00:03
pumpernickel_I assume there must be, but I've been having trouble identifying how.00:04
pumpernickel_To formulate the question better:00:04
wyrmRaj_: Try dropping -mthumb and see how that works for you.00:06
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC00:08
Raj_it still fails for others g++: error: unrecognized command line option ‘-mfpu=neon’ g++: error: unrecognized command line option ‘-mvectorize-with-neon-quad’ g++:00:09
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto00:09
wyrmOh, hey. Are you compiling on your IMX6 board, or cross-compiling for that board?00:10
Raj_cross compiling on UBUNTU00:10
*** glfernando <glfernando!~fernando@134.134.139.77> has quit IRC00:11
wyrmYou need to call your tools with the appropriate prefix. arm-linux-gcc, arm-linux-g++, etc00:11
wyrmor possibly arm-linux-somethingabisomething-*00:12
Raj_let me try that00:13
Raj_thanks00:13
wyrmOnce you find the right one, you can use...00:14
wyrmexport CROSS_COMPILE=arm-linux-whatever-00:14
wyrmand that'll set the prefix for you.00:14
pumpernickel_I build libA.a, and I want libB.so to link it into it. What is the proper way to pass the linker path to libA.a?00:15
Raj_@wyrm, Thanks a lot00:15
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-jgepyobqhfcxulla> has quit IRC00:16
wyrmpumpernickel_: ld -o <output_file> <object_file>.o -L<path_to_library> -l<name_of_library>00:19
wyrmNote that the library file itself must be named lib<name_of_library>.a, but the argument to ld is just <name_of_library> without the lib- prefix or .a suffix.00:21
pumpernickel_wyrm: Thanks for your help in advance. I understand the syntax of how to link the library.00:21
pumpernickel_The problem is getting that pesky -L argument into my makefile.00:21
pumpernickel_I'm not sure the proper path to use, since the static library isn't put onto the target.00:21
pumpernickel_Actually, I take that back, it *does* put the libA.a onto the target.00:22
pumpernickel_The problem I'm having is that it still doesn't find it.00:22
pumpernickel_I had thought that --sysroot to the compiler would have made /usr/lib a search path for static libraries as well, but it doesn't seem to be the case.00:23
wyrmIs there a priority conflict? I mean, is the compiler finding another library of the same name first?00:23
wyrmOr, linker, rather.00:23
pumpernickel_Sorry, double-checking that I'm not accidentally putting the full-name in my Makefile.00:24
pumpernickel_For ease of use to the other developers here, I had to write Makefile infrastructure to make it appear more like Android.mk (make of that what you will.)00:25
*** glfernando <glfernando!~fernando@134.134.139.77> has joined #yocto00:25
pumpernickel_So it's a bit abstract.00:25
*** sameo <sameo!~samuel@192.55.54.42> has quit IRC00:28
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC00:29
*** Raj_ <Raj_!3f526eb2@gateway/web/freenode/ip.63.82.110.178> has quit IRC00:31
pumpernickel_Hmm, perhaps my misunderstanding comes from the gnu toolchain.00:32
pumpernickel_In the past, I've been able to link static libraries without specifying the trimmed down name.00:32
pumpernickel_Though I admit, I'm using g++ to do the link step.00:32
pumpernickel_something akin to00:33
pumpernickel_g++ libA.a  b.o  -o libB.so00:34
pumpernickel_Although, I suppose this is more accurate: g++ b.o libA.a -o libB.so00:40
pumpernickel_Since in that scenario, the implication is that b.o depends on libA.a00:41
pumpernickel_wyrm: Sure enough, you were correct! Thanks again for your help.00:43
pumpernickel_I suppose if I don't pass it as -lLibName, it doesn't search the same paths, and must just assume that it's in the local directory.00:44
pumpernickel_Stupid mistake on my part.00:44
*** pumpernickel_ <pumpernickel_!~pumpernic@41333086.cst.lightpath.net> has quit IRC00:49
*** ekil <ekil!~magnus@m176-71-136-193.cust.tele2.se> has quit IRC00:56
*** sjolley <sjolley!sjolley@nat/intel/x-kdxyddltaausrnop> has joined #yocto01:01
*** Mylene <Mylene!~Mylene@204.ip-51-254-215.eu> has quit IRC01:14
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto01:14
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC01:14
*** Mylene_ <Mylene_!~Mylene@204.ip-51-254-215.eu> has joined #yocto01:23
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto01:23
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC01:26
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a1:1423:8742:d05e:e4ab> has joined #yocto01:31
*** jjmb1 <jjmb1!~jjmb@2601:46:c602:c4a0:2d8b:1465:e5ec:eebe> has joined #yocto01:31
*** jjmb2 <jjmb2!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has joined #yocto01:32
*** jjmb3 <jjmb3!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has joined #yocto01:33
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a1:1423:8742:d05e:e4ab> has quit IRC01:35
*** jjmb1 <jjmb1!~jjmb@2601:46:c602:c4a0:2d8b:1465:e5ec:eebe> has quit IRC01:35
*** jjmb2 <jjmb2!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has quit IRC01:37
*** Mylene_ <Mylene_!~Mylene@204.ip-51-254-215.eu> has quit IRC01:42
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC01:43
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto02:08
*** aehs29 <aehs29!aehernan@nat/intel/x-rxeakbhhhtmpxwrp> has joined #yocto02:34
*** armpit <armpit!~akuster@64.2.3.194> has quit IRC02:52
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto02:58
nerdboywyrm: are you talking server or client problem?03:01
*** blueness_ <blueness_!~blueness@gentoo/developer/blueness> has quit IRC03:11
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC03:12
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC03:14
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has quit IRC03:23
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto03:49
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC03:55
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto03:56
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto03:56
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has joined #yocto04:05
*** jjmb3 <jjmb3!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has quit IRC04:07
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC04:12
*** Klox <Klox!~Jacob@c-24-15-54-56.hsd1.il.comcast.net> has joined #yocto05:01
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has joined #yocto05:21
*** armpit <armpit!~akuster@2601:202:4000:1239:9ca2:2131:a4c0:cdbd> has joined #yocto05:38
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has quit IRC05:47
*** blueness_ <blueness_!~blueness@74.77.145.97> has joined #yocto05:52
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has joined #yocto05:56
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has joined #yocto06:01
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto06:01
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@host229-33-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC06:16
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has quit IRC06:24
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto06:25
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto06:25
*** blueness_ <blueness_!~blueness@74.77.145.97> has quit IRC06:27
*** aehs29 <aehs29!aehernan@nat/intel/x-rxeakbhhhtmpxwrp> has left #yocto06:29
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto06:31
*** morphis <morphis!~morphis@pD9ED7667.dip0.t-ipconnect.de> has joined #yocto06:43
*** pohly <pohly!~pohly@p5DE8F0DE.dip0.t-ipconnect.de> has joined #yocto06:45
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has joined #yocto06:50
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-xkdpkozmdxufgqnj> has quit IRC06:51
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has quit IRC07:14
*** frsc <frsc!~frsc@80.149.173.67> has joined #yocto07:15
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto07:16
*** _stephan <_stephan!~stephan@p4FE04CA9.dip0.t-ipconnect.de> has joined #yocto07:20
*** Mylene <Mylene!~Mylene@204.ip-51-254-215.eu> has joined #yocto07:23
*** weston <weston!79f4c042@gateway/web/freenode/ip.121.244.192.66> has joined #yocto07:31
westonI am trying to follow the latest document for AGL on Porter board. I could set up till bitbake step. But during bitbake, I am hitting this error. http://pastebin.com/uYaedsJZ07:31
westonAlso, please see my local.conf file. http://pastebin.com/TD96mjpW07:31
westonAny help please07:31
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC07:33
westonHere is my bb file http://pastebin.com/J5hbLZdE07:36
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto07:40
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto07:48
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-dlpdpxaimjkimgrm> has joined #yocto07:49
*** TobSnyder1 <TobSnyder1!~schneider@146.52.80.242> has joined #yocto07:53
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC07:53
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-dlpdpxaimjkimgrm> has left #yocto07:53
*** rob_w <rob_w!~bob@93.104.205.194> has joined #yocto07:54
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto07:54
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-xkkamixmhucrqfrx> has joined #yocto07:59
*** Guest44141 is now known as Jackie_huang08:00
*** sjolley <sjolley!sjolley@nat/intel/x-kdxyddltaausrnop> has quit IRC08:02
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto08:03
*** fl0v0 <fl0v0!~fvo@p5DDC6BEA.dip0.t-ipconnect.de> has joined #yocto08:07
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC08:07
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC08:11
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC08:11
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto08:12
*** Jackie is now known as Guest6996008:12
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has joined #yocto08:16
*** townxelliot <townxelliot!~ell@176.251.36.101> has joined #yocto08:19
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto08:20
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto08:25
*** _TuTizz <_TuTizz!~TuTizz@46.18.96.158> has joined #yocto08:25
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC08:26
westonhello08:27
westonany inputs would be helpful08:27
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto08:29
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has quit IRC08:30
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC08:30
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto08:31
*** edbart <edbart!ebartosh@nat/intel/x-vttxxddojnmctdrt> has joined #yocto08:31
westonERROR: Required build target 'agl-demo-platform' has no buildable providers. Missing or unbuildable dependency chain was: ['agl-demo-platform', '#']08:32
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto08:37
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto08:37
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC08:38
*** noraply <noraply!~nora@sestofw01.enea.se> has left #yocto08:39
*** toscalix <toscalix!~agustinbe@149.100.1.50> has joined #yocto08:39
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has joined #yocto08:41
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto08:42
*** melonipoika <melonipoika!~jose@194.9.252.237> has quit IRC08:43
*** captaini- <captaini-!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has joined #yocto08:44
*** roccof <roccof!~roccof@93.51.177.218> has joined #yocto08:53
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto08:55
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC08:56
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC08:57
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has joined #yocto08:57
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto08:57
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto09:00
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has quit IRC09:00
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has joined #yocto09:02
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has joined #yocto09:14
*** ajtag <ajtag!~ajtag@81.102.232.125> has quit IRC09:14
*** jbrianceau_away is now known as jbrianceau09:15
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has quit IRC09:18
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has joined #yocto09:18
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has joined #yocto09:22
*** ericbutters <ericbutters!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has quit IRC09:23
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has quit IRC09:24
*** captaini- is now known as captainigloo09:24
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC09:26
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto09:26
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto09:28
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has quit IRC09:34
*** sameo <sameo!samuel@nat/intel/x-wissjpnlphqfksvu> has joined #yocto09:36
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC09:37
*** psadro <psadro!~Thunderbi@216.234.148.134> has joined #yocto09:37
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto09:40
*** edbart <edbart!ebartosh@nat/intel/x-vttxxddojnmctdrt> has quit IRC09:41
*** edbart <edbart!ebartosh@nat/intel/x-evplfsrqqcibnhur> has joined #yocto09:43
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto09:46
*** edbart <edbart!ebartosh@nat/intel/x-evplfsrqqcibnhur> has quit IRC09:47
*** edbart <edbart!ebartosh@nat/intel/x-souvgrzbyylpfebg> has joined #yocto09:48
*** ulf` <ulf`!ulf@nat/intel/x-ozwrnlsucgcualpk> has joined #yocto09:52
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC09:52
*** ylouise <ylouise!~yalouise@134.134.139.77> has joined #yocto09:52
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC09:52
*** ulf`_ <ulf`_!~ulf@134.134.139.74> has quit IRC09:52
*** megha_dey <megha_dey!megha@nat/intel/x-ausgwibefdiuqerm> has quit IRC09:52
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC09:53
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC09:53
*** megha_dey <megha_dey!megha@nat/intel/x-wcznnzahmonhqcvf> has joined #yocto09:53
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto09:54
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-aicewvotgpdhkgmk> has joined #yocto09:55
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto09:55
*** ap0 <ap0!2eedcbbe@gateway/web/freenode/ip.46.237.203.190> has joined #yocto10:01
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC10:02
ap0hello. I am having trouble building yocto because of a github connection refused error. If I try to use the uri given in the receipe on command line (git clone) I get the same error. But the repository does exist with the uri and git clone works if I use https:// instead of git:// at the beginning10:02
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC10:03
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto10:04
fsdunap0 for qt repositories?10:04
_stephanap0 you can use git://......;protocol=https10:04
ap0fsdun: no, it's this one: https://github.com/SolidRun/linux-imx6-3.1410:05
ap0_stephan: thank you. will try that right now.10:06
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto10:06
fsdunah. qt was on gitorious10:06
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto10:06
_stephanhttp://git.yoctoproject.org/cgit.cgi/poky/plain/bitbake/lib/bb/fetch2/git.py <= details can be found here :)10:06
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto10:07
ap0_stephan: thank you a lot! it atleast doesn't stop at do_fetch right away.10:08
*** Biliogadafr1 <Biliogadafr1!~User@nat2-minsk-pool-46-53-195-225.telecom.by> has joined #yocto10:08
_stephanyou're welcome. I was a little confused by it in the beginning, too. it's quite different to git command line usage :)10:08
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC10:09
*** belen <belen!~Adium@192.198.151.43> has joined #yocto10:11
*** fl0v01 <fl0v01!~fvo@p5DDC4C94.dip0.t-ipconnect.de> has joined #yocto10:11
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto10:13
*** psadro <psadro!~Thunderbi@216.234.148.134> has quit IRC10:14
*** fl0v0 <fl0v0!~fvo@p5DDC6BEA.dip0.t-ipconnect.de> has quit IRC10:14
*** townxelliot <townxelliot!~ell@176.251.36.101> has quit IRC10:15
*** psadro <psadro!~Thunderbi@216.234.148.134> has joined #yocto10:15
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-fhxnqngnmjamxjit> has joined #yocto10:15
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-aicewvotgpdhkgmk> has quit IRC10:16
*** tripzero2 <tripzero2!tripzero@nat/intel/x-hznzgtfwwemriunp> has joined #yocto10:18
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC10:19
*** captainigloo <captainigloo!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has quit IRC10:19
*** tripzero_ <tripzero_!~tripzero@134.134.137.73> has quit IRC10:19
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC10:22
*** captainigloo <captainigloo!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has joined #yocto10:22
*** alex_h <alex_h!~alex@p578a6cbb.dip0.t-ipconnect.de> has joined #yocto10:24
*** mckoan|away <mckoan|away!~marco@host56-7-static.30-87-b.business.telecomitalia.it> has joined #yocto10:26
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-fhxnqngnmjamxjit> has left #yocto10:29
*** townxelliot <townxelliot!~ell@94.13.71.131> has joined #yocto10:30
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has joined #yocto10:30
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto10:35
*** nemunaire <nemunaire!~nemunaire@2a01:e35:8bb7:3c60::a> has quit IRC10:41
*** nemunaire_ <nemunaire_!~nemunaire@ra.nemunai.re> has joined #yocto10:42
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto10:42
*** berton <berton!~fabio@177.194.219.54> has joined #yocto10:43
*** nemunaire_ is now known as nemunaire10:45
Ulfalizerwhat's the mechanism that runs generate_index_files(d) to update the package index? i assumed something (e.g., some image bbclass) would depend on package-index.bb, but i can't find it in that case.10:49
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC10:53
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC10:56
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto11:02
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC11:11
otavioIs someone working at wic development here?11:17
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC11:19
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has quit IRC11:19
*** jani <jani!~rasjani@81-175-200-183.bb.dnainternet.fi> has quit IRC11:20
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has joined #yocto11:20
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto11:21
*** jchonig <jchonig!~quassel@firewall.honig.net> has quit IRC11:25
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC11:25
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto11:26
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC11:26
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto11:26
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto11:27
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC11:34
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC11:44
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto11:44
*** edbart1 <edbart1!ebartosh@nat/intel/x-yqiynvrdxpcdyoep> has joined #yocto11:50
*** edbart <edbart!ebartosh@nat/intel/x-souvgrzbyylpfebg> has quit IRC11:50
-YoctoAutoBuilder- build #600 of poky-tiny is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/poky-tiny/builds/60011:53
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto12:02
*** Tenhi_ <Tenhi_!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC12:05
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto12:06
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-jtjfkbfsjgxtqqjh> has joined #yocto12:10
*** blitz00 <blitz00!stefans@nat/intel/x-fwjryrljxicozoxr> has joined #yocto12:11
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto12:11
*** Guest54663 <Guest54663!~vivek@78.32.176.249> has joined #yocto12:11
townxelliotI was wondering whether there is a unique ID on each build (build name?) which could be added to each event originated by that build; is that something that exists or which has been considered?12:14
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC12:18
*** tsramos <tsramos!~tsramos@192.55.54.42> has joined #yocto12:19
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto12:24
lpapphi, if I am modify the kernel source in $WORKDIR/git, why do I get no compilation errors when I intentionally do some syntax error in the code?12:24
lpappI tried bitbake -f -c compile linux-foo12:25
lpappI am just trying to understand why that command comes back with no error when there is some error expected.12:25
Ulfalizerlpapp: sure you're modifying code that's built?12:28
Ulfalizertry the top-level makefile12:29
lpappyeah, I am modifying such code.12:29
Ulfalizercheck if  bitbake -e linux-foo | grep WORKDIR  gives the directory you expect12:31
lpappsince I went to the source using that, the answer is yes :)12:31
lpappsorry for not having made that clear.12:31
Ulfalizerok, dunno then :/12:31
lpappyeah, I had the thought of manually running make in that directory, but I do not think that is feasible for cross-building12:32
lpappthere is probably more heuristics to it.12:32
lpappI am trying to build this for arm.12:32
*** ap0 <ap0!2eedcbbe@gateway/web/freenode/ip.46.237.203.190> has quit IRC12:35
*** pidge <pidge!~pidge@2a02:8084:0:3000:945c:da35:8f83:d8ab> has joined #yocto12:40
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has joined #yocto12:50
Ulfalizeris there some neat way to avoid yocto rebuilding ~everything when changing .py implementation files?12:51
Ulfalizerfor debugging purposes12:52
Ulfalizerpackage_manager.py in this case12:52
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has quit IRC12:52
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has joined #yocto12:55
*** vdehors__ <vdehors__!~vdehors@bob75-2-81-56-46-209.fbx.proxad.net> has joined #yocto12:56
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has quit IRC12:59
*** Guest54663 <Guest54663!~vivek@78.32.176.249> has quit IRC12:59
*** vdehors_ <vdehors_!~vdehors@193.56.60.161> has quit IRC12:59
*** seebs_ <seebs_!~seebs@home.seebs.net> has joined #yocto13:11
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC13:11
*** tsramos_ <tsramos_!tsramos@nat/intel/x-gzywasbbgvjxnsxb> has joined #yocto13:13
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has joined #yocto13:14
*** igor3 <igor3!~Igor_Stop@134.134.137.71> has joined #yocto13:14
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto13:14
*** alimon11 <alimon11!~alimon@192.55.54.43> has joined #yocto13:15
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC13:15
*** tsramos <tsramos!~tsramos@192.55.54.42> has quit IRC13:15
*** alimon1 <alimon1!~alimon@192.55.54.43> has quit IRC13:15
*** igor1 <igor1!Igor_Stopp@nat/intel/x-lebwxbnidvrdikhs> has quit IRC13:15
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has quit IRC13:23
darkspikeHi All, I am trying to make an image recipe that installs just one package. We have a multi-partition embedded system.  At the moment I am getting a lot of other packages that i don't need, besides the one that i have. Is there a way to make such an image recipe ?13:23
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has quit IRC13:30
*** lamego <lamego!jose@nat/intel/x-sbeoagjfmecfenxc> has joined #yocto13:43
*** Guest54663 <Guest54663!~vivek@pakora.collabora.co.uk> has joined #yocto13:44
*** belen <belen!~Adium@192.198.151.43> has quit IRC13:49
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has quit IRC13:49
-YoctoAutoBuilder- build #582 of buildtools is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/buildtools/builds/58213:50
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC13:56
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto13:56
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto13:59
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has quit IRC13:59
*** dotb <dotb!4a6e9028@gateway/web/freenode/ip.74.110.144.40> has joined #yocto14:03
dotbGood morning! I have a quick question about PACKAGECONFIG, it seems most parameters are set using this notation: PACKAGECONFIG[udev] = "-libudev,-no-libudev,udev"14:04
dotbor similar, what is the logic to -set -unset -set again?14:04
*** Guest54663 is now known as fledermaus14:06
Crofton|workdotb, What exactly are you asking again?14:06
dotbI saw a similar question raised in the mailing list https://lists.yoctoproject.org/pipermail/yocto/2013-November/016969.html14:07
Crofton|workI'm not sure what isn't clear14:08
dotbBasically, I want to add the icu feature to meta-qt, PACKAGECONFIG[icu] = "-icu,-no-icu,icu"14:08
dotbWell, syntax for packageconfig is bit inwieldly to understand at first, I'm trying to figure out how I could enable the icu feature, in the meta-qt layer. Do I just modify the meta-qt package or do I create a bbappend file? Also I saw confusion regarding ??= ?= and +=14:10
Crofton|workmake sure you need something like PACKAGECONFIG_pn_gnuradio_append = "icu"14:11
Crofton|workI'm hunting for exact synatx14:11
Crofton|workin local.conf14:11
Crofton|workor you can also use bbappend14:11
Crofton|work> in my local.conf:14:12
Crofton|work>    PACKAGECONFIG_pn-vlc_append = " libva"14:12
dotbCrofton|work: Thank you, testing it out now.14:13
Crofton|workYou can use bitbake -e foo | grep ^PACKAGECONFIG to see what the var gets set to14:14
Crofton|workI think :)14:14
*** justanotherboy <justanotherboy!mlopezva@nat/intel/x-pfphzucadvqdygjp> has joined #yocto14:19
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has quit IRC14:19
*** belen <belen!~Adium@134.134.139.77> has joined #yocto14:20
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC14:20
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has joined #yocto14:24
*** ylouise <ylouise!~yalouise@134.134.139.77> has left #yocto14:28
*** gferencz <gferencz!~gferencz@173.225.52.242> has joined #yocto14:30
*** _stephan <_stephan!~stephan@p4FE04CA9.dip0.t-ipconnect.de> has quit IRC14:33
*** arfoll <arfoll!~bl73@97e2b5c5.skybroadband.com> has joined #yocto14:47
*** edbart1 <edbart1!ebartosh@nat/intel/x-yqiynvrdxpcdyoep> has quit IRC14:49
*** alex_h <alex_h!~alex@p578a6cbb.dip0.t-ipconnect.de> has quit IRC14:49
*** edbart <edbart!ebartosh@nat/intel/x-dodfvgsrvsxtszop> has joined #yocto14:49
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has joined #yocto14:55
kratsgHi all -- looking at this: http://layers.openembedded.org/layerindex/branch/master/recipes/?q=yaml14:55
kratsgi noticed that meta-python has 3.10 and some other locations have 3.11 -- what do I need to do to make sure a recipe is using 3.11? Do I need to add the custom layer in my conf.bb or make sure that the LAYERDEPENDS has the correct layer dependencies?14:56
* Crofton|work rages against layers that duplicate recipes again14:59
*** belen1 <belen1!Adium@nat/intel/x-kjsolymzrgdfetua> has joined #yocto14:59
Crofton|workbasically, I suggest submitting the update to meta-python and ignoring meta-ros and meta-virtualization14:59
*** belen <belen!~Adium@134.134.139.77> has quit IRC15:00
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC15:01
*** madisox <madisox!~madison@12.30.244.5> has joined #yocto15:01
joseppcCrofton|work: some packages in meta-virt require that version, it's hard to make everybody happy :)15:04
Crofton|workok, I know meta-virt is sort of special, but they could at least submit the update to meta-python15:05
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC15:05
kratsgI don't see why both versions couldn't exist in meta-python.15:05
Crofton|workit just looks bad to see the same recipe maintained in three layers15:05
kratsgThe only reason 3.11 exists, as far as I can tell, is just an update against the latest libyaml and compilers.15:06
kratsgI also sent an email a while ago about trying to get a recipe working (it has a lot of compilation errors) with bitbake, but I've gotten no helpful responses yet :(15:06
joseppcCrofton|work: true, I agree15:06
Crofton|workkratsg, what recipe?15:06
kratsghttps://github.com/kratsg/meta-l1calo/blob/master/recipes-core/root/root_6.04.12.bb15:07
kratsgIt's one that I'm trying to develop to use ROOT on an embedded board.15:07
kratsgHowever, I run into a lot of Fortran and CMake problems.15:07
kratsg(with C++11 support and so on)15:07
* Crofton|work curses FORTRAN :)15:07
kratsgThe log is here: https://gist.github.com/kratsg/cd3184a167676eb6906715:07
kratsg(note that this is a layer, so you can easily check it out, update an image to depend on "root" and then try to compile it yourself with bitbake :-/)15:08
kratsgand here is CMakeError.log https://gist.github.com/anonymous/adec2839deecce33702a15:08
Crofton|work|   LLVM requires C++11 support but the '-std=c++11' flag isn't supported.15:09
Crofton|worklook suspicious15:09
kratsgYeah, it's really suspicious. I use CMake with this version of ROOT to get it on my computer, so I have no reason to think it would break inside bitbake :-/15:09
kratsg[it's very recent too!]15:09
*** cference <cference!~cference@74-93-0-221-SFBA.hfc.comcastbusiness.net> has joined #yocto15:10
kratsgI've attempted to try and replace it with a newer version of LLVM, but not sure15:11
Crofton|workor think the llvm expert is asleep15:15
Crofton|workI think we have a couple of llvm versions you could try,m15:15
kratsgyeah, the really strange part is that ROOT does come with LLVM support internally and can use that15:16
kratsgbut it tends to always default to an external one15:16
*** munch_ <munch_!~mark@c-50-129-137-132.hsd1.il.comcast.net> has joined #yocto15:17
*** munch_ is now known as Guest6030115:17
kratsghttps://root.cern.ch/building-root15:17
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC15:20
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has quit IRC15:20
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto15:21
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-jtjfkbfsjgxtqqjh> has left #yocto15:23
*** mwarning <mwarning!~mwarning@business-213-023-255-127.static.arcor-ip.net> has joined #yocto15:24
*** mwarning <mwarning!~mwarning@business-213-023-255-127.static.arcor-ip.net> has left #yocto15:24
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto15:25
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC15:25
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto15:26
*** Tenhi_ <Tenhi_!~tenhi@69.64.50.196> has joined #yocto15:26
*** belen1 <belen1!Adium@nat/intel/x-kjsolymzrgdfetua> has quit IRC15:33
*** belen <belen!Adium@nat/intel/x-kiaxxcaosancrklv> has joined #yocto15:33
*** dotb <dotb!4a6e9028@gateway/web/freenode/ip.74.110.144.40> has quit IRC15:36
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC15:37
*** belen <belen!Adium@nat/intel/x-kiaxxcaosancrklv> has quit IRC15:37
*** cference <cference!~cference@74-93-0-221-SFBA.hfc.comcastbusiness.net> has quit IRC15:43
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has joined #yocto15:46
*** belen <belen!~Adium@134.134.139.77> has joined #yocto15:48
*** pericynthion <pericynthion!42c93fe2@gateway/web/freenode/ip.66.201.63.226> has quit IRC15:48
-YoctoAutoBuilder- build #246 of ptest-x86-64 is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/ptest-x86-64/builds/24615:49
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC15:50
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto15:52
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto15:53
*** benjamirc <benjamirc!besquive@nat/intel/x-cttrdmqcpqienwtp> has joined #yocto15:53
-YoctoAutoBuilder- build #610 of nightly-x86-64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/61015:55
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has quit IRC15:56
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC15:59
*** benjamirc <benjamirc!besquive@nat/intel/x-cttrdmqcpqienwtp> has quit IRC16:00
*** manuel__ <manuel__!~manuel@p57921847.dip0.t-ipconnect.de> has joined #yocto16:02
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has quit IRC16:04
*** manuel__ is now known as manuel_16:04
*** joshuagl <joshuagl!~joshuagl@192.198.151.36> has joined #yocto16:11
*** tsramos_ <tsramos_!tsramos@nat/intel/x-gzywasbbgvjxnsxb> has quit IRC16:14
*** tsramos <tsramos!~tsramos@192.55.54.42> has joined #yocto16:16
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC16:18
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto16:18
wyrmnerdboy: Server problems. With dhcpd.16:19
*** frsc <frsc!~frsc@80.149.173.67> has quit IRC16:19
*** TobSnyder1 <TobSnyder1!~schneider@146.52.80.242> has quit IRC16:20
*** tsramos <tsramos!~tsramos@192.55.54.42> has quit IRC16:20
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC16:22
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto16:25
*** benjamirc <benjamirc!~besquive@134.134.137.75> has joined #yocto16:25
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has quit IRC16:27
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC16:29
*** geotoad <geotoad!4fad9634@gateway/web/freenode/ip.79.173.150.52> has joined #yocto16:29
geotoadTrying to compile something in Poky with "make install" and get "make: /usr/bin/install: Command not found". Any idea what's going on?16:30
kergothdoes your build machine not have the install command?16:31
kergothoh, you're compiling on target?16:31
rburtoneither way, checking that /usr/bin/install exists seems like a good start16:32
kergoth /usr/bin/install comes from coreutils. if you don't have that, then your device is nowhere near equipped to do development16:32
geotoadI'm trying to get dtc installed using instructions lines 73-76 here: https://github.com/01org/edison-u-boot/blob/master/doc/README.fdt-control16:32
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC16:33
geotoadinstalling coreutils16:33
geotoadworked :)16:33
geotoadHmm "make install" seemed to work but not "dtc: not found"16:36
geotoad116:37
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has left #yocto16:37
geotoadAny idea how to install dtc library on Poky?16:46
*** bluelightning <bluelightning!~paul@2406:e007:44a7:1:5e51:4fff:febb:401d> has joined #yocto16:51
*** bluelightning <bluelightning!~paul@2406:e007:44a7:1:5e51:4fff:febb:401d> has quit IRC16:51
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto16:51
*** aehs29 <aehs29!~aehernan@134.134.139.77> has joined #yocto16:52
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC16:53
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto16:54
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto16:54
*** sjolley <sjolley!sjolley@nat/intel/x-txpzcapmccihgcnp> has joined #yocto16:56
geotoadHello Yoctocentti - anyone know how to install device-tree-compiler on a working Poki?16:56
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has quit IRC16:57
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has joined #yocto17:03
*** roccof <roccof!~roccof@93.51.177.218> has quit IRC17:05
-YoctoAutoBuilder- build #589 of nightly-oecore is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-oecore/builds/58917:08
*** dvhart <dvhart!dvhart@nat/intel/x-trarnryjxgehnckw> has joined #yocto17:09
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-bxnaqmxsociuuuid> has joined #yocto17:10
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has quit IRC17:10
wyrmgeotoad: Looks like you probably just install the dtc package. http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-kernel/dtc/17:15
*** lpapp <lpapp!~lpapp@kde/lpapp> has quit IRC17:15
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC17:16
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has joined #yocto17:19
*** fl0v01 <fl0v01!~fvo@p5DDC4C94.dip0.t-ipconnect.de> has quit IRC17:19
*** edbart <edbart!ebartosh@nat/intel/x-dodfvgsrvsxtszop> has quit IRC17:21
*** edbart <edbart!ebartosh@nat/intel/x-dxcdkiltotvuiigz> has joined #yocto17:22
*** soderstrom <soderstrom!~soderstro@c-9489e555.015-59-6c6b7013.cust.bredbandsbolaget.se> has joined #yocto17:22
sgw_armpit: did you see Robert's email regarding the libxml and libssl CVE patchset failures?  Seems 2 of the patches might have been corrupted.17:28
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has quit IRC17:29
geotoadwyrm: Thanks. Do you know how I can install that on a working system? Not so familiar with Yocto..17:30
wyrmHonesly, no. I've been focusing on building things with bitbake when setting up a system, and then treating it as static afterward.17:32
wyrmPackage management within a running system is not in my skillset yet.17:33
-YoctoAutoBuilder- build #603 of nightly-ppc is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/60317:34
nerdboyif you have package manager on the system just copy the package over and install17:34
nerdboyor unpack package manually and copy files17:35
geotoadnerdboy: I only have opkg. know if I can point it to the URL or something?17:40
khemrburton: yt ?17:40
rburtonkhem: vaguely. what's up?17:41
*** armpit <armpit!~akuster@2601:202:4000:1239:9ca2:2131:a4c0:cdbd> has quit IRC17:43
khemrburton: when is your pull request gonna land any idea ?17:44
khemI have phase4 lining up17:44
khemthis will be last big one17:44
khemthen after that it will be smaller increments17:45
nerdboyopkg will work if you have an ipk17:45
nerdboyor you could try this:17:45
nerdboywget -c https://github.com/hephaex/toolchain/tree/master/arm/dtc.sh17:45
nerdboymake it executable and run it17:46
geotoadnerdboy: that repo looks incompatible - uses apt-get17:50
rburtonkhem: next mut will have it in17:51
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has quit IRC17:51
nerdboythen you'll need to bitbake dtc and copy it over17:54
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC17:55
nerdboyopkg can install from package feed but you'd need to have a web server serving up the feed url17:55
*** armpit <armpit!~akuster@2601:202:4000:1239:4dd9:ed7e:92c:d841> has joined #yocto17:56
nerdboyjust scp/rsync the .ipk file and do "opkg install foo.ipk"17:56
*** sjolley <sjolley!sjolley@nat/intel/x-txpzcapmccihgcnp> has quit IRC17:56
*** jbrianceau is now known as jbrianceau_away17:59
*** agust <agust!~agust@217.226.250.150> has joined #yocto18:02
*** sjolley <sjolley!sjolley@nat/intel/x-lfefxgiyidvbbkdm> has joined #yocto18:03
geotoadnerdboy: thanks that's useful. Not sure where to get the dtc idk though..18:03
geotoad* .ipk..18:03
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC18:04
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC18:04
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto18:05
nerdboybuild it with bitbake18:06
nerdboybuild-imx233mini/tmp/deploy/ipk/armv5e/dtc_1.4.1+git0+302fca9f4c-r0_armv5e.ipk18:06
geotoadAh I see. Alas I already have a build I have to work with. It's a mature project..18:07
nerdboyin that build env try "bitbake dtc"18:07
geotoadHoly cr*p this is turning out to be hard work18:20
geotoadHow can it be so difficult to install a library..18:20
*** obsrwr <obsrwr!~obsrwr@188.24.212.34> has joined #yocto18:22
wyrmSo, hey, nerdboy... You asked about my dhcpd problem. So, The bitbake-built version (in Jethro) starts fine and works fine, but when I try to stop it, it fails to stop. The normal way of terminating dhcpd is to send it a sigterm, but the handler just returns and dhcpd keeps running.18:27
wyrmIf I copy the sources into the running system and build it there, it starts, runs, and stops just like it's supposed to.18:28
*** radhus <radhus!~radhus@sevh.radhuset.org> has quit IRC18:28
*** radhus <radhus!~radhus@sevh.radhuset.org> has joined #yocto18:29
wyrmThe last build I did of Fido didn't have this behavior. So, I went through the git logs and couldn't find any likely causes of that change in behavior. Now, I'm selectively applying the package's patches trying to recreate the problem.18:32
wyrmAny other thoughts or suggestions on how to troubleshoot this?18:32
-YoctoAutoBuilder- build #244 of nightly-mips64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips64/builds/24418:33
nerdboynot really, i have local dnsmasq for that18:34
nerdboydon't normally try to run a server on embedded stuff18:34
*** townxelliot <townxelliot!~ell@94.13.71.131> has quit IRC18:35
geotoadnerdboy: thanks for your help dude18:35
geotoadciao18:35
*** geotoad <geotoad!4fad9634@gateway/web/freenode/ip.79.173.150.52> has quit IRC18:35
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has quit IRC18:40
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto18:46
wyrmI might jump ship over to DHCP subsystem of dnsmasq. I'm not quite ready to run up the white flag yet, though.18:53
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto18:56
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto18:59
*** tsramos <tsramos!~tsramos@134.134.137.71> has joined #yocto19:00
nerdboywyrm: try upping the debug level on the server side?  maybe run it in the foreground with strace?19:02
*** belen <belen!~Adium@134.134.139.77> has quit IRC19:04
-YoctoAutoBuilder- build #608 of nightly-arm is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/60819:05
*** gferencz <gferencz!~gferencz@173.225.52.242> has quit IRC19:10
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto19:11
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto19:15
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC19:16
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC19:18
-YoctoAutoBuilder- build #584 of nightly-fsl-ppc is complete: Failure [failed Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/builds/58419:20
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC19:24
*** edbart <edbart!ebartosh@nat/intel/x-dxcdkiltotvuiigz> has quit IRC19:24
wyrmnerdboy: I did use strace. That's how I found that the signal handler was just returning in the broken version, instead of allowing the server to exit.19:29
wyrmThe funny thing is that I can't seem to reproduce it with a hand-compiled copy. Not even with all the Poky patches applied.19:30
wyrmAlso, I'm glad I had to type that insead of saying it. "Poky patches applied" seems like a good tongue twister.19:31
*** joshuagl <joshuagl!~joshuagl@192.198.151.36> has quit IRC19:31
-YoctoAutoBuilder- build #597 of nightly-mips is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/59719:32
*** Jefro1 <Jefro1!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto19:33
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC19:33
*** dvhart <dvhart!dvhart@nat/intel/x-trarnryjxgehnckw> has quit IRC19:35
nerdboywyrm: you didn't get any configure warnings did you?19:37
nerdboytry comparing config.log from the two builds?19:37
*** jjmb <jjmb!~jjmb@69.241.19.12> has joined #yocto19:39
*** morphis <morphis!~morphis@pD9ED7667.dip0.t-ipconnect.de> has quit IRC19:40
*** jjmb <jjmb!~jjmb@69.241.19.12> has quit IRC19:42
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has joined #yocto19:45
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto19:47
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto19:50
*** paulg <paulg!~paulg@209.29.74.150> has joined #yocto19:53
*** khem` is now known as onoffon19:57
*** onoffon is now known as khem`19:57
*** jjmb <jjmb!~jjmb@69.241.19.12> has joined #yocto19:59
wyrmWell, if I hand-compile with --with-libbind (which the bitbake recipe uses), ./configure finishes fine but make fails.20:04
wyrm| In file included from ../includes/dhcpd.h:91:0,20:04
wyrm|                  from alloc.c:30:20:04
wyrm| ../includes/omapip/isclib.h:51:24: fatal error: isc/buffer.h: No such file or directory20:04
*** igor3 <igor3!~Igor_Stop@134.134.137.71> has quit IRC20:05
wyrmWithout --with-libbind, ./configure and make succeed, and dhcpd runs and stops correctly.20:05
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-xkkamixmhucrqfrx> has quit IRC20:05
wyrmHowever! Since you mentioned it, I looked, and yes. The hand-compiled version does produce an error when it tries to build conftest.c20:06
wyrmThat doesn't seem to impair the build process, though.20:07
* zeddii has no context. but wyrm .. what branch are you using ? and what was the target ?20:07
*** Jefro1 <Jefro1!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC20:08
*** igor1 <igor1!Igor_Stopp@nat/intel/x-rlauagyyswlqcyok> has joined #yocto20:08
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto20:09
paulgare any of these headers even kernel headers?20:09
*** behanw <behanw!~behanw@2001:470:b26c:0:8d90:f9f2:ff5c:8550> has quit IRC20:09
wyrmzeddii: Upgrading from Fido to Jethro. The target is ... fsl-multimedia-image-full.20:11
*** khem` is now known as onoffon20:12
wyrmThe package in question is dhcp. Under fido, dhcpd-4.3.1 built, ran, and stopped correctly. Under jethro, dhpcd-4.3.2 builds and runs, but won't stop on a SIGTERM.20:12
wyrmI can hand-compile dhcpd-4.3.2 and it will build, run, and stop correctly. I can't seem to re-create the error by hand.20:13
zeddiiit is worth checking to see if prelink is in play. I've had it corrupt my binaries in the past (but it should all be fixed in master), which meant that when I built by hand, everything worked.20:14
-YoctoAutoBuilder- build #607 of nightly-x86 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/60720:14
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto20:15
wyrmI just used a bbappend to remove the --with-libbind option, and I'm trying to eliminate the error that way (since that was the one thing I couldn't do by hand).20:16
wyrmBut prelinking works perfectly all the time!20:16
wyrm...20:16
wyrmI'll look.20:16
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC20:20
*** berton <berton!~fabio@177.194.219.54> has quit IRC20:20
fraydefinitely rebuild w/ prelinking off.. (disabling prelink only affects the image generation, so it's quick trial process)20:23
frayif you can find a reproducible problem, please file a bug and let me know..20:23
frayotherwise, I'd say it's likely "something else", some kind of contamination in the build20:23
-YoctoAutoBuilder- build #593 of nightly-fsl-arm-lsb is complete: Failure [failed BuildImages BuildImages_1 BuildImages_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm-lsb/builds/59320:24
wyrmYep. Prelinking is enabled. I'll disable that and try again once it's done doing the build it's doing now.20:26
fray(you can also unprelink the one binary, on the target, if you have the target prelink recipe included in your image)20:27
paulgunprelink?   That sounds like an automatic language fine of $2 right there....  :)20:29
wyrmNope. I don't.20:36
wyrmSo, I rebuild.20:36
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto20:39
*** mr_science <mr_science!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto20:40
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto20:40
*** toscalix <toscalix!~agustinbe@149.100.1.50> has quit IRC20:45
*** paulg <paulg!~paulg@209.29.74.150> has quit IRC20:46
-YoctoAutoBuilder- build #243 of nightly-arm64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/24320:54
*** karobar <karobar!4432d82d@gateway/web/freenode/ip.68.50.216.45> has joined #yocto21:01
karobardoes anyone know why an autotools-inheriting recipe would have oe_runconf fail but the configure exit 0?21:05
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC21:09
*** joshuagl <joshuagl!~joshuagl@192.198.151.44> has joined #yocto21:09
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC21:14
*** ant_home <ant_home!~ant__@host48-23-dynamic.14-87-r.retail.telecomitalia.it> has joined #yocto21:16
-YoctoAutoBuilder- build #611 of nightly-x86-64-lsb is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64-lsb/builds/61121:20
*** Biliogadafr1 <Biliogadafr1!~User@nat2-minsk-pool-46-53-195-225.telecom.by> has quit IRC21:22
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC21:24
*** fledermaus <fledermaus!~vivek@pakora.collabora.co.uk> has quit IRC21:24
*** soderstrom <soderstrom!~soderstro@c-9489e555.015-59-6c6b7013.cust.bredbandsbolaget.se> has quit IRC21:29
-YoctoAutoBuilder- build #599 of nightly-world is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/59921:30
*** tsramos <tsramos!~tsramos@134.134.137.71> has quit IRC21:32
*** tsramos <tsramos!~tsramos@134.134.137.71> has joined #yocto21:32
*** onoffon <onoffon!~khem@unaffiliated/khem> has quit IRC21:32
*** tsramos <tsramos!~tsramos@134.134.137.71> has quit IRC21:42
Marexmeh21:42
Marexupdating U-Boot to 2016.01 produces some weird problems21:42
Marexcan someone please explain to me what does EXTRA_OEMAKE_class-target and EXTRA_OEMAKE_class-cross mean ?21:43
Marexmore like what is the difference between "target" and "cross"21:43
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-gymmoyvwrnhwntrx> has joined #yocto21:44
*** agust <agust!~agust@217.226.250.150> has quit IRC21:44
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC21:46
*** behanw <behanw!~behanw@2001:470:b26c:0:5983:2eb8:d89f:df7a> has joined #yocto21:46
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto21:48
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC21:54
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto22:05
*** pohly <pohly!~pohly@p5DE8F0DE.dip0.t-ipconnect.de> has quit IRC22:12
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto22:16
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto22:16
*** sjolley <sjolley!sjolley@nat/intel/x-lfefxgiyidvbbkdm> has quit IRC22:26
*** joshuagl <joshuagl!~joshuagl@192.198.151.44> has quit IRC22:27
kergothMarex: cross = built to run on the build machine, but target the target. target builds binaries that run on target, not the build machine. the main example of a cross tool is the crosscompiler.22:27
Marexkergoth: thanks22:28
Marexkergoth: now it makes sense to me22:28
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto22:30
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC22:38
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC22:52
*** sjolley <sjolley!sjolley@nat/intel/x-xrkkdyovbqkkpwnj> has joined #yocto22:55
*** ant_home <ant_home!~ant__@host48-23-dynamic.14-87-r.retail.telecomitalia.it> has quit IRC23:00
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC23:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC23:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto23:01
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto23:01
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC23:07
*** lamego <lamego!jose@nat/intel/x-sbeoagjfmecfenxc> has quit IRC23:07
-YoctoAutoBuilder- build #606 of nightly-multilib is complete: Failure [failed BuildImages_4] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/60623:09
*** sjolley <sjolley!sjolley@nat/intel/x-xrkkdyovbqkkpwnj> has quit IRC23:11
*** obsrwr <obsrwr!~obsrwr@188.24.212.34> has quit IRC23:30
khem`kergoth: nativesdk, crosssdk, cross-canadian, native also need to be explained  ;)23:33
*** sjolley <sjolley!~sjolley@134.134.139.77> has joined #yocto23:44
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-gymmoyvwrnhwntrx> has quit IRC23:45
*** madisox <madisox!~madison@12.30.244.5> has quit IRC23:50
*** karobar <karobar!4432d82d@gateway/web/freenode/ip.68.50.216.45> has quit IRC23:53
*** Klox <Klox!~Jacob@c-24-15-54-56.hsd1.il.comcast.net> has quit IRC23:55

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