Tuesday, 2015-04-21

*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC00:04
*** behanw <behanw!~behanw@167.220.23.56> has quit IRC00:06
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC00:18
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto00:31
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto00:36
*** paulg_ <paulg_!~paulg@72.1.195.9> has quit IRC00:43
*** sarahsharp <sarahsharp!~sarah@192.55.54.40> has joined #yocto00:47
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC01:04
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto01:04
*** sarahsharp <sarahsharp!~sarah@192.55.54.40> has quit IRC01:06
*** aehs29 <aehs29!aehernan@nat/intel/x-bztibpgckhchdipv> has left #yocto01:13
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has joined #yocto01:21
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC01:23
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has joined #yocto01:23
-YoctoAutoBuilder- build #267 of nightly-ppc-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc-lsb/builds/26701:30
-YoctoAutoBuilder- build #270 of nightly-multilib is complete: Failure [failed BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/27001:30
chankithello..my bitbake process shows warning  rdepends on libgl-mesa. I then added libgl-mesa to DEPENDS variable in my recipe but now it says nothing provides libgl-mesa...any idea?01:34
khem`add it to RDEPENDS_${PN} = "libgl-mesa"01:41
chankitnever mind..I added them to RDEPENDS_${PN} instead and all is well01:41
chankitI wonder why can't I add it to DEPENDS variable?01:41
kergothDEPENDS is for recipes, not binary packages01:42
kergothRDEPENDS is runtime, binary packages01:42
khem`DEPENDS is build time01:42
khem`RDEPENDS is for runtime01:42
khem`so DEPENDS = "recipe-name" and RDEPENDS = "ipk name"01:42
khem`kergoth: I build sstate using externalsrc and then try to use it elsewhere01:43
khem`and it invalidates it because ${S} changed01:43
khem`any remedies01:43
kergothexternalsrc explicitly disables use of sstate. see the bb.build.deltask()01:43
khem`hmm01:44
kergothbut yes, you could use vardepsexclude on all the tasks using it, or globally add to BB_HASHBASE_WHITELIST, but that's across everything, not per recipe, so would invalidate all current checksums01:44
kergothprobably don't want to do the latter01:44
kergothbut yeah, unless you kill the bits disabling sstate, it won't do much anyway01:44
khem`so big issue for folks who has the flat tree dev01:45
khem`like android01:45
khem`all tooling is around that kind of development01:45
khem`for platform work01:45
kergothyeah. i've often thought it'd be fun to try a complete oe-core build with everything using local git sources and versions extracted from the git repos01:46
*** Aethenelle <Aethenelle!~Aethenell@199.15.128.78> has quit IRC01:46
khem`kergoth: yes01:47
chankitkergoth: khem`: So what I understand now is DEPENDS is recipe dependency, and RDEPENDS is runtime dependency. Is that right?01:48
khem`chankit: yes01:48
khem`kergoth: http://bazel.io/01:49
khem`have you seen it01:49
kergothnope01:49
kergothoh i remember seeing it linked on hacker news or something01:49
kergothdidn't look very closely yet01:49
khem`it looks promising01:49
khem`build from source01:50
khem`the kind of thing we are talking01:50
chankitkhem`: So is it true that there are binary packages that are not provided by any recipe?01:50
kergothchankit: that doesn't really make sense.01:51
khem`chankit: yes e.g. if they are empty then packager will optimize them out01:51
chankitkergoth: I'm afraid I'm just confused here.01:51
khem`so you might have to add ALLOW_EMPTY_<ipk>01:51
kergothevery recipe emits multiple binary packages01:52
kergoththe main package might not be emitted if the recipe doesn't install any files, as khem points out01:52
khem`kergoth: I have been looking at gradle too01:52
khem`and cmake01:52
khem`as alternatives01:53
kergothI'd like to play with something whose primary output is the binary package(s). local sources -> packages, deal with both fetching and feed/image construction as separate steps01:53
kergothconstruct sysroots from the packages01:54
kergothno separate task level scheduling and task acceleration via sstate01:54
kergothjust as an experiment to see how it goes01:54
khem`kergoth: BUILD_IMAGES_FROM_FEEDS01:55
khem`you can stay in bb world01:55
chankitkergoth: khem`: I think I'm starting to get some sense here....so suppose that a recipe foo spawns binary packages spam and egg, and another recipe bar has a runtime dependency on spam, then I should do RDEPENDS_{"bar"}=spam ?01:55
kergothRDEPENDS_${PN} += "spam", yes01:56
kergothbut 90% of the time the runtime dependency is due to shared library linking, and those you don't have to do manually. if A links against a library in B, A will automatically rdepend on B01:56
chankitso rdepends variable can have libraries, binaries and what else?01:59
khem`kergoth: BUILD_IMAGES_FROM_FEEDS is something we can use ?01:59
khem`also should accelarate01:59
khem`right ?01:59
kergothchankit: again, doens't really make sense. rdepends lists binary packages.01:59
kergothchankit: what gets put in those packages is up to the recipe01:59
kergoththe recipe that created them, that is01:59
kergothkhem`: i think so, never actually tried it myself. would be interesting to play with01:59
kergothmeh, meta-sourcery has problems with multilibs again, no preferences are specified for the multilib variants.. maybe i need some ${MLPREFIX}'s02:00
kergotheither that or i need to stop handling the preferences this way02:01
khem`multilib should die02:01
chankitkergoth: let me try again...erm...so rdepends can only contain packages?02:01
kergothas we said earlier, DPEENDS contains build time dependencies, which are recipes, and RDEPENDS contains runtime dependencies, which are packages02:01
chankitkergoth: ok...got it..thanks02:03
khem`kergoth: I wonder how will BUILD_IMAGES_FROM_FEEDS interact with sstate02:14
khem`is it a addition02:14
*** kscherer <kscherer!~kscherer@128.224.252.2> has quit IRC02:24
*** kscherer <kscherer!~kscherer@128.224.252.2> has joined #yocto02:25
*** zeddii <zeddii!~ddez@128.224.252.2> has quit IRC02:25
*** zeddii <zeddii!~ddez@128.224.252.2> has joined #yocto02:26
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto02:28
*** evanp <evanp!~evan@192.55.54.40> has joined #yocto02:52
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC03:03
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto03:13
*** behanw <behanw!~behanw@12.10.73.130> has joined #yocto03:24
*** manuel__ <manuel__!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC03:41
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto03:44
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto04:23
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC04:24
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto04:33
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC04:36
*** agust <agust!~agust@p4FDE6F74.dip0.t-ipconnect.de> has joined #yocto04:58
*** aehs29 <aehs29!~aehernan@134.134.139.76> has joined #yocto05:03
*** aehs29 <aehs29!~aehernan@134.134.139.76> has left #yocto05:06
*** smustafa <smustafa!~mustafa@39.42.58.142> has joined #yocto05:13
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto05:16
-YoctoAutoBuilder- build #293 of nightly is complete: Failure [failed BuildImages_9] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly/builds/29305:18
*** behanw <behanw!~behanw@12.10.73.130> has quit IRC05:32
*** behanw <behanw!~behanw@12.10.73.130> has joined #yocto05:32
*** sjolley <sjolley!sjolley@nat/intel/x-iifbmopcgmspjakb> has joined #yocto05:52
*** silviof <silviof!~silviof@unaffiliated/silviof> has quit IRC05:57
*** nicktick1 <nicktick1!~john@113.240.206.185> has joined #yocto06:01
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC06:02
*** silviof <silviof!~silviof@unaffiliated/silviof> has joined #yocto06:06
*** aehs29 <aehs29!aehernan@nat/intel/x-mdvcffolysybtcma> has joined #yocto06:08
*** aehs29 <aehs29!aehernan@nat/intel/x-mdvcffolysybtcma> has left #yocto06:12
*** wadim_ <wadim_!~egorov@mail.rapiddevelopmentkit.de> has joined #yocto06:14
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has joined #yocto06:15
*** nicktick1 is now known as nicktick06:15
*** e8johan_ <e8johan_!~quassel@83.218.80.242> has joined #yocto06:25
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC06:26
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto06:26
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC06:27
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto06:27
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-ftpachbrtotpdedh> has joined #yocto06:32
*** OutOfNoWhere <OutOfNoWhere!~rpb@199.68.195.102> has quit IRC06:36
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto06:42
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has quit IRC06:45
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto06:52
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has quit IRC07:01
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto07:03
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-zcpptgoezgktviee> has joined #yocto07:05
*** volker_123456 <volker_123456!~quassel@host-188-174-253-51.customer.m-online.net> has quit IRC07:07
*** volker_123456 <volker_123456!~quassel@host-80-81-19-29.customer.m-online.net> has joined #yocto07:09
*** jbrianceau_away is now known as jbrianceau07:11
*** hsychla <hsychla!~hsychla@pd95c9392.dip0.t-ipconnect.de> has joined #yocto07:14
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC07:21
*** behanw <behanw!~behanw@12.10.73.130> has quit IRC07:22
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has joined #yocto07:22
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC07:24
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto07:26
*** Cubi_ <Cubi_!~cubi@b2b-94-79-174-114.unitymedia.biz> has joined #yocto07:28
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC07:32
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has joined #yocto07:40
*** mranostay <mranostay!~mranostay@c-76-105-208-73.hsd1.or.comcast.net> has joined #yocto07:40
*** mranostay <mranostay!~mranostay@c-76-105-208-73.hsd1.or.comcast.net> has quit IRC07:42
*** mranostay <mranostay!~mranostay@pdpc/supporter/active/mranostay> has joined #yocto07:42
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto07:49
*** jku <jku!jku@nat/intel/x-cntwruywdigvbwzi> has joined #yocto07:57
*** rich_b__ <rich_b__!~rich@212.183.140.92> has joined #yocto07:58
*** e8johan_ <e8johan_!~quassel@83.218.80.242> has quit IRC08:13
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto08:17
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto08:17
bluelightningmorning all08:18
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto08:21
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto08:44
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto08:59
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC08:59
*** bluelightning_ is now known as bluelightning08:59
*** _dv_ is now known as dv_09:14
*** nicktick <nicktick!~john@113.240.206.185> has quit IRC09:15
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC09:22
*** DatGizmo <DatGizmo!~mogwai@ip1886d814.dynamic.kabel-deutschland.de> has joined #yocto09:22
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto09:23
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto09:23
diego_rmorning bluelightning09:24
bluelightninghi diego_r09:24
*** tsramos <tsramos!~tsramos@192.55.54.36> has joined #yocto09:28
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto09:28
*** belen <belen!Adium@nat/intel/x-vvjrpyycbkmvkxfi> has joined #yocto09:49
*** ant_work <ant_work!~ant__@host222-188-static.61-79-b.business.telecomitalia.it> has quit IRC09:54
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC09:55
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto10:01
*** belen <belen!Adium@nat/intel/x-vvjrpyycbkmvkxfi> has quit IRC10:07
*** belen <belen!Adium@nat/intel/x-mjubigjlvxhsesky> has joined #yocto10:08
*** belen <belen!Adium@nat/intel/x-mjubigjlvxhsesky> has quit IRC10:14
*** JaMae <JaMae!~martin@ip-86-49-34-37.net.upcbroadband.cz> has joined #yocto10:21
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto10:22
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC10:49
*** belen <belen!Adium@nat/intel/x-clgcodnofhaoypuf> has joined #yocto10:53
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto10:54
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto10:56
lpappis there a simple way to turn make VERBOSE=1 on for some software built by Yocto, e.g. the kernel, or would I need to create a do_compile function for achieving this?10:56
bluelightninglpapp: wouldn't you just pass that via EXTRA_OEMAKE ?10:57
lpappfaor enough, thanks.10:58
lpappfair*10:58
*** belen <belen!Adium@nat/intel/x-clgcodnofhaoypuf> has quit IRC11:00
*** phantoneD <phantoneD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto11:05
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC11:06
lpappbluelightning: something went really wrong... https://paste.kde.org/p9i3d7mgc Can no longer clean.11:31
*** chankit11 <chankit11!~oneam@203.106.195.178> has joined #yocto11:31
lpappand I have not changed anything as far as I am aware. Git diff does not show any output either.11:32
lpappbluelightning: and I am getting that now for any package that I am just trying.11:44
*** ddom <ddom!~ddom@p4FFD869E.dip0.t-ipconnect.de> has joined #yocto11:46
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC11:48
*** belen <belen!Adium@nat/intel/x-lcgcekytuvlbrvhf> has joined #yocto11:48
*** timsche <timsche!~quassel@port-92-192-13-162.dynamic.qsc.de> has joined #yocto11:49
*** neur0Fuzzy <neur0Fuzzy!~neur0Fuzz@p239.net182021249.tokai.or.jp> has quit IRC11:52
*** belen <belen!Adium@nat/intel/x-lcgcekytuvlbrvhf> has quit IRC11:54
*** dshwang <dshwang!~dshwang@134.134.139.76> has quit IRC12:00
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC12:01
*** manuel____ <manuel____!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has joined #yocto12:04
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC12:14
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto12:15
*** smustafa <smustafa!~mustafa@39.42.58.142> has quit IRC12:18
*** bradfa <bradfa!~andrew@173.225.52.242> has quit IRC12:22
*** dshwang <dshwang!~dshwang@192.55.55.37> has joined #yocto12:23
bluelightninglpapp: something must have changed...12:25
lpappyeah, but how can I fix this and what exactly is it about?12:27
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC12:28
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto12:29
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has quit IRC12:38
*** mustafa__ <mustafa__!~mustafa@39.42.58.142> has joined #yocto12:39
acidfuerm, that suck : http://mirror.stshosting.co.uk/mariadb/mariadb-5.5.39/12:40
acidfu404 not found :|12:40
bluelightninglpapp: not sure, haven't seen an error like this before12:43
bluelightningI can see that something is going very wrong with event handling12:43
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has joined #yocto12:47
*** dshwang <dshwang!~dshwang@192.55.55.37> has quit IRC12:51
*** realBigfoot <realBigfoot!~realBigfo@134.191.220.74> has quit IRC13:02
*** melio_cc_ <melio_cc_!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC13:08
*** JaMae is now known as JaMa13:09
*** belen <belen!Adium@nat/intel/x-igruifzefzvfcygf> has joined #yocto13:10
*** bradfa <bradfa!~andrew@173.225.52.242> has joined #yocto13:22
*** belen <belen!Adium@nat/intel/x-igruifzefzvfcygf> has quit IRC13:24
*** manuel____ <manuel____!~manuel@c-24-61-40-209.hsd1.ma.comcast.net> has quit IRC13:35
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.70> has joined #yocto13:42
*** dshwang <dshwang!~dshwang@134.134.139.76> has joined #yocto13:50
*** mrsan_ <mrsan_!~stefan@h217-27-188-82.cust.tyfon.se> has joined #yocto13:52
lpappbluelightning: ok, btw, what is the reason why I cannot find config.gz under the ./tmp/work hierarchy? I thought it was supposed to be part of the generated filesystem? I would like to double check whether my kernel configuration got in with bitbake -c menuconfig virtual/kernel.13:53
mrsan_/home/stefan/yocto/poky/build/tmp/work/armv6-vfp-poky-linux-gnueabi/domoticz/2365-r0/trunk13:53
mrsan_how can i make a directory use right folder for compile, in my case /yocto/poky/build/tmp/work/armv6-vfp-poky-linux-gnueabi/domoticz/2365-r0/domoticz-2365 is used while source is located in13:53
*** Cubi_ <Cubi_!~cubi@b2b-94-79-174-114.unitymedia.biz> has quit IRC13:54
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto13:55
bluelightninglpapp: IIRC config.gz generation is a kernel config option, I assume you don't have that turned on13:58
bluelightninglpapp: but if you want to look at the final .config you can see that in the build directory for the kernel recipe13:59
bluelightningbitbake -e virtual/kernel | grep ^B= will show that13:59
bluelightningmrsan_: set S = "${WORKDIR}/trunk" in the recipe14:00
mrsan_bluelightning: as its own row?14:01
bluelightningmrsan_: yes14:01
mrsan_bluelightning: thx:)14:01
lpappbluelightning: yes, IKCONFIG_PROC, but it is enabled14:04
lpappyet, I cannot find config.gz14:04
lpappperhaps it is automatically created on boot as it is in /proc?14:04
bluelightningoh, right.. yes that's only in /proc at runtime14:04
lpappand so it should not be part of the Yocto directory hierarchy?14:04
bluelightningso I wouldn't expect a config.gz no14:05
lpappthe thing is that my kernel still does not boot14:05
bluelightningbut .config, you will find that14:05
lpappI tried to enable some debug options, but I am not getting more14:05
lpappand I would like to validate somehow that my flashed image comes with those enabled options.14:05
mrsan_1 more question. can i from my bb file set EXTRACONFIG for boost package,so it includes PACKAGECONFIG_pn-boost = "python"14:06
bluelightningmrsan_: you cannot set a variable in one recipe from another if that's what you are asking, no14:08
bluelightningmrsan_: you'll need to set that at the configuration level, i.e. local.conf or a custom distro config14:08
mrsan_bluelightning: thx14:08
lpappbluelightning: hmm, thanks.14:10
lpappbluelightning: what am I supposed to run after bitbake -c menuconfig virtual/kernel?14:12
lpappis it ok to run bitbake linux-foo?14:12
bluelightningyes14:12
lpappstrange14:12
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto14:13
*** SorenHolm <SorenHolm!~quassel@93.165.148.186> has quit IRC14:16
lpappbluelightning: hmm, probably I should remove rm_work14:17
lpappto see that it actually remained the same after bitbake linux-foo?14:17
bluelightningyes, or set RM_WORK_EXCLUDE to exclude that recipe14:18
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC14:19
*** wadim_ <wadim_!~egorov@mail.rapiddevelopmentkit.de> has quit IRC14:21
mrsan_bluelightning: doesnt HOB read the local.con?14:22
mrsan_or is this line wrong?14:22
mrsan_PACKAGECONFIG_pn-boost = "python"14:22
mrsan_*conf14:22
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.102> has quit IRC14:23
bluelightningmrsan_: it should be reading it yes14:24
bluelightningmrsan_: is "python" the only value you want in there, or do you want to add python to the default value? because at the moment that line would be setting it, not adding to it14:25
*** jku <jku!jku@nat/intel/x-cntwruywdigvbwzi> has quit IRC14:25
mrsan_i want to add it14:26
mrsan_but it still doesnt get set14:26
mrsan_i know it should be +=14:26
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC14:28
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto14:28
DatGizmomrsan_: To append it, you need to use PACKAGECONFIG_append_pn-boos. The += only appends a space before the string.14:28
*** nicktick1 <nicktick1!~john@119.39.71.37> has joined #yocto14:29
mrsan_DatGizmo: Doh. thx14:29
DatGizmomrsan_: np14:29
*** challinan <challinan!~chris@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has joined #yocto14:30
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC14:30
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC14:31
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto14:31
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC14:32
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC14:33
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto14:33
*** Aethenelle <Aethenelle!~Aethenell@166.175.62.70> has quit IRC14:33
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto14:34
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC14:34
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has joined #yocto14:36
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has quit IRC14:39
*** nicktick1 <nicktick1!~john@119.39.71.37> has quit IRC14:41
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC14:43
*** manuel____ <manuel____!~manuel@209.6.175.242> has joined #yocto14:43
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC14:44
*** tsramos <tsramos!tsramos@nat/intel/x-aeyhqvnmplbzdbzx> has joined #yocto14:44
*** manuel____ <manuel____!~manuel@209.6.175.242> has quit IRC14:46
*** tsramos <tsramos!tsramos@nat/intel/x-aeyhqvnmplbzdbzx> has quit IRC14:49
*** e8johan <e8johan!~quassel@83.218.80.242> has joined #yocto14:50
*** timsche <timsche!~quassel@port-92-192-13-162.dynamic.qsc.de> has quit IRC14:53
*** aehs29 <aehs29!aehernan@nat/intel/x-yicqlfxrvsgmpjeb> has joined #yocto14:55
*** Sona <Sona!4e527628@gateway/web/freenode/ip.78.82.118.40> has joined #yocto14:55
*** kanavin__ <kanavin__!~ak@192.55.54.40> has quit IRC14:56
sjolleyYPTM:   Ready-Access Number:    8007302996  Access Code:    270575114:56
sjolleyYPTM: Stephen Joined14:56
SonaYPTM: Sona joined, hi14:58
*** kanavin <kanavin!ak@nat/intel/x-fnisoxfnogzeexjj> has joined #yocto14:58
bluelightningYPTM: Paul Eggleton joined15:00
*** STYOON <STYOON!081c9646@gateway/web/freenode/ip.8.28.150.70> has joined #yocto15:02
halsteadYPTM: Michael here.15:02
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto15:03
*** mrsan_ <mrsan_!~stefan@h217-27-188-82.cust.tyfon.se> has quit IRC15:05
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto15:06
*** cristianiorga <cristianiorga!~cristiani@134.134.139.76> has joined #yocto15:07
cristianiorgaYPTM: cristian joined15:07
SonaYPTM: We decided in the OEDAM meeting to create a CVE list to have track of CVE addressed in different branches, I said I could do this ,I have just started, I am still working on it. please have a look at this and let me know what you think.   https://docs.google.com/spreadsheets/d/13o4IPsCQ42aR2CCGzYOHdmpIEHkHUwDWlF4QqgI6emQ/edit#gid=015:08
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto15:08
*** belen1 <belen1!Adium@nat/intel/x-fnhbeqrydnqttgsm> has joined #yocto15:13
*** marquiz <marquiz!~marquiz@134.134.137.71> has quit IRC15:13
*** STYOON <STYOON!081c9646@gateway/web/freenode/ip.8.28.150.70> has quit IRC15:15
*** tsramos <tsramos!tsramos@nat/intel/x-ggbposbqduqgvvgl> has joined #yocto15:15
sjolleyYPTM is done.15:15
*** e8johan <e8johan!~quassel@83.218.80.242> has quit IRC15:17
*** sjolley <sjolley!sjolley@nat/intel/x-iifbmopcgmspjakb> has quit IRC15:19
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC15:27
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has quit IRC15:27
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto15:27
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto15:27
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC15:27
*** Sona <Sona!4e527628@gateway/web/freenode/ip.78.82.118.40> has quit IRC15:28
-YoctoAutoBuilder- build #269 of nightly-qa-systemd is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-systemd/builds/26915:28
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC15:29
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto15:32
*** khem` is now known as khem[away]15:32
*** khem[away] is now known as khem`15:32
*** aehs29 <aehs29!aehernan@nat/intel/x-yicqlfxrvsgmpjeb> has left #yocto15:33
*** khem` is now known as khem[away]15:33
*** khem[away] is now known as khem`15:33
*** khem` is now known as khem[away]15:33
*** khem[away] is now known as khem`15:33
*** khem` is now known as khem[away]15:34
*** khem[away] is now known as khem`15:34
*** khem` is now known as khem[away]15:34
*** khem[away] is now known as khem`15:34
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has joined #yocto15:37
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC15:38
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has joined #yocto15:38
*** hitlin37 <hitlin37!uid16371@gateway/web/irccloud.com/x-ftpachbrtotpdedh> has quit IRC15:42
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto15:43
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC15:46
*** marquiz <marquiz!marquiz@nat/intel/x-vbatignrxqirqbar> has joined #yocto15:48
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto15:48
*** adelcast <adelcast!~adelcast@130.164.62.224> has left #yocto15:50
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto15:51
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC15:56
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has joined #yocto15:58
-YoctoAutoBuilder- build #271 of nightly-multilib is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/27115:59
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC16:01
*** _4urele_ <_4urele_!~aurele@srvmail.castel.fr> has quit IRC16:03
*** behanw <behanw!~behanw@167.220.23.56> has joined #yocto16:05
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto16:08
*** paulg_ <paulg_!~paulg@72.1.195.9> has joined #yocto16:12
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto16:14
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto16:16
*** ddom <ddom!~ddom@p4FFD869E.dip0.t-ipconnect.de> has quit IRC16:19
*** tsramos <tsramos!tsramos@nat/intel/x-ggbposbqduqgvvgl> has quit IRC16:20
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto16:21
*** belen1 <belen1!Adium@nat/intel/x-fnhbeqrydnqttgsm> has quit IRC16:24
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC16:25
*** belen1 <belen1!Adium@nat/intel/x-spoebqarydugcdjw> has joined #yocto16:27
*** tsramos <tsramos!~tsramos@192.55.54.36> has joined #yocto16:27
*** tsramos <tsramos!~tsramos@192.55.54.36> has quit IRC16:31
*** tsramos <tsramos!tsramos@nat/intel/x-kveedbxnbutwuata> has joined #yocto16:31
*** tsramos <tsramos!tsramos@nat/intel/x-kveedbxnbutwuata> has quit IRC16:36
*** panto <panto!~panto@195.97.110.117> has joined #yocto16:39
*** AndersD <AndersD!~anders@212.214.9.162> has joined #yocto16:39
pantohey there16:39
pantogot any idea why pulling meta-oe into a poky yocto build gets me this: "ERROR: ParseError at /home/panto/winstron/poky/layers/meta-oe/recipes-core/packagegroups/packagegroup-basic.bb:12: Could not inherit file classes/bluetooth.bbclass"16:40
JaMayou're mixing incompatible branches16:41
pantook, how to figure out which branches are compatible and what not?16:42
*** AndersD <AndersD!~anders@212.214.9.162> has quit IRC16:44
*** chankit11 <chankit11!~oneam@203.106.195.178> has quit IRC16:44
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has joined #yocto16:45
*** TobSnyder <TobSnyder!~schneider@ip92341b76.dynamic.kabel-deutschland.de> has quit IRC16:46
kergoththe ones that are exactly the same.16:48
kergothmaster with master, daisy with daisy, etc16:48
pantook, let me rephrase that16:50
pantohow do I use recipes from meta-oe in my poky build?16:50
bluelightningpanto: what version of poky are you building with?16:51
pantodizzy16:51
bluelightningok, then you want the dizzy branch of meta-oe to match up with that16:51
pantohmm, ok, let me try that16:51
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC16:52
pantothat did the trick16:52
pantothanks16:52
pantosee, it's the easy stuff that throw you off16:53
bluelightningit's a common mistake and one I can certainly understand16:54
bluelightningFWIW, as of the upcoming release we do have a mechanism that should be able to be used to produce a more obvious error when you're in that situation16:54
pantoI would throw a big fat warning at layers.openembedded.org16:54
bluelightninghmm, that might be a good idea yes16:55
pantoor even a warning in the parse step about mismatching branches16:55
pantodunno, it could help another poor slob that runs into it16:56
bluelightningthe latter is what the mechanism I'm alluding to should enable16:56
pantothe problem is detecting missmathed branches16:59
panto*mismatched16:59
*** aehs29 <aehs29!aehernan@nat/intel/x-hkogieuuhwzpjrhg> has joined #yocto17:02
*** aehs29 <aehs29!aehernan@nat/intel/x-hkogieuuhwzpjrhg> has left #yocto17:02
*** jbrianceau is now known as jbrianceau_away17:08
*** khem` is now known as khem[away]17:14
*** manuel___ <manuel___!~manuel@209.6.175.242> has joined #yocto17:14
*** khem[away] is now known as khem`17:20
*** ddom <ddom!~ddom@ip-37-24-103-185.hsi14.unitymediagroup.de> has joined #yocto17:22
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC17:23
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC17:28
*** fitzsim <fitzsim!~user@2001:420:284a:1300:6e0b:84ff:fe09:4e9f> has joined #yocto17:30
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC17:33
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto17:41
*** Crofton|work <Crofton|work!~balister@pool-108-44-115-55.ronkva.east.verizon.net> has quit IRC17:47
*** Crofton|work <Crofton|work!~balister@pool-108-44-118-46.ronkva.east.verizon.net> has joined #yocto17:49
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto17:54
*** phantoneD <phantoneD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC17:58
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has quit IRC18:03
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC18:05
*** phantoxeD <phantoxeD!destroy@a89-152-21-144.cpe.netcabo.pt> has joined #yocto18:06
lpapphas anything changed in daisy with regards to the ubifs creation?18:06
*** belen1 <belen1!Adium@nat/intel/x-spoebqarydugcdjw> has quit IRC18:07
*** AndersD <AndersD!~anders@213-64-219-84-no126.business.telia.com> has quit IRC18:13
*** ndec <ndec!~ndec@linaro/ndec> has quit IRC18:19
*** manuel___ <manuel___!~manuel@209.6.175.242> has quit IRC18:23
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto18:30
lpappif I remove a package from an image's packagegroup, should bitbake myimage recreate the reduced the image?18:37
lpappor I need to do a bit more cleanup?18:37
*** ndec <ndec!~ndec@linaro/ndec> has joined #yocto18:40
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto18:41
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC18:41
kergothshould rebuild the packagegruop and then rebuild the image18:42
kergothit will, that is, you shoudlnt have to do anything else18:42
lpappthanks18:47
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto18:50
*** lpapp <lpapp!~lpapp@kde/lpapp> has quit IRC18:53
*** lamego <lamego!~jalamego@134.134.139.76> has joined #yocto18:57
*** sjolley <sjolley!sjolley@nat/intel/x-idpsqnhikivbpngm> has joined #yocto19:01
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC19:03
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto19:05
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-zcpptgoezgktviee> has quit IRC19:08
*** JaMa <JaMa!~martin@ip-86-49-34-37.net.upcbroadband.cz> has quit IRC19:11
*** sjolley <sjolley!sjolley@nat/intel/x-idpsqnhikivbpngm> has quit IRC19:18
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC19:19
*** Crofton <Crofton!~balister@pool-108-44-118-46.ronkva.east.verizon.net> has joined #yocto19:22
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC19:26
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has quit IRC19:29
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC19:37
*** sjolley <sjolley!sjolley@nat/intel/x-thcrdbdzlebfifiz> has joined #yocto19:40
*** sjolley <sjolley!sjolley@nat/intel/x-thcrdbdzlebfifiz> has quit IRC19:45
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has quit IRC19:46
*** rich_b__ <rich_b__!~rich@212.183.140.92> has quit IRC19:46
*** patrickz <patrickz!~Thunderbi@212.118.209.82> has joined #yocto19:46
*** tobiash <tobiash!~quassel@mail.bmw-carit.de> has joined #yocto19:47
*** tobiash_ <tobiash_!~quassel@mail.bmw-carit.de> has quit IRC19:47
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto19:48
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has quit IRC19:50
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto19:56
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC19:58
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC20:04
*** sjolley <sjolley!sjolley@nat/intel/x-oxsozgyjtlbpeori> has joined #yocto20:06
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:11
*** sjolley <sjolley!sjolley@nat/intel/x-oxsozgyjtlbpeori> has quit IRC20:12
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto20:13
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto20:17
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC20:20
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC20:21
*** sjolley <sjolley!sjolley@nat/intel/x-xbyxmrbtmkwuwqwj> has joined #yocto20:23
*** sjolley <sjolley!sjolley@nat/intel/x-xbyxmrbtmkwuwqwj> has quit IRC20:27
*** varibull <varibull!~varibull@ta.tainstruments.com> has quit IRC20:29
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto20:29
*** lamego <lamego!~jalamego@134.134.139.76> has quit IRC20:31
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto20:43
*** ant_home <ant_home!~ant__@host220-62-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto20:46
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has joined #yocto21:02
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC21:15
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has joined #yocto21:18
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has joined #yocto21:19
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has quit IRC21:27
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto21:30
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC21:32
*** ant_home <ant_home!~ant__@host220-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC21:32
*** smartin <smartin!~smartin@207.ip-37-59-126.eu> has joined #yocto21:35
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC21:38
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto21:42
*** sjolley <sjolley!sjolley@nat/intel/x-gtnqmrslcgmqboyh> has joined #yocto21:51
*** paulg_ <paulg_!~paulg@72.1.195.9> has quit IRC21:52
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has quit IRC21:54
*** sjolley <sjolley!sjolley@nat/intel/x-gtnqmrslcgmqboyh> has quit IRC21:56
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC22:01
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto22:01
*** SorenHolm <SorenHolm!~quassel@5634f191.rev.stofanet.dk> has quit IRC22:02
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC22:03
*** dmoseley <dmoseley!~dmoseley@cpe-174-96-222-251.carolina.res.rr.com> has joined #yocto22:12
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC22:15
*** agust <agust!~agust@p4FDE6F74.dip0.t-ipconnect.de> has quit IRC22:18
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto22:24
*** sjolley <sjolley!sjolley@nat/intel/x-knmuficlstsaplui> has joined #yocto22:25
*** sjolley <sjolley!sjolley@nat/intel/x-knmuficlstsaplui> has quit IRC22:27
*** nicktick <nicktick!~john@unaffiliated/nicktick> has joined #yocto22:38
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC22:43
*** paulg_ <paulg_!~paulg@71-19-175-186.dedicated.allstream.net> has joined #yocto22:44
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto22:45
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC22:48
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto22:48
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto22:49
*** manuel__ <manuel__!~manuel@209.6.175.242> has joined #yocto22:51
*** fabo <fabo!~fabo@linaro/fabo> has quit IRC22:53
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has quit IRC22:57
*** ddalex1 <ddalex1!~ddalex@154.58.102.3> has quit IRC22:58
*** xulfer <xulfer!~xulfer@2001:41d0:2:5ee0::> has joined #yocto23:00
*** nicktick <nicktick!~john@unaffiliated/nicktick> has quit IRC23:04
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC23:33
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC23:36
*** benjamirc <benjamirc!besquive@nat/intel/x-hgbiixdwnsjkieso> has joined #yocto23:38
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto23:40
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto23:41
*** sjolley1 <sjolley1!sjolley@nat/intel/x-uemfshsyiqggrelm> has joined #yocto23:42
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC23:42
*** fabo <fabo!~fabo@linaro/fabo> has joined #yocto23:49
*** sjolley1 <sjolley1!sjolley@nat/intel/x-uemfshsyiqggrelm> has quit IRC23:50
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto23:52
*** manuel__ <manuel__!~manuel@209.6.175.242> has quit IRC23:58

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