**** BEGIN LOGGING AT Wed May 28 02:59:59 2014 May 28 06:29:52 Hi all...any body is there May 28 06:31:23 whats u May 28 06:31:24 p May 28 06:39:10 p May 28 06:39:11 p May 28 06:39:12 :) May 28 06:40:43 Hi ..i am compiling poky for beaglebone using meta-ti layer and i configured build directory for accroding to that. if i compile linux kernel i am getting error as following web link. http://pastebin.com/kR9U6zbj please any one suggest me to solve this.. May 28 06:41:35 error is pretty self explanatory May 28 06:54:03 can suggest any one please ..... May 28 07:04:20 mornin May 28 07:08:46 elinuxer: bitbake linux-ti-staging, linux-ti-staging doesn't seem to be compatible with beaglebone MACHINE May 28 07:09:14 elinuxer: nvm May 28 07:27:01 good morning May 28 07:50:17 Hi. I added libxerces-c to my image. It works for some set of host/target (x86_64/i586, x86_64/arm) except for i586/arm. For i586 (host)/arm (target), I got an error while do_populate_sdk : "libxerces-c-dev : Depends: libxerces-c but it is not going to be installed". Any idea is welcome. May 28 08:41:30 morning all May 28 08:57:24 hi bluelightning May 28 08:57:47 hi kroon May 28 08:57:54 seebs, regarding the file permissions, things are back to normal with your latest fix, thanks May 28 08:59:28 morning! May 28 09:00:19 hi zecke May 28 09:48:10 Hi..Any one please answer my question. May 28 09:51:04 elinuxer: find /home/tamilarasi/beagleblack/poky -name 'linux-ti-staging*' May 28 09:51:44 elinuxer: linux-ti-staging was skipped: incompatible with machine beaglebone May 28 09:52:18 elinuxer: from the recipe: COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15" May 28 09:52:35 the recipe has been explicitly set to only be buildable for those machines May 28 09:56:34 mckoan:this linux-ti-staging is residing at meta-ti/recipes-kernel/linux-ti-staging..even thought its not compiling.. May 28 09:57:20 my procssor is am335x processor so ti33x is compatible.. May 28 10:00:10 elinuxer: but your machine is not in COMPATIBLE_MACHINE list as bluelightning said May 28 11:57:28 HEADS UP - patch set changing autoconf behaviour has just been sent to oe-core. a little build testing with it merged would be much appreciated. May 28 15:50:30 darknighte_: did you get the Asia Tech Call email yesterday? Will you or someone on your team from Asia be joining (I know it's a lousy time for the US) May 28 16:10:28 halstead: ping May 28 16:11:22 scottrif, pong May 28 16:14:49 sgw_: I don't see it. where did you send the notice? May 28 16:15:50 darknighte_: yocto@yoctoproject.org May 28 16:18:22 sgw_: strange. May 28 16:18:25 * darknighte_ checks something May 28 16:18:39 Hi, I am trying to use the 3.10 kernel for my poky build, my overlay doesn't seem to be overriding anything and instead of pulling build 3.10 from git it is pulling 3.14 can someone help me? May 28 16:19:01 darknighte_: glad I checked! you must have me blacklisted ;-) May 28 16:20:44 weird. nothing in the spam catchers. May 28 16:24:06 sgw_: wow. thx for following up. May 28 16:24:36 apparently, when I switched from my personal address to my work address for the list, I accidentally disabled "mail delivery" May 28 16:24:49 sigh. i thought there were fewer messages than usual. May 28 16:27:17 darknighte: well glad I could help increase your mail load! May 28 16:27:41 sadly, I have enough already to keep me overly satisfied. ;) May 28 16:28:13 heh, thankfully the yocto@ load isn't very high May 28 16:28:45 kergoth: true. I'm going to *say* that's why I hadn't noticed yet. May 28 16:28:55 :) May 28 16:32:41 sgw_: at this point, I am a *maybe* on attending the call. May 28 16:33:49 darknighte: thanks for the heads up it's normally a pretty short call also, I am thinking about moving it to 6:30Pacific May 28 16:36:15 sgw_: about the same to me. May 28 16:41:25 anyone know if there is an easy way to search the mailing list archives? May 28 16:41:46 jjj1234: gmane? May 28 16:42:15 ah okay thanks May 28 16:46:09 is VAR[export] = "1" same as export VAR = "value" May 28 16:48:16 yes, export VAR or export VAR=value just sets the export flag under the hood May 28 16:48:27 better to use the latter or 'export VAR' where possible to avoid poking at bitbake implementation details May 28 16:50:11 first one lets to use OVERRIDES though so mmore powerful May 28 16:50:57 A Yocto shirt: http://recode.net/2014/05/28/intel-bets-its-smart-shirt-on-the-future-of-wearables-video/ May 28 16:55:52 khem: not sure what you mean by that. its never safe to combine overrides with flags, last i checked.. May 28 18:08:07 Hi!, Question: If create from a new layer a bbappend, that apply a patch, on top a recipes-images. Then I run bitbake -c cleansstate new-console-image fallowed by bitbake new-console-image. [1] It seem that it doesn't add the (ex: valgrind) that I add to the patch? May 28 18:08:43 Any idea how to debug that? May 28 20:13:20 kapare: what does bbappend look like May 28 20:14:02 kapare: you need to put patch file in your layer and also add it to search path for bitbake to look for new path in addition to SRC_URI += "file://new patch" May 28 20:14:33 kergoth: I mean FOO = "val1" and then FOO_arm = "val2", FOO[export] = "1" May 28 20:14:52 FOO = "val1", FOO_arm = "val2", export FOO May 28 20:14:54 or rather FOO ?= "val2" May 28 20:14:56 you dont have to do export foo=bar May 28 20:15:01 you can do the export separately May 28 20:15:07 true May 28 20:15:13 nothing lost May 28 20:15:15 or export FOO = "val1", FOO_arm = "val2" May 28 20:15:18 same thing May 28 20:15:39 so FOO[export] = "1" is just a distraction then ? May 28 20:15:42 flags dont traverse overrides, so as long as you set the flag one way or another on the base variable, you're fine May 28 20:15:54 its effectively the same, but its poking at bitbake implementation detail, and doesn't really buy you anything May 28 20:16:00 afaik May 28 20:17:54 khem, For now I simply copy the image in my layer and change it to test it. But my question should have been ... May 28 20:18:49 kergoth: yeah therefore a distraction May 28 20:19:18 yeah. now, unexport is valid, since there's no command for that, only the flag May 28 20:19:49 khem, What command should I run if I change the patch that the append file point to from that image? The first bitbake of the image is working and adding it then modif the patch and it seem that it the second time I run the command that it doesn't work... May 28 20:22:12 khem, the bbappend is simply http://pastebin.com/4F3HNnhk May 28 20:22:55 first of all, use bitbake-layers show-appends to see if your append is even being applied May 28 20:23:06 second, use bitbake -e yourrecipe to see if your changes are affecting the variables, see what the vars are really set to May 28 20:25:16 kergoth, I previously check with bitbake-layers show-appends and it shows my appends... Will try the bitbake -e yourrecipe May 28 21:14:12 pidge: sgw_ just finishing lunch. I'll be responsive shortly. May 28 21:14:27 halstead: thanks! May 28 21:14:57 halstead: awesome May 28 21:24:32 * nerdboy throws halstead some more meat May 28 21:27:47 :) May 28 21:31:13 nerdboy: I think halstead prefers sushi and sake ;-) May 28 22:09:36 kapare: where is 0001-Adding-utilities-to-install.patch put ? May 28 22:11:27 sgw_: maybe after work... May 28 22:12:07 nerdboy: for sure after work! May 28 22:13:57 can we make it guinness and ? May 28 22:22:36 * pidge 's ears perk up at the mention of guinness/assorted snacks May 28 22:25:13 hi May 28 22:26:20 iam having trouble cloning the yocto May 28 22:26:42 when i type git clone git://git.yoctoproject.org/poky yoctoProject May 28 22:27:07 i get fatal: unable to connect to git.yoctoproject.org: git.yoctoproject.org[0: 140.211.169.56]: errno=Connection timed out May 28 22:27:19 could any one help me out please May 28 22:45:17 you should probably use the https interface May 28 22:46:44 git clone http://git.yoctoproject.org/git/poky yocto May 28 22:46:47 works here May 28 22:47:18 not sure you need to change the repo name, but whatever floats yer boat... May 28 23:13:38 gah, damnit, hitting yet another case where -S printdiff is showing tasks being different, but not showing the detail / variable info, even thoough the intermediate task siginfo is in the sstate dir May 28 23:13:41 :| May 28 23:13:47 * kergoth tries bitbake-whatchanged with STAMPS_DIR instead May 29 00:30:16 hi any one up ? May 29 00:59:58 * nerdboy declares it beer-o-clock May 29 02:28:54 rishabh: what's up, around for about 30 -45 minutes May 29 02:30:33 * sgw_ starts Yocto Project Asia TZ Tech Call +1 916-356-2663 Bridge #1 / Code 5000157 May 29 02:43:20 not beer-o-clock for you then... May 29 02:53:16 nerdboy: now it's kind of beer-o-clock **** ENDING LOGGING AT Thu May 29 03:00:00 2014