Tuesday, 2015-05-05

*** sarahsharp <sarahsharp!~sarah@134.134.139.76> has joined #yocto00:03
*** manuel_ <manuel_!~manuel@c-24-218-80-235.hsd1.ma.comcast.net> has quit IRC00:06
*** timsche <timsche!~quassel@port-92-192-31-163.dynamic.qsc.de> has joined #yocto00:08
*** sarahsharp <sarahsharp!~sarah@134.134.139.76> has quit IRC00:09
*** ionte_ <ionte_!uid48103@gateway/web/irccloud.com/x-xiqjdfvlbgiiqsma> has quit IRC00:20
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-lbtljmnkhqzxcpbz> has quit IRC00:29
*** manuel_ <manuel_!~manuel@209.6.175.242> has joined #yocto00:33
*** manuel_ <manuel_!~manuel@209.6.175.242> has quit IRC00:36
*** sarahsharp <sarahsharp!sarah@nat/intel/x-dguyxsbrzhqswqlk> has joined #yocto00:44
*** paulg_ <paulg_!~paulg@71-19-175-186.dedicated.allstream.net> has quit IRC00:50
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC00:53
*** nighty^ <nighty^!~nighty@hokuriku.rural-networks.com> has quit IRC01:07
*** sarahsharp <sarahsharp!sarah@nat/intel/x-dguyxsbrzhqswqlk> has quit IRC01:07
*** jmleo <jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has quit IRC01:17
*** paulg_ <paulg_!~paulg@24-52-251-107.cable.teksavvy.com> has joined #yocto01:18
*** jmleo <jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has joined #yocto01:18
*** OutOfNoWhere <OutOfNoWhere!~rpb@199.68.195.102> has quit IRC02:23
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has joined #yocto02:31
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has quit IRC02:36
*** paulg_ <paulg_!~paulg@24-52-251-107.cable.teksavvy.com> has quit IRC02:39
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC02:47
*** hsychla_ <hsychla_!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto03:01
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto03:02
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC03:03
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto03:23
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC03:47
*** zerus <zerus!~epetmab@host-95-197-71-57.mobileonline.telia.com> has joined #yocto04:28
*** sjolley <sjolley!sjolley@nat/intel/x-ietsbsovcbifvhhx> has quit IRC04:42
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto04:44
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto04:52
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC04:53
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto04:59
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC05:12
*** zerus <zerus!~epetmab@host-95-197-71-57.mobileonline.telia.com> has quit IRC05:13
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto05:22
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has joined #yocto05:42
*** agust <agust!~agust@pD9E2F8F4.dip0.t-ipconnect.de> has joined #yocto05:43
*** drix <drix!c32a382b@gateway/web/freenode/ip.195.42.56.43> has joined #yocto05:44
drixhi guys05:45
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC05:45
drixI'm trying to build images for several machines. Each of the machine inherits from intel-core2-32 machine definition. I'd like to override the default /etc/network/interfaces file.05:49
drixWhat I did is I created my machines.conf inside my meta-drix/conf/machines/05:50
drixThen, inside the meta-drix/recipes-cores I created a init-ifupdown directory, that contains :05:51
drix- init-ifupdown_1.0.bbappend05:51
drix- all the machines/files/interfaces tree.05:52
drixBut it's not working :(05:52
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto05:52
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto05:53
nrossidrix: you need to create a bbappend for init-ifupdown, which just adds your directory to the FILESEXTRAPATHS05:56
drixyes, that's what I did, here is the content :05:57
drixFILESEXTRAPATHS_prepend := "${THISDIR}/${MACHINE}/files:"05:57
nrossioh you are doing it in reverse... you should just have "files/<machine>/content"05:57
nrossithen your prepend can just be "${THISDIR}/files:"05:57
*** mago_ <mago_!~mago@88.131.56.168> has quit IRC05:58
nrossiand that will let bitbake handle the priority based on the overrides05:58
drixoh, thanks, i'll try this.05:59
nrossihttp://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-ppc/tree/recipes-core/init-ifupdown06:00
nrossithats an example of how you should do it ;)06:00
drixThanks,06:01
drixthus, I need to use the base package name of the machine name ?06:02
nrossioh you dont need to use "BPN", "files" is fine. the meta-intel layer uses files: http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/meta-fri2/recipes-core/init-ifupdown/init-ifupdown_1.0.bbappend?h=master06:02
nrossiBPN = Binary Package Name06:02
drixAlright, thanks. I'll try with files.06:03
nrossiactually, its "Bare Package Name"... silly me.. :P http://www.yoctoproject.org/docs/1.6.1/ref-manual/ref-manual.html#var-BPN06:04
drixThanks, another question,06:13
drixas I'm a newbie on yocto, (but quite resourceful :p), can you tell me what's the most important parts I have to read in the bitbake & yocto mega manual ? I don't know where to start, and I'd like to understand all the principles instead of asking google each time I have an issue06:15
drixAs you know, those manuals are huge!06:16
nrossidrix: Hmmm i am not sure on good materials. I learnt by playing with things.06:16
redengindrix, read the source then, or go by the examples06:16
redengindrix, I agree, the manual needs to be cut down, but from what I've seen the manual doesn't cover half of the stuff thats in there06:17
drixThat's what i'm doing! But sometimes, I'm trying to do some things, and I'm quite sure there are better practices :p06:17
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC06:17
drixYes, and I'm not enough brave to read the whole thing06:17
LetoThe2nddrix: i'd suggest to drop the bitbake and mega manual, and just go for the yocto dev manual.06:18
redengindrix, unfortunately, the best practices are slowly evolving, most likely there will be a refactor of bitbake/yocto one day, but for now you just have to swim with it06:18
nrossidrix: some of the other layers might already do what you are trying to do, its always a good idea to have a peek at them. The easiest way is to look by recipe/etc have a look on layers.openembedded.org06:18
LetoThe2nddrix: it should contain the vast majority of what you need to actually use the whole thing06:19
redengindrix, but if you have the time, you could be the catalyst for change, and refactor the build to correlate to the manual06:19
drixIt's perhaps too early for that06:20
redengindrix, not really, you sound like you understand the basics, the only problem is that there is a lot of legacy shit thats undocumented06:21
drixnrossi: That's what I'm doing, openembedded meta is very interesting06:21
drixLetoThe2nd: Thanks!06:22
LetoThe2nddrix: yw06:22
drixredengin: to be honest I'm using yocto for a week... I guess it's a good start.06:23
redengindrix, as you get into it, you'll find out it easy to start from bitbake and make a sensible set of build recipes without the legacy hacks06:24
*** wadim_ <wadim_!~egorov@mail.phycard.co.uk> has joined #yocto06:24
redenginit all depends on how much time you have to customize your OS06:25
redenginbtw, anyone here done an ipad digitizer replacement (broken glass)?06:26
*** mago_ <mago_!~mago@88.131.56.168> has joined #yocto06:34
drixnrossi: it works, my /etc/network/interfaces has been correctly overriden, thanks!06:36
redengincongrats06:38
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has joined #yocto06:42
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto06:49
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC06:50
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto07:00
*** jku <jku!jku@nat/intel/x-axrsxjnyjzyqdzzi> has joined #yocto07:02
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has quit IRC07:02
*** roric__ <roric__!~roric@83.140.117.51> has joined #yocto07:02
*** bananapeel <bananapeel!55eb01a5@gateway/web/freenode/ip.85.235.1.165> has joined #yocto07:05
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has joined #yocto07:05
*** pohly <pohly!~pohly@p57A56F69.dip0.t-ipconnect.de> has joined #yocto07:09
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-pfyvgeirwdzjhyci> has joined #yocto07:13
*** jbrianceau_away is now known as jbrianceau07:13
*** frsc <frsc!~frsc@80.149.173.68> has joined #yocto07:18
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto07:22
*** mago_ <mago_!~mago@88.131.56.168> has quit IRC07:25
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-lrciulbxahhgyeto> has joined #yocto07:25
*** mago_ <mago_!~mago@88.131.56.168> has joined #yocto07:26
*** lyang0 <lyang0!~lyang001@106.120.101.38> has joined #yocto07:32
*** mckoan|away is now known as mckoan07:43
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC07:45
*** ionte_ <ionte_!uid48103@gateway/web/irccloud.com/x-bdgvcrdusrdbwnvg> has joined #yocto07:56
*** redengin <redengin!~redengin@c-73-193-21-136.hsd1.wa.comcast.net> has quit IRC07:59
*** _jmleo <_jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has joined #yocto08:03
*** jmleo <jmleo!~jmleo@LDijon-156-64-30-180.w80-15.abo.wanadoo.fr> has quit IRC08:03
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC08:18
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto08:18
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto08:19
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto08:19
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has quit IRC08:21
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto08:22
*** bluelightning <bluelightning!~paul@83.217.123.106> has quit IRC08:22
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto08:22
*** smustafa <smustafa!~mustafa@110.93.212.98> has joined #yocto08:22
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has joined #yocto08:24
bluelightningmorning all08:25
*** wv <wv!~wv@ip2.televic.com> has joined #yocto08:28
*** timsche <timsche!~quassel@port-92-192-31-163.dynamic.qsc.de> has quit IRC08:40
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC08:41
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto08:42
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has joined #yocto08:43
*** ddom <ddom!~ddom@p4FFAACB0.dip0.t-ipconnect.de> has joined #yocto08:50
*** sameo <sameo!~samuel@192.55.55.39> has joined #yocto08:52
*** AlexVaduva <AlexVaduva!~AlexVaduv@193.202.22.66> has quit IRC08:55
*** sameo <sameo!~samuel@192.55.55.39> has quit IRC08:56
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto08:56
*** sameo <sameo!samuel@nat/intel/x-hzzsrgmsiuhjtgwt> has joined #yocto08:56
*** LocutusOfBorg1 <LocutusOfBorg1!~Gianfranc@93.51.28.96> has quit IRC09:02
*** AlexVaduva <AlexVaduva!~AlexVaduv@193.202.22.66> has joined #yocto09:03
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has quit IRC09:05
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-87.ericsson.net> has joined #yocto09:06
*** belen <belen!~Adium@192.198.151.43> has joined #yocto09:07
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto09:08
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC09:10
*** drix <drix!c32a382b@gateway/web/freenode/ip.195.42.56.43> has quit IRC09:19
*** ddom <ddom!~ddom@p4FFAACB0.dip0.t-ipconnect.de> has quit IRC09:24
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto09:36
*** bananapeel <bananapeel!55eb01a5@gateway/web/freenode/ip.85.235.1.165> has quit IRC09:36
*** khalebios <khalebios!500d0de3@gateway/web/freenode/ip.80.13.13.227> has joined #yocto09:41
*** LocutusOfBorg1 <LocutusOfBorg1!~Gianfranc@93.51.28.96> has joined #yocto09:49
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto09:52
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has joined #yocto09:59
*** khalebios <khalebios!500d0de3@gateway/web/freenode/ip.80.13.13.227> has quit IRC10:02
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC10:03
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has quit IRC10:05
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has joined #yocto10:05
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-87.ericsson.net> has quit IRC10:05
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has quit IRC10:08
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has joined #yocto10:09
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has joined #yocto10:11
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC10:13
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto10:16
*** khalebios <khalebios!500d0de3@gateway/web/freenode/ip.80.13.13.227> has joined #yocto10:19
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC10:26
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC10:27
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto10:32
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto10:33
-YoctoAutoBuilder- build #286 of nightly-qa-skeleton is complete: Failure [failed BuildImages Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-skeleton/builds/28610:33
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC10:43
*** belen1 <belen1!~Adium@192.198.151.44> has joined #yocto10:52
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC10:52
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto10:54
*** belen <belen!~Adium@192.198.151.43> has quit IRC10:55
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC11:01
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has quit IRC11:02
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:03
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto11:05
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC11:08
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC11:08
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto11:14
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto11:14
-YoctoAutoBuilder- build #282 of nightly-ipk is complete: Failure [failed BuildImages Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ipk/builds/28211:15
*** belen1 <belen1!~Adium@192.198.151.44> has quit IRC11:18
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto11:20
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto11:22
-YoctoAutoBuilder- build #288 of nightly-fsl-ppc-lsb is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc-lsb/builds/28811:25
khalebioshello everyone11:25
khalebiosneed help for fixing a bug11:26
khalebiosRequired build target 'core-image-minimal' has no buildable providers. Missing or unbuildable dependency chain was: ['core-image-minimal', 'syslinux']11:26
khalebiosi get it while building core-image-minimal for a imx53qsd11:26
LetoThe2ndkhalebios: sounds like the layer you use for board support is buggy, arm boards usually don'T bring syslinux11:28
LetoThe2ndka6sox: and core-image-minimal certainly has no direct dependency on syslinux, i build it all the time without.11:29
LetoThe2ndkhalebios: ^^^^^^^11:29
LetoThe2ndka6sox: sry11:29
LetoThe2ndkhalebios: did you follow https://community.freescale.com/docs/DOC-1616#jive_content_id_iMX53_QSB__Quick_Start_Board11:30
khalebiosi am trying to build with hob. i choose imx5qsb as machine11:31
khalebiosyes i follow it11:32
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto11:32
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC11:32
LetoThe2ndthats contradictory... you say hob, but hob is mentioned there nowhere11:32
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto11:32
LetoThe2ndgenerally i'd suggest to stay away from hob. i've never gotten anything good out of it.11:32
khalebiosoooh sorry. but i just start using it.11:33
khalebiosI thought it's work like bitbake11:34
*** sjolley <sjolley!sjolley@nat/intel/x-pcfxqwmaztefiydk> has joined #yocto11:34
LetoThe2ndnope, hob is just gui frontend, and unfortunately one that doesn'T work too well.11:34
LetoThe2ndbetter do things manually, on the CLI11:35
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC11:36
-YoctoAutoBuilder- build #278 of nightly-deb is complete: Failure [failed BuildImages Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-deb/builds/27811:38
khalebiosok. so i am retrying with bitbake11:39
*** dv__ is now known as dv_11:40
*** ionte_ <ionte_!uid48103@gateway/web/irccloud.com/x-bdgvcrdusrdbwnvg> has quit IRC11:40
-YoctoAutoBuilder- build #280 of nightly-rpm is complete: Failure [failed BuildImages Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-rpm/builds/28011:40
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto11:40
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC11:41
LetoThe2ndkhalebios: you have always beenusing bitbake, hob is just a gui that calls bitbake ;)11:41
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC11:43
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto11:48
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto11:48
*** belen <belen!~Adium@192.198.151.44> has joined #yocto12:01
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC12:04
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC12:04
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto12:20
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto12:20
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC12:22
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto12:26
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto12:27
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto12:28
*** khalebios <khalebios!500d0de3@gateway/web/freenode/ip.80.13.13.227> has quit IRC12:31
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto12:34
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has quit IRC12:40
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC12:43
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has joined #yocto12:45
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has joined #yocto12:46
*** Levi1 <Levi1!~vlevidas@134.134.137.75> has joined #yocto12:52
-YoctoAutoBuilder- build #66 of eclipse-plugin-luna is complete: Failure [failed Building Eclipse Plugin Publishing Artifacts] Build details are at http://autobuilder.yoctoproject.org/main/builders/eclipse-plugin-luna/builds/6612:52
*** belen1 <belen1!~Adium@192.198.151.43> has joined #yocto12:56
*** belen <belen!~Adium@192.198.151.44> has quit IRC12:57
*** belen <belen!~Adium@192.198.151.43> has joined #yocto12:58
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC13:05
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC13:08
*** nighty^ <nighty^!~nighty@hokuriku.rural-networks.com> has joined #yocto13:08
*** belen <belen!~Adium@192.198.151.43> has quit IRC13:09
*** belen <belen!~Adium@192.198.151.43> has joined #yocto13:10
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-qfrovuwplpnmmubw> has joined #yocto13:11
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto13:12
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC13:14
*** jku <jku!jku@nat/intel/x-axrsxjnyjzyqdzzi> has quit IRC13:25
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto13:26
*** manuel_ <manuel_!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC13:29
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has quit IRC13:31
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has joined #yocto13:32
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has quit IRC13:49
*** wadim_ <wadim_!~egorov@mail.phycard.co.uk> has quit IRC13:50
-YoctoAutoBuilder- build #287 of nightly-x86-lsb is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-lsb/builds/28713:54
*** rodgort <rodgort!~rodgort@2607:5300:100:200::160d> has quit IRC13:58
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has joined #yocto14:01
*** manuel_ <manuel_!~manuel@209.6.175.242> has joined #yocto14:04
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC14:05
*** lamego <lamego!lamego@nat/intel/x-fbcwylkoezqzjhuh> has joined #yocto14:09
*** rodgort <rodgort!~rodgort@105.ip-167-114-152.net> has joined #yocto14:10
*** lamego <lamego!~lamego@134.134.139.74> has joined #yocto14:11
*** imrehg <imrehg!~imrehg@111-243-93-112.dynamic.hinet.net> has joined #yocto14:14
*** smustafa <smustafa!~mustafa@110.93.212.98> has quit IRC14:14
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC14:16
*** belen <belen!~Adium@192.198.151.43> has quit IRC14:19
*** belen <belen!Adium@nat/intel/x-rxkxyzwjzrzfzszs> has joined #yocto14:19
*** belen <belen!Adium@nat/intel/x-phtqhjsvelravweu> has joined #yocto14:21
*** wv <wv!~wv@ip2.televic.com> has quit IRC14:23
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-90.ericsson.net> has quit IRC14:25
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC14:33
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto14:34
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto14:37
*** Mohican <Mohican!~Doug@eduroam-143-106-147-239.wifi.ccuec.unicamp.br> has joined #yocto14:45
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC14:47
*** imrehg <imrehg!~imrehg@111-243-93-112.dynamic.hinet.net> has quit IRC14:52
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has quit IRC14:53
*** belen2 <belen2!~Adium@192.198.151.43> has joined #yocto14:54
*** belen <belen!Adium@nat/intel/x-phtqhjsvelravweu> has quit IRC14:55
*** ionte_ <ionte_!uid48103@gateway/web/irccloud.com/x-ltbszcruvxstjuyp> has joined #yocto14:56
sjolleyYPTM:   Ready-Access Number:    8007302996  Access Code:    270575114:56
sjolleyYPTM: Stephen Joined14:57
armpitYPTM: armin is on14:58
jkuYPTM: Jussi Kukkonen joined15:00
*** sona <sona!4e52767c@gateway/web/freenode/ip.78.82.118.124> has joined #yocto15:00
sonahi Sona joined15:02
halsteadYPTM: Michael here.15:02
frayYPTM: Mark is here15:02
RPYPTM: Richard joined15:02
denixYPTM: Denys is joining15:03
AlexVaduvaAlexV. joined15:03
sgw_Saul joined15:03
AlexVaduvaYPTM AlexV. joined15:03
cristianiorgaYPTM: cristian joined15:04
* fray still has an action to enter a few of my requests to bugzilla still15:04
*** sarahsharp <sarahsharp!sarah@nat/intel/x-dfdsuxumxwsjeuhw> has joined #yocto15:04
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-93.ericsson.net> has joined #yocto15:04
*** Mohican <Mohican!~Doug@eduroam-143-106-147-239.wifi.ccuec.unicamp.br> has quit IRC15:10
sjolleyYPTM is over15:11
*** pdp7_ <pdp7_!~pdp7@asciipr0n.com> has joined #yocto15:12
hitlin37could someone fix flashing yocto..i hate this freescale MFGTOOL. it keeps coming back with its ugly set of files to flash.15:12
LetoThe2ndhitlin37: hehe, better fix fsc then ;)15:14
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has joined #yocto15:14
-YoctoAutoBuilder- build #289 of nightly-x86-64 is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/28915:14
hitlin37fsc?15:15
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC15:15
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto15:15
*** pdp7 <pdp7!~pdp7@fsf/member/pdp7> has quit IRC15:15
LetoThe2ndhitlin37: the "flashing" process that you complained about is freescale-specific ;)15:16
*** wv <wv!~wv@ip2.televic.com> has joined #yocto15:17
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has quit IRC15:18
-YoctoAutoBuilder- build #287 of nightly-arm is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/28715:18
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC15:20
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has joined #yocto15:20
*** redengin <redengin!~redengin@c-73-193-21-136.hsd1.wa.comcast.net> has joined #yocto15:21
*** kimo__ <kimo__!~kbouhara@hyperion.atermes.fr> has joined #yocto15:22
*** frsc <frsc!~frsc@80.149.173.68> has quit IRC15:22
-YoctoAutoBuilder- build #285 of nightly-ppc-lsb is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc-lsb/builds/28515:23
*** wv <wv!~wv@ip2.televic.com> has quit IRC15:25
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has quit IRC15:26
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto15:26
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has quit IRC15:31
*** drix <drix!c09d0a64@gateway/web/freenode/ip.192.157.10.100> has joined #yocto15:32
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has quit IRC15:33
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has joined #yocto15:34
*** Glenn__ <Glenn__!614ebaea@gateway/web/freenode/ip.97.78.186.234> has joined #yocto15:36
*** roric__ <roric__!~roric@83.140.117.51> has quit IRC15:36
*** ka6sox is now known as zz_ka6sox15:36
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto15:37
-YoctoAutoBuilder- build #290 of nightly-x86-64-lsb is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64-lsb/builds/29015:37
*** pidge <pidge!~pidge@2a02:8084:0:3000:71b4:c10a:a00:72b2> has quit IRC15:38
Glenn__Is there a way to continue to use the 'quilt' workflow with a "yocto-fied" kernel recipe? When I devshell into the kernel sources 'quilt' is no longer set up with the patches. I'd like to continue to use quilt to modify/refresh patches that have been applied to the kernel. Is this possible with the yocto workflow. It works quite nicely with non-kernel recipes.15:39
hitlin37hmmm15:39
*** tomz <tomz!~trz@134.134.139.74> has quit IRC15:40
*** dvhart <dvhart!dvhart@nat/intel/x-blgruqahqtshukgt> has joined #yocto15:42
Glenn__It seems the yocto-kernel help script allows you to add/remove a kernel patch . . . but not modify one. So it appears the that the workflows assume any patch you apply is perfect and does not require modification.15:42
bluelightningGlenn__: I could be wrong and zeddii may correct me, but I think the assumption is that you'd be using git to work on patches to the kernel15:42
bluelightningif you're doing anything beyond just applying someone else's "finished" patches, that is15:43
*** zerus <zerus!~epetmab@sessfw99-sesbfw99-93.ericsson.net> has quit IRC15:43
paulgyeah, quilt?  why would you want to do that?15:44
paulgI mean I am ok with the quilt _workflow_ and I'll use git to apply a quilt stack of "git format-patch" outputs, but it will be a cold day in hell before I actually use quilt itself again.15:45
Glenn__Unfortunately, I'm developing patches against what's been pulled from a standard kernel. I don't have a seperate (external to yocto) kernel tree. I wanted to be able to tweak my patches within the devshell.15:45
paulgstill not sure I follow what you are trying to do...15:45
-YoctoAutoBuilder- build #283 of nightly-fsl-ppc is complete: Failure [failed BuildImages Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/builds/28315:46
Glenn__I guess my experience with quilt hasn't been so bad ;-(  The TI staging kernels don't appear to be fully "yocto-fied" yet and still support my quilt workflow.15:46
*** kimo_ <kimo_!~kbouhara@hyperion.atermes.fr> has quit IRC15:46
paulgbut, what do you have in your quilt queue?15:46
paulgare they really raw patch chunks, or are they proper commits with commit logs etc?15:47
Glenn__Basically, I have some third-party patches (their origin lost). I apply these patches to a Yocto'fied kernel using the usual SRC_URI approach. Patches apply but build fails. I want to dev-shell in, tweak/refresh the patch, and then try again.15:48
Glenn__They are raw patch chunks.15:48
paulgok, even then you can trivially git-ify them ; in the kernel you really don't want to be leaving uncommitted changes floating around.15:50
Glenn__For the, the awkward work flow is the pull down the Linux kernel sources outside of yocto, apply my patches there, try to build it there, and once I get it to build correctly, use git to generate the patches which I then copy back into my yocto environment (or point Yocto at my separate kernel tree).15:51
paulge.g. to gitify a series manually --   for i in `cat series` ; do git apply $i ; git add -A ; git commit -m 'auto applied patch '$i ; done15:52
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto15:52
lpapphi15:52
paulgthere is git quiltimport too IIRC.15:52
lpappblueness: it seems that no could help me with the kernel issue on the mailing list.15:52
lpappno one*15:52
*** sarahsharp <sarahsharp!sarah@nat/intel/x-dfdsuxumxwsjeuhw> has quit IRC15:53
*** pidge <pidge!~pidge@2a02:8084:0:3000:a807:e530:a7d4:7b87> has joined #yocto15:54
Glenn__These are one-off changes . . . I'm not too worried about uncommitted changes at this point. Just trying to quickly iterate on the patch without having my own git branch/repository. Just looking to patch on top of an existing one. Guess my Git-fu isn't as advanced as yours ;-)15:54
paulgwell, no time to learn like the present.  :)15:55
paulgonce you have things applied, you can poke at the chunks with "rebase -i"15:55
paulgwant to scan over the last 10 patches and poke at some of them?15:56
paulggit rebase -i HEAD~1015:56
paulg<follow rebase builtin instructions, replace "pick" with "e" for  stuff you want to poke at>15:56
paulggit add -u15:57
paulggit commit --amend15:57
paulggit rebase --continue15:57
paulgthat is basically it.15:57
paulgonce you get comfortable with stuff like that, you get to play with cool stuff like "git add --patch" --- which allows you to stage and commit select chunks of unstaged changes.15:58
paulgyou'll never go back to quilt.15:59
Glenn__Yes, but wouldn't this be done outside the context of the devshell?  I can do all this with my own git cloned kernel sources. I assume I'd have to modify the kernel recipe to use external sources (or pull from my private repo which likely would reside locally).15:59
paulgcan do git operations inside or outside the devshell.15:59
*** mago_ is now known as mago|off15:59
Glenn__But my git operations would disappear once I do a "cleansstate" or "cleanall" right?16:00
Glenn__Unless I was using my own repo and point the Yocto recipe at it.16:01
*** tomz <tomz!trz@nat/intel/x-eiyiwcajwzovwsqe> has joined #yocto16:01
paulgyeah, you can either use your own repo, or once you are happy with your patches, format-patch them back out and have them dynamically git-am'd by yocto on each new clean build.16:02
bluelightningFWIW, this is why I've been pushing to get devtool / externalsrc working well for the kernel16:02
paulge.g. to capture your last 10 changes in a quilt like fashion...16:02
paulggit format-patch -o mydir HEAD~10..HEAD16:03
paulgcd mydir16:03
paulgls -1 |grep -v series > series16:03
zeddiibetter to learn the fundamentals .. than hack with a wrapper script.16:03
paulg+116:03
paulganyone who spends even a fraction of their day being a patch monkey would be well served getting comfortable with rebase/format-patch etc.16:04
*** belen2 <belen2!~Adium@192.198.151.43> has quit IRC16:05
Glenn__Okay . . . still not a Git guru . . . much to learn. For some reason at the devshell prompt Git says I'm in the middle of a rebase operation. I can't seem to complete it with git rebase --continue. Is this expected?16:05
lpappdepends on the exact case, what you did, what is in there, why exactly git cannot complete it, etc.16:06
lpapptry to check git diff16:06
bluelightningzeddii: which wrapper script do you mean?16:06
zeddiiyours :)16:06
*** belen <belen!Adium@nat/intel/x-qtdayxeeeueehadc> has joined #yocto16:06
zeddiiand anyone elses. I'm just having fun with you :)16:07
Glenn__I did nothing more than "bitbake my-linux-kernel -c devshell".16:07
*** lamego <lamego!~lamego@134.134.139.74> has quit IRC16:07
paulgGlenn__, what you are seeing is the build system trying to help limp along your raw patch that failed to apply IIRC.16:07
Glenn__No, that patches apply cleanly. It's the module build that fails.16:08
paulgshow me exactly what "git status" shows in the devshell then, since I'm not sure what you are seeing.16:08
Glenn__So I did a bitbake cleansstate followed by bitbake devshell.16:08
bluelightningzeddii: it doesn't wrap this part of things at all though, once the tree is set up - the rest is up to you and git...16:08
paulgpastebin if it is a sea of crap....16:08
Glenn__On branch linux-3.16.y You are currently rebasing.   (all conflicts fixed: run "git rebase --continue")16:09
zeddiibluelightning: I did try some early versions you posted. I'll revisit. Like I said, I'm just having fun yanking random chains :)16:10
zeddiiGlenn__, what does git status report when you drop into that devshell ?16:10
Glenn__I just showed you: On branch linux-3.16.y You are currently rebasing.   (all conflicts fixed: run "git rebase --continue")  nothing to commit, working directory clean16:11
paulgodd.16:11
Glenn__Yes, truly.16:11
paulgand you tried to continue and that failed?16:11
paulgGlenn__, what is output of  "ls .git/rebase-*'16:11
Glenn__git rebase --continue Stray /home/gschmott/Projects/yocto/bbb-a2b-distro/build/tmp/work/beaglebone-poky-linux-gnueabi/linux-yocto-botic/3.16.1+gitAUTOINC+9a35988df6-r1/linux/.git/rebase-apply directory found. Use "git am --abort" to remove it.16:11
*** lamego <lamego!~lamego@134.134.139.74> has joined #yocto16:12
zeddiisome patches, mostly if they don't have commit headers, have parts dumped in there to help fix and resolve. I wonder if when the queue is run that some last bits are left dangling.16:12
Glenn__I did the git am --abort.16:12
paulgyes, that should be fine, if there was some poo inadvertently left behind by something.16:12
Glenn__It cleaned the directory. But I suspect it will re-appear after cleansstate/cleanall16:13
* zeddii nods. but I'd like to reproduce that here.16:13
* paulg checks a local build, but suspects status will be clean.16:13
zeddiiGlenn__, let me try a couple of local patches. For now, if you do that git am --abort, you should be good to go with more git operations.16:14
Glenn__okay . .. good to know. Thanks.16:14
*** tsramos <tsramos!~tsramos@134.134.137.71> has joined #yocto16:17
Glenn__Just confirmed it happens every time for me . . . my dumb luck. Guess I'll just have to git am --abort every time. Likely I'll have to redirect my recipe to use my own kernel repo outside the yocto 'work' directory. Seems like that's the preferred workflow for making kernel changes.16:17
zeddiiGlenn__, that would be a bug. I'll try and reproduce it here.16:17
Glenn__I'm on daisy (1.6, right?) if it helps16:18
zeddiito be clear, you can just quilt init and manage fixes on top of the git branches, but you still need to export them to your later and drop them in the SRC_URI to be applied later.16:19
zeddiiwhich is the same if the entire queue was pushed with quilt.16:19
Glenn__Just devshell and "quilt init". How does it know which patches were applied to the kernel. I see the ".meta" directory has a lot of that info.16:20
zeddiiI was thinking of your own additions.16:20
zeddiiso yah, it doesn't build a series for quilt, because the branches may not be pure patches, they may be merges, etc.16:21
zeddiithere was an intermediate step from quilt -> guilt -> git for managing the queues. but guilt has the same issues with everything needing to be a particular type of patch.16:21
Glenn__okay. well my additions are now buried in the .meta directory. I was hoping I could somehow point quilt at those and re-create the ".pc" file that quilt appears to be parsing.16:21
zeddiithat's what I used to do with guilt, and eventually it catches flames. I have the scars to prove it :)16:22
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC16:22
zeddiiGlenn__, but out of curiosity. I bet I could cobble something like that together again. I'll poke at that idea.16:23
Glenn__Sounds like the path forward is to develop patches in your own external kernel repo and just point Yocto at it until your recipe is working and then redirect the SRC_URI to point to a non-local repo.16:24
zeddiiI do all my work with a flow not unlike that. since doing anything serious with the patches, needs the full history and git-foo.16:24
Glenn__That would be nice enough for me . . . if you did get something working it would save me some time. Can I assume quilt will continue to work with non-kernel recipes in the future for doing patches?16:25
zeddiiyep. although there is a git patch mechanism as part of oe-core, so I suppose some might switch.16:25
* zeddii goes to hack on that idea while eating lunch!16:26
Glenn__After all . . . GIT still is not universal . . . who is to say somebody might try to store their kernel in SVN ;-)16:26
zeddiihah. I have all the horror stories of svn, cvs, clearcase and mecurial, all with kernels shoved into them :)16:27
Glenn__I'm sure . . . sometime corporate policy pushes version control into strange (dark) corners.16:28
-YoctoAutoBuilder- build #287 of nightly-multilib is complete: Failure [failed BuildImages_4] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/28716:30
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has quit IRC16:30
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC16:30
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto16:33
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC16:37
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto16:38
*** armpit <armpit!~akuster@2601:c:a700:3ba7:54d9:5aca:52b:ad71> has quit IRC16:40
*** ciprian-barbu <ciprian-barbu!~ciprian@linaro/ciprian-barbu> has quit IRC16:41
-YoctoAutoBuilder- build #285 of nightly-qa-systemd is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-systemd/builds/28516:43
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has joined #yocto16:44
*** AlexG <AlexG!86bfdc48@gateway/web/freenode/ip.134.191.220.72> has joined #yocto16:44
AlexGhalstead: ping16:45
*** AlexG is now known as Guest4347516:45
*** Guest43475 is now known as alexg____16:45
*** lpapp <lpapp!~lpapp@kde/lpapp> has left #yocto16:53
*** belen2 <belen2!~Adium@192.198.151.43> has joined #yocto16:57
*** pidge <pidge!~pidge@2a02:8084:0:3000:a807:e530:a7d4:7b87> has quit IRC16:57
*** belen <belen!Adium@nat/intel/x-qtdayxeeeueehadc> has quit IRC16:57
*** dvhart <dvhart!dvhart@nat/intel/x-blgruqahqtshukgt> has quit IRC17:00
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC17:02
*** behanw <behanw!~behanw@2001:470:b26c:0:b4f3:6b9e:e734:bc97> has quit IRC17:05
drixback on my /etc/network/interfaces file issues. I can see the file overriden, but I'm not able to get the network working properly. I'm using systemd and I can see that networking.target is marked as dead. Does anyone got this issue ?17:08
*** moto-timo <moto-timo!~timo@72.29.171.20> has quit IRC17:08
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC17:09
*** sarahsharp <sarahsharp!~sarah@134.134.139.72> has joined #yocto17:11
*** alexg____ <alexg____!86bfdc48@gateway/web/freenode/ip.134.191.220.72> has quit IRC17:13
*** zerus_ <zerus_!~epetmab@81-229-90-163-no67.tbcn.telia.com> has joined #yocto17:13
*** moto-timo <moto-timo!~timo@72.29.171.20> has joined #yocto17:14
*** behanw <behanw!~behanw@2001:470:b26c:0:b1bd:4527:2e33:bc8a> has joined #yocto17:15
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto17:18
drixI'm using the intel-core2-32 machine definition + the interfaces file override. That's it17:20
-YoctoAutoBuilder- build #279 of nightly-arm-lsb is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm-lsb/builds/27917:26
*** drix <drix!c09d0a64@gateway/web/freenode/ip.192.157.10.100> has quit IRC17:26
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC17:28
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto17:32
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto17:34
*** paulg_ <paulg_!~paulg@72.1.195.9> has joined #yocto17:34
*** sona <sona!4e52767c@gateway/web/freenode/ip.78.82.118.124> has quit IRC17:37
*** ionte_ <ionte_!uid48103@gateway/web/irccloud.com/x-ltbszcruvxstjuyp> has quit IRC17:40
*** dmoseley1 <dmoseley1!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC17:46
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto17:48
*** lamego <lamego!~lamego@134.134.139.74> has quit IRC17:49
-YoctoAutoBuilder- build #288 of nightly-x86 is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/28817:50
*** jbrianceau is now known as jbrianceau_away17:52
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC18:02
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto18:02
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC18:04
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto18:05
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC18:15
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has quit IRC18:15
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC18:18
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto18:18
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC18:20
*** AndersD <AndersD!~anders@2.71.103.47.mobile.tre.se> has joined #yocto18:20
*** dvhart <dvhart!dvhart@nat/intel/x-xhqmmrjsrdaftpnz> has joined #yocto18:21
*** dvhart <dvhart!dvhart@nat/intel/x-xhqmmrjsrdaftpnz> has quit IRC18:25
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has joined #yocto18:26
*** madisox <madisox!~madison@64-71-1-114.static.wiline.com> has joined #yocto18:32
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC18:33
*** belen2 <belen2!~Adium@192.198.151.43> has quit IRC18:34
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto18:37
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-lrciulbxahhgyeto> has quit IRC18:42
*** madisox <madisox!~madison@64-71-1-114.static.wiline.com> has quit IRC18:47
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto19:02
*** sarahsharp <sarahsharp!~sarah@134.134.139.72> has quit IRC19:05
*** sameo <sameo!samuel@nat/intel/x-hzzsrgmsiuhjtgwt> has quit IRC19:07
*** armpit <armpit!~akuster@64.2.3.194.ptr.us.xo.net> has joined #yocto19:17
*** benjamirc <benjamirc!~besquive@134.134.139.74> has joined #yocto19:18
*** lamego <lamego!~lamego@134.134.139.74> has joined #yocto19:20
-YoctoAutoBuilder- build #288 of nightly-ppc is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/28819:26
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto19:27
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC19:34
*** benjamirc <benjamirc!~besquive@134.134.139.74> has quit IRC19:35
-YoctoAutoBuilder- build #10 of nightly-world-lsb is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world-lsb/builds/1019:42
*** fitzsim <fitzsim!~user@2001:420:284a:1300:6e0b:84ff:fe09:4e9f> has joined #yocto19:46
*** benjamirc <benjamirc!~besquive@134.134.139.76> has joined #yocto19:52
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto19:55
-YoctoAutoBuilder- build #290 of nightly-mips is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/29019:55
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-pfyvgeirwdzjhyci> has quit IRC19:59
*** T0mW <T0mW!~Tom@70.15.161.110.res-cmts.t132.ptd.net> has joined #yocto20:00
T0mWI need to version my builds and have that version number appear in a file within the image.  The only way I can figure to do this is to use a Makefile, modify a recipe and a file, then launch 'bitbake <my-image-name'.20:02
T0mWIs there already a built-in mechanism to do this in Yocto?20:02
kergothyou could include your version in the DISTRO_VERSION, which already gets put in the rootfs, or you could just add a shell command to ROOTFS_POSTPROCESS_COMMAND if you dont mind the file being non-package-controlled20:03
T0mWI suppose, 'make release' for deployment and 'make test' for development.20:03
T0mWI think that the make process is the best bet20:04
kergothyou could just set a var in auto.conf from the shell, or use an env var with BB_ENV_EXTRAWHITE rather than modifying a recipe on demand20:04
*** benjamirc <benjamirc!~besquive@134.134.139.76> has quit IRC20:04
T0mWyeah, and keep a hidden file with the last deployment release number.20:05
T0mWmaybe not hidden, but you get the idea20:05
*** dorileo <dorileo!~dorileo@134.191.220.74> has joined #yocto20:05
dorileoAndersD: ping20:06
T0mWenv var is interesting, I'll check that out, thanks Ken20:06
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC20:06
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto20:06
kergothif that was a name, it's not correct. if it's a nick reference, it's a typo :)20:07
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.72> has quit IRC20:07
T0mWkergoth: oops20:07
*** bottazzini <bottazzini!~realBigfo@134.191.220.72> has joined #yocto20:07
*** sjolley <sjolley!sjolley@nat/intel/x-pcfxqwmaztefiydk> has quit IRC20:08
T0mWkergoth: sorry Chris20:08
*** sarahsharp <sarahsharp!sarah@nat/intel/x-xdtgmjakhovccesm> has joined #yocto20:08
T0mWheh20:08
kergothnp20:08
AndersDdorileo, ping20:09
dorileoAndersD: I saw your comment on bruno's patch "systemd: split modules into packages", do you mean you want to add PACKAGECONFIG just for the "new options"? and leave the old default config not as a PACKAGECONFIG opt?20:09
*** lamego <lamego!~lamego@134.134.139.74> has quit IRC20:10
dorileootavio: have you seen the bruno's patch last version?20:11
dorileoI mean the last version of bruno's patch20:11
AndersDSorry if I wasn't being clear... No, I'm certainly for creating PACKAGECONFIG[xxx]="..." for both new and old features.20:11
otaviodorileo:  I didn't review it yet20:12
AndersDWhat I'm against is adding lots of things to DISTRO_FEATURES.20:12
dorileootavio: ok, no problem...20:12
*** ant_home <ant_home!~ant__@host2-44-dynamic.54-79-r.retail.telecomitalia.it> has joined #yocto20:12
dorileoAndersD: ok, but, what if I want a distro with just the very minimal of systemd?20:12
dorileoAndersD: how can we change it to make it possible?20:13
AndersDWhen you enable the different PACKAGECONFIGS, using PACKAGECONFIG += "xxx yyy" you should make sure that you mimick the existing configuration.20:13
AndersDOnly use @{bb.contains("DISTRO_FEATURES",....) for /big/ things, most likely things that already are DISTRO_FEATURES.20:14
*** manuel_ <manuel_!~manuel@209.6.175.242> has quit IRC20:14
AndersDIf I want to have a different set of PACKAGECONFIGS enabled in my own distro, I add a bbappend to systemd, settig PCAKAGECONFIG="..." to whichever options I want to have enabled.20:15
dorileoAndersD: so, with that we should for example add PACKAGECONFIG_pn-system = "" to distros for example, is that what you mean?20:15
dorileoactually PACKAGECONFIG_systemd = "" etc20:16
dorileoAndersD: is that right?20:16
AndersDNo, keep a PACKAGECONFIG="..." in the systemd recipe that's more or less equal to what it is today.20:16
*** lamego <lamego!~lamego@134.134.139.74> has joined #yocto20:17
AndersDIf we want to change this in our own distros, then yes, either add PACKAGECONFIG_pn-systemd in your distro.conf, or add a bbappend in your distro layer.20:17
dorileoAndersD: ok, I agree with that, and for the new stuffs we do the PACKAGECONFIG stuff on distro side, right?20:17
AndersDYes, if you want it enabled. Sure, there might be some new features that we want to enable per default, but such changes should be discussed on the mailing list.20:18
dorileoAndersD: looks fair to me...20:18
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto20:19
AndersDSo in essence, for most of the new features, add the PACKAGECONFIG[feature] definitions to the systemd recipe, but do not activate them.20:19
dorileoright20:19
AndersDGood! With that change, I think we'll be ready for a merge, or at least /very/ close to it.20:19
dorileoAndersD: nice, thanks for clarifying and reviewing....20:20
AndersDAnd I look forward to that. (I want this split in my own builds...)20:20
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC20:20
*** kw01f <kw01f!~kw01f@x4d0478c1.dyn.telefonica.de> has quit IRC20:25
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC20:25
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto20:26
*** ][Sno][ <][Sno][!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto20:30
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has quit IRC20:30
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-wbpmqkpfybxctyfe> has joined #yocto20:32
*** AndersD <AndersD!~anders@2.71.103.47.mobile.tre.se> has quit IRC20:32
*** sjolley <sjolley!sjolley@nat/intel/x-oiuvevnjhrvzxzpe> has joined #yocto20:34
*** sighack <sighack!~kshitij@106.51.242.96> has joined #yocto20:34
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has quit IRC20:35
*** sighack <sighack!~kshitij@106.51.242.96> has left #yocto20:36
*** Pixionus <Pixionus!~Pixionus@unaffiliated/pixionus> has quit IRC20:37
*** Pixionus <Pixionus!~Pixionus@unaffiliated/pixionus> has joined #yocto20:40
*** benjamirc <benjamirc!besquive@nat/intel/x-hynzockasmfpucco> has joined #yocto20:41
*** pidge <pidge!~pidge@2a02:8084:0:3000:a807:e530:a7d4:7b87> has joined #yocto20:43
*** nighty^ <nighty^!~nighty@hokuriku.rural-networks.com> has quit IRC20:43
*** ant_home <ant_home!~ant__@host2-44-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC20:46
*** ant_home <ant_home!~ant__@host2-44-dynamic.54-79-r.retail.telecomitalia.it> has joined #yocto20:47
*** berton <berton!~fabio@201.22.227.56> has joined #yocto20:49
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:52
*** belen <belen!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto20:52
*** berton <berton!~fabio@201.22.227.56> has quit IRC20:56
*** pohly <pohly!~pohly@p57A56F69.dip0.t-ipconnect.de> has quit IRC21:01
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC21:04
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has quit IRC21:09
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto21:17
*** benjamirc <benjamirc!besquive@nat/intel/x-hynzockasmfpucco> has quit IRC21:21
*** benjamirc <benjamirc!~besquive@134.134.139.76> has joined #yocto21:38
*** Levi1 <Levi1!~vlevidas@134.134.137.75> has quit IRC21:39
*** tsramos <tsramos!~tsramos@134.134.137.71> has quit IRC21:48
*** tsramos <tsramos!tsramos@nat/intel/x-ikjkcjzcazodqswv> has joined #yocto21:49
*** agust <agust!~agust@pD9E2F8F4.dip0.t-ipconnect.de> has quit IRC21:51
*** tsramos <tsramos!tsramos@nat/intel/x-ikjkcjzcazodqswv> has quit IRC21:53
-YoctoAutoBuilder- build #67 of eclipse-plugin-luna is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/eclipse-plugin-luna/builds/6721:54
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC21:59
*** dvhart <dvhart!dvhart@nat/intel/x-pzkyzcfcxhzeonez> has joined #yocto22:00
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC22:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto22:01
*** adelcast <adelcast!~adelcast@130.164.62.82> has quit IRC22:02
*** adelcast <adelcast!~adelcast@130.164.62.82> has joined #yocto22:04
*** paulg_ <paulg_!~paulg@72.1.195.9> has quit IRC22:04
*** dvhart <dvhart!dvhart@nat/intel/x-pzkyzcfcxhzeonez> has quit IRC22:04
khem`RP: the strip failure is coming from gcc-cross22:05
khem`RP: gcc-cross/4.8.4-r0/temp/log.do_populate_sysroot.7211:ERROR: runstrip: ''strip' --remove-section=.comment --remove-section=.note --strip-unneeded --remove-section=.pdr '/home/ubuntu/work/daisy/build-pacexi3v2/tmp/work/mips32el-rdk-linux/gcc-cross/4.8.4-r0/sysroot-destdir/home/ubuntu/work/daisy/build-pacexi3v2/tmp/sysroots/x86_64-linux/usr/include/gcc-build-internal-mips32el-rdk-linux/mipsel-rdk-linux/libgcc/libgcc_s.so.1'' strip command failed22:05
khem`the reason is that host version of strip is trying to run over target ( mips ) binaries22:06
khem`this is that hack of stashing the contents from one recipe to be retrieved as part of another recipe thing22:06
*** dvhart <dvhart!dvhart@nat/intel/x-voenzzzqrptqwuir> has joined #yocto22:06
*** benjamirc <benjamirc!~besquive@134.134.139.76> has quit IRC22:07
*** MiskaX <MiskaX!~jussi@rankki.sonarnerd.net> has joined #yocto22:08
*** Glenn__ <Glenn__!614ebaea@gateway/web/freenode/ip.97.78.186.234> has quit IRC22:16
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC22:17
*** dvhart <dvhart!dvhart@nat/intel/x-voenzzzqrptqwuir> has quit IRC22:21
*** dvhart <dvhart!dvhart@nat/intel/x-vloaovgktfbcvedq> has joined #yocto22:21
*** darkspike_2 <darkspike_2!~darkspike@217.110.68.82> has joined #yocto22:25
*** DarkKnight <DarkKnight!~quassel@HSI-KBW-046-005-198-236.hsi8.kabel-badenwuerttemberg.de> has quit IRC22:26
-YoctoAutoBuilder- build #287 of nightly-qa-skeleton is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-skeleton/builds/28722:27
*** ddalex1 <ddalex1!~ddalex@83.217.123.106> has joined #yocto22:27
*** stefans__ <stefans__!~stefans@192.198.151.43> has joined #yocto22:27
*** kscherer_ <kscherer_!~kscherer@128.224.252.2> has joined #yocto22:27
*** Saur1 <Saur1!pkj@nat/axis/x-rfssuyqzclyncwqx> has joined #yocto22:28
*** Squt <Squt!~sputnick@quassel/developer/sput> has joined #yocto22:28
*** sri <sri!~sri@li160-162.members.linode.com> has joined #yocto22:29
*** Aurele__ <Aurele__!~aurele@srvmail.castel.fr> has joined #yocto22:29
*** sri is now known as Guest5058922:29
*** darkspike <darkspike!~darkspike@217.110.68.82> has quit IRC22:29
*** ddalex <ddalex!~ddalex@83.217.123.106> has quit IRC22:29
*** darkspike_2 is now known as darkspike22:29
*** Saur <Saur!pkj@nat/axis/x-fpuzxjxoqkfiahgl> has quit IRC22:30
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC22:30
*** Sput <Sput!~sputnick@quassel/developer/sput> has quit IRC22:30
*** stefans_ <stefans_!~stefans@192.198.151.44> has quit IRC22:30
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC22:30
*** el_robin <el_robin!~el_robin@195-154-117-220.rev.poneytelecom.eu> has quit IRC22:30
*** sri_ <sri_!~sri@li160-162.members.linode.com> has quit IRC22:30
*** smo <smo!canuck@me.wantsmo.com> has quit IRC22:30
*** smo <smo!canuck@me.wantsmo.com> has joined #yocto22:30
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has quit IRC22:30
*** el_robin <el_robin!~el_robin@195-154-117-220.rev.poneytelecom.eu> has joined #yocto22:30
*** falstaff <falstaff!~quassel@195-226-23-137.pool.cyberlink.ch> has joined #yocto22:31
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC22:33
*** roric__ <roric__!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has joined #yocto22:38
*** dvhart <dvhart!dvhart@nat/intel/x-vloaovgktfbcvedq> has quit IRC22:41
*** lamego <lamego!~lamego@134.134.139.74> has quit IRC22:44
*** dvhart <dvhart!dvhart@nat/intel/x-tfijlrluvfwviirc> has joined #yocto22:46
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-qfrovuwplpnmmubw> has quit IRC22:46
*** dvhart <dvhart!dvhart@nat/intel/x-tfijlrluvfwviirc> has quit IRC22:48
*** roric__ <roric__!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has quit IRC22:51
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto22:52
Marexzeddii: pingii ?22:53
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC22:55
*** paulg_ <paulg_!~paulg@71-19-175-186.dedicated.allstream.net> has joined #yocto23:00
*** dvhart <dvhart!dvhart@nat/intel/x-xbohvmvifiglvawf> has joined #yocto23:01
*** roric__ <roric__!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has joined #yocto23:01
*** ant_home <ant_home!~ant__@host2-44-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC23:06
-YoctoAutoBuilder- build #11 of nightly-world-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world-lsb/builds/1123:12
*** dvhart <dvhart!dvhart@nat/intel/x-xbohvmvifiglvawf> has quit IRC23:14
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC23:18
-YoctoAutoBuilder- build #289 of nightly-fsl-ppc-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc-lsb/builds/28923:20
-YoctoAutoBuilder- build #283 of nightly-ipk is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ipk/builds/28323:27
*** sarahsharp <sarahsharp!sarah@nat/intel/x-xdtgmjakhovccesm> has quit IRC23:32
*** dvhart <dvhart!dvhart@nat/intel/x-wwaqfvcyhtlqukbg> has joined #yocto23:35
-YoctoAutoBuilder- build #291 of nightly-x86-64-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64-lsb/builds/29123:37
*** dvhart <dvhart!dvhart@nat/intel/x-wwaqfvcyhtlqukbg> has quit IRC23:37
*** sjolley <sjolley!sjolley@nat/intel/x-oiuvevnjhrvzxzpe> has quit IRC23:42
*** dlerner <dlerner!~dlerner@99-16-243-235.lightspeed.mrgvil.sbcglobal.net> has joined #yocto23:46
*** roric__ <roric__!~roric@h196n19-vrr-a31.ias.bredband.telia.com> has quit IRC23:49
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC23:52

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