Tuesday, 2017-10-24

*** sgw <sgw!~swold@134.134.139.73> has quit IRC00:07
*** sgw <sgw!swold@nat/intel/x-mbgmlxizsudsuvkn> has joined #yocto00:14
*** martinkelly1 <martinkelly1!~martin@205.175.118.66> has quit IRC00:20
*** scottrif <scottrif!~scottrif@47.39.44.219> has left #yocto00:22
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-crxkajvnvpccnhvr> has quit IRC00:32
trontRP1, hi, any blocker for http://lists.openembedded.org/pipermail/openembedded-core/2017-October/143537.html ?00:38
*** sgw <sgw!swold@nat/intel/x-mbgmlxizsudsuvkn> has quit IRC00:42
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.74.158> has joined #yocto00:44
trontotavio, maybe ?00:45
*** dushara <dushara!7346ce4a@gateway/web/freenode/ip.115.70.206.74> has joined #yocto00:53
dusharaIs there a yocto analog to the rootfs overlay concept in buildroot?00:54
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.74.158> has quit IRC01:01
armpittront, RP1 is not blocking that patch. Its in a patch series I am trying to validate prior to asking for a merge request to pyro01:13
trontthanks for the reply01:15
trontany rough idea on how much time it would take?01:16
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto01:21
armpitnot sure. I am working throw build errors so a few more days.01:21
trontany chance you could separate that one from the rest that are throwing build errors now and ask for a merge request solely for it? :P01:23
trontwe're really needing this in pyro for a while to unblock some stuff01:24
armpityou can ask on the mailing list for RP to merge. The errors I am seeing may not be related to the changes I have queue rather the AB build env / hosts.01:27
armpitpyro proper now failing w/o my patch series01:27
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto01:28
trontarmpit, we have asked for this to get merged in the pyro branch: http://lists.openembedded.org/pipermail/openembedded-core/2017-October/143537.html01:29
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto01:34
armpitI realize that. I suspect RP is waiting on the green light from me while he focuses on the Rocko release. You are welcome to re-ping.01:36
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC01:39
trontarmpit, reping in that thread or should somehow the same commit be sent to the mailing list targeted at the pyro branch?01:40
trontjust asking what the procedure usually is01:41
armpitjust re-ping to your last ping is the norm01:42
armpitRP would be the one to make the call in this case.01:43
trontthanks01:44
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-kgoneqhmqtmqzaqf> has quit IRC01:49
*** bduke <bduke!485a466d@gateway/web/freenode/ip.72.90.70.109> has joined #yocto01:58
bdukeHi there, I'm trying to debug a Yocto daisy build that is failing in create_sdk_files. Error: movefile failed to move /path/to/sdk/image/var/lib/opkg/status to path/to/sysroots/i686-clsdk-linux/var/lib/opkg02:05
bdukeOSError(21, 'Is a directory'))02:05
bdukeand ideas? I've found references to this problem online, but with no one has posted and solution.02:06
paulg_OS2.1 has been retired since 1997.  You might be stuck in a historical trap.02:08
bdukeHi there, I'm trying to debug a Yocto daisy build that is failing in create_sdk_files. Error: movefile failed to move /path/to/sdk/image/var/lib/opkg/status to path/to/sysroots/i686-clsdk-linux/var/lib/opkg02:10
bdukeOSError(21, 'Is a directory'))02:10
bdukehas anyone seen something like this before?02:10
bodanglyI'd try to clean the build and bitbake again02:20
bodanglyTry and clean the recipe that is failing first, then try a cleanall on it, and progress from there before potentially starting a fresh build. If it is trying to move files to an already existent directory it sounds like a previous task only partially completed02:21
bodanglyat least that would be my approach, but I can't speak to your specific problem02:22
*** nighty-- <nighty--!~nighty@kyotolabs.asahinet.com> has joined #yocto02:26
bdukethanks for the tips bodangly. I am trying similar things with no success so far.02:28
bodanglydo you get the error on a fresh build?02:30
bodanglywhat recipe is it you are getting stuck on? Could you pastebin the full output?02:31
bdukeYes, from a completely clean workspace.02:31
bdukeI added a compile time option to qt5 ( add sqlite support). I have reverted that change and I am trying the build again to make sure it is not a problem with my environment.02:32
bdukeIf that build is successful, then my addition (PACKAGECONFIG_append = " sql-sqlite") is the problem.02:32
bdukeThen, I can debug it from there.02:33
bodanglyare you doing just PACKAGECONFIG_append or PACKAGECONFIG_append_pn-qt5 (or similar)?02:34
*** jg_ <jg_!~jg@2601:18f:981:82c5:b801:1568:8ad3:7bf5> has quit IRC02:34
bodanglyie are you modifying the recipe itself?02:34
bodanglyI wonder if something else is also trying to copy sql-sqlite into sysroot first and isn't playing nice02:35
*** bananadev <bananadev!~onlyester@117.6.99.240> has joined #yocto02:35
bodanglyI know if things conflict / already exist there it causes problems02:35
bodanglyI've had that problem before with a recipe that used perl02:36
bdukeI am doing PACKGECONFIG_append.02:36
bodanglywithin the qt5 recipe itself?02:38
bdukeI have a qtbase_5.2.1.bbappend in my custom meta-layer. That is where I am putting the PACKAGECONFIG_append.02:38
bodanglyoh ok02:38
*** MiskaX <MiskaX!c26syaoe8x@rankki.sonarnerd.net> has quit IRC02:38
bodanglymaybe try this: PACKAGECONFIG_append_pn-qtbase = " sql-sqlite"02:39
bodanglyin local.conf02:39
bdukeah. OK. I will try that next. I appreciate the help.02:39
bodanglyno problem02:40
bodanglyjust paying it forward, this channel and IRC in general has been good to me, I'm a consultant and often end up asking questions that get solved and directly make me money :)02:41
bduke(me too) :)02:41
bodanglylol nice02:41
bodanglyits amazing how companies can sit on a problem for weeks, and no one thinks to just ask the community02:41
bodanglyits like they treat open source as commercial software without a support license02:42
bdukeindeed.02:42
bodanglyand ignore that a community exists02:42
bodanglyI can't complain though, their ignorance puts money in my pocket, which I am sure you experience as well :)02:42
bdukeI understand what you are saying.02:43
bodanglyI even usually tell them "I asked in IRC" and they look at me like I did some black magic02:43
bdukehttp://www.lmgtfy.com/02:43
bduke:)02:44
bodanglyhaha yeah exactly02:44
bdukeI found a similar config setting in my local.conf, so I've dealt with this before. I think that might be the answer. I've reset the build and am starting again.02:47
bodanglycool, good luck02:47
bdukeI should know in about 3 hours since I'm starting the build from scratch.02:47
bdukethanks!02:47
*** kaspter <kaspter!~Instantbi@124.160.121.6> has quit IRC02:54
*** bduke <bduke!485a466d@gateway/web/freenode/ip.72.90.70.109> has quit IRC03:10
*** kaspter <kaspter!~Instantbi@183.128.239.163> has joined #yocto03:22
*** bananadev <bananadev!~onlyester@117.6.99.240> has quit IRC03:30
*** pohly1 <pohly1!~pohly@p54BD58CF.dip0.t-ipconnect.de> has joined #yocto03:39
*** pohly <pohly!~pohly@p54BD5824.dip0.t-ipconnect.de> has quit IRC03:42
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC03:45
*** stephano <stephano!~stephano@134.134.139.73> has quit IRC03:50
*** MiskaX <MiskaX!lmbgtgjrla@rankki.sonarnerd.net> has joined #yocto03:57
*** MiskaX <MiskaX!lmbgtgjrla@rankki.sonarnerd.net> has quit IRC04:04
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto04:10
*** bananadev <bananadev!~onlyester@117.6.99.240> has joined #yocto04:17
*** denix <denix!~denix@pool-100-15-85-143.washdc.fios.verizon.net> has quit IRC04:22
*** denix <denix!~denix@pool-100-15-85-143.washdc.fios.verizon.net> has joined #yocto04:24
*** denix <denix!~denix@pool-100-15-85-143.washdc.fios.verizon.net> has joined #yocto04:25
*** MiskaX <MiskaX!svhgjb4egy@rankki.sonarnerd.net> has joined #yocto04:26
*** gtristan <gtristan!~tristanva@110.11.179.72> has joined #yocto04:37
*** bananadev_ <bananadev_!~onlyester@118.70.128.150> has joined #yocto04:37
*** bananadev_ <bananadev_!~onlyester@118.70.128.150> has quit IRC04:38
*** bananadev <bananadev!~onlyester@117.6.99.240> has quit IRC04:40
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC04:45
*** clement <clement!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has quit IRC04:46
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto04:47
*** clement <clement!~clement@lns-bzn-39-82-255-32-23.adsl.proxad.net> has joined #yocto04:48
*** morphis <morphis!~morphis@pD9ED7147.dip0.t-ipconnect.de> has joined #yocto04:48
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC04:55
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto05:00
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto05:06
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC05:10
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has joined #yocto05:41
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-hffgibtqgjmxndwe> has quit IRC05:52
*** thaytan <thaytan!~jan@31.10.143.241> has quit IRC05:52
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has joined #yocto05:54
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto05:55
*** armpit <armpit!~armpit@62.168.35.106> has quit IRC05:58
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:e3aa:a711:f9f3:5053> has joined #yocto05:59
*** open-nandra <open-nandra!~marek@81.89.61.168.host.vnet.sk> has joined #yocto06:05
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has quit IRC06:16
*** armpit <armpit!~armpit@62.168.35.106> has joined #yocto06:17
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:e3aa:a711:f9f3:5053> has quit IRC06:18
*** annnha <annnha!4cbb1489@gateway/web/freenode/ip.76.187.20.137> has joined #yocto06:19
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:e3aa:a711:f9f3:5053> has joined #yocto06:23
*** mnsgs <mnsgs!4fab95ac@gateway/web/freenode/ip.79.171.149.172> has joined #yocto06:24
*** King_InuYasha <King_InuYasha!~kvirc@fedora/ngompa> has quit IRC06:30
*** King_InuYasha <King_InuYasha!~kvirc@ool-18e49ae9.dyn.optonline.net> has joined #yocto06:31
*** King_InuYasha <King_InuYasha!~kvirc@fedora/ngompa> has joined #yocto06:31
*** jhatch2008 <jhatch2008!417e5a02@gateway/web/freenode/ip.65.126.90.2> has quit IRC06:32
*** Costin1 <Costin1!~nxf31494@gate-zro.freescale.com> has joined #yocto06:36
Costin1hi all06:36
*** armpit <armpit!~armpit@62.168.35.106> has quit IRC06:36
annnhahi06:38
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-sgsrstwjgpyuvmfj> has joined #yocto06:39
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto06:41
Costin1was there a way to show recipes that will be built before building a target?06:45
Costin1thanks06:45
*** rdmikkovee <rdmikkovee!528d696b@gateway/web/freenode/ip.82.141.105.107> has joined #yocto06:49
*** RP1 <RP1!~richard@62.168.35.69> has quit IRC06:50
*** gtristan <gtristan!~tristanva@110.11.179.72> has quit IRC06:53
*** fl0v0 <fl0v0!~fvo@p2E584FF4.dip0.t-ipconnect.de> has joined #yocto06:58
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC07:03
*** annnha <annnha!4cbb1489@gateway/web/freenode/ip.76.187.20.137> has quit IRC07:08
*** dushara <dushara!7346ce4a@gateway/web/freenode/ip.115.70.206.74> has quit IRC07:08
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto07:08
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC07:19
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-caocurmwcbjabxyq> has joined #yocto07:20
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto07:21
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has joined #yocto07:24
*** ANNNHA <ANNNHA!a2f3118b@gateway/web/freenode/ip.162.243.17.139> has joined #yocto07:27
*** RP1 <RP1!~richard@62.168.35.69> has joined #yocto07:27
*** fl0v01 <fl0v01!~fvo@p2E5840A2.dip0.t-ipconnect.de> has joined #yocto07:29
*** fl0v0 <fl0v0!~fvo@p2E584FF4.dip0.t-ipconnect.de> has quit IRC07:29
*** gtristan <gtristan!~tristanva@221.147.85.171> has joined #yocto07:30
*** vdehors_arc <vdehors_arc!~vincent@LPuteaux-657-1-103-59.w193-248.abo.wanadoo.fr> has joined #yocto07:32
*** RP1 <RP1!~richard@62.168.35.69> has quit IRC07:32
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has quit IRC07:32
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto07:33
*** Crofton <Crofton!~Crofton@ip-94-113-76-12.net.upcbroadband.cz> has quit IRC07:34
*** ed21 <ed21!Adium@nat/intel/x-ckllxntplbewtebk> has joined #yocto07:39
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto07:39
*** ant_work <ant_work!~ant__@host18-113-dynamic.16-79-r.retail.telecomitalia.it> has joined #yocto07:41
*** florian_kc is now known as florian07:43
*** cornel <cornel!~cornel@89.121.200.106> has joined #yocto07:46
cornelhello07:46
cornelin a team of yocto users, is it possible to share the storage space so that you can use a local machine for processor, memory, etc. and the shared storage for build storage space?07:48
*** armpit <armpit!~armpit@62.168.35.105> has joined #yocto07:48
cornelopposed to our current status where we have for each build machine a storage that is not enough for all users ....07:49
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto07:51
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto07:56
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC08:01
*** ANNNHA <ANNNHA!a2f3118b@gateway/web/freenode/ip.162.243.17.139> has quit IRC08:04
*** ANNNHA <ANNNHA!a2f3118b@unaffiliated/annnha> has joined #yocto08:04
*** ANNNHA <ANNNHA!a2f3118b@gateway/web/freenode/ip.162.243.17.139> has joined #yocto08:04
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has joined #yocto08:10
*** joshuagl <joshuagl!joshuagl@nat/intel/x-geigfhflcorapfvt> has joined #yocto08:11
*** armpit <armpit!~armpit@62.168.35.105> has quit IRC08:16
*** Klopilot <Klopilot!25949985@gateway/web/freenode/ip.37.148.153.133> has joined #yocto08:25
KlopilotHello08:25
rdmikkoveeHi08:27
*** ANNNHA <ANNNHA!a2f3118b@gateway/web/freenode/ip.162.243.17.139> has quit IRC08:29
rdmikkoveeI'm trying to write a recipe which would install a proprietary python wheel package to target. I think I can't use use pypi as it would try to fetch the source from the internets. Also setuptools seems to be useless as the .whl files do not contain a setup.py... Any ideas what would be the best way to do this?08:31
Klopiloti have here a kernel cmdline issue on yocto 2.2; kernel cmd line is: rootfstype=ubifs ro; readonly, but the poky distro mounts the root alwas as rw; the cmdline ro is ignored; can anybody tell me where to look for this cmdline evaluation? thx08:32
rdmikkoveeIf I wanted to install the package to host I could do it like this: pip install my-propriotary-stuff.whl08:33
cornelcat /proc/cmdline is what you expect?08:33
Klopilottest08:34
cornelor even better, more /rpoc/cmdline08:34
rdmikkoveeSo should I put similar command to the do_compile? Any ideas are welcome.08:34
Klopilot\/proc\/cmdline is OK, but ro is ignored by yocto08:35
cornelwhat about /etc/fstab ?08:35
nayfeCostin1: bitbake -s ?08:35
*** annnah <annnah!~annnah@unaffiliated/annnha> has joined #yocto08:36
Klopilotrootfstype=ubifs ro chk_data_crc ubi.mtd=0 root=ubi0:rootfs console=ttyS0,115200n8 mtdparts=davinci_nand.0:86m(Rootfs0),86m(Rootfs1),-(UBI) vt.global_cursor_default=0 internpower mem=95M08:36
cornelif you don't have it already, create /etc/fstab with the required entry/entries, Klopilot08:37
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-wlsmvzvddayhvtfk> has joined #yocto08:38
Klopilotfstab: //dev//root // auto defaults 1 108:38
cornelreplace defaults with ro08:39
Klopilotthanks i will have a look at fstab08:39
Klopilotthanks08:39
cornelor whatever you need08:39
cornelexample: ro,user08:39
Klopilotcan you tell me in wich recipe fstab is controlled?08:41
cornelno08:41
cornelusually base-files but to be sure do something like: rpm -qf /etc/fstab08:42
*** nayfe <nayfe!d433a784@gateway/web/freenode/ip.212.51.167.132> has quit IRC08:49
Klopilotthank you, cornel!08:50
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto08:52
*** nayfe <nayfe!d433a784@gateway/web/freenode/ip.212.51.167.132> has joined #yocto08:57
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto08:58
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC09:02
*** Klopilot <Klopilot!25949985@gateway/web/freenode/ip.37.148.153.133> has quit IRC09:04
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC09:07
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto09:07
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto09:09
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC09:14
*** ed21 <ed21!Adium@nat/intel/x-ckllxntplbewtebk> has quit IRC09:15
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto09:30
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC09:33
nayfeotavio: Hi, I based a custom board BSP on linux wandboard_imx_4.1.15_1.1.0_ga branch, and  found out that nxp released a 4.9 imx kernel. Do you know if there will be a linux-fslc-imx_4.9 ?09:36
*** yann|work <yann|work!~yann@178.208.16.32> has joined #yocto09:37
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto09:44
sveinseIf I have IMAGE_INSTALL_append = ".." and  IMAGE_INSTALL_append_my-machine = "...", they will be both picked up right?09:49
LetoThe2ndsveinse: should be, yes09:50
LetoThe2nd(given that you are building for my-macine)09:50
sveinseof course. thanks.09:51
*** morphis__ <morphis__!~morphis@pD9ED703D.dip0.t-ipconnect.de> has joined #yocto09:53
*** morphis <morphis!~morphis@pD9ED7147.dip0.t-ipconnect.de> has quit IRC09:54
*** morphis__ is now known as morphis09:55
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC09:58
*** annnah <annnah!~annnah@unaffiliated/annnha> has quit IRC09:59
*** Crofton <Crofton!~Crofton@62.168.35.107> has joined #yocto10:08
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto10:10
*** RP1 <RP1!~richard@62.168.35.66> has joined #yocto10:13
*** RP1 <RP1!~richard@62.168.35.66> has quit IRC10:19
*** morphis <morphis!~morphis@pD9ED703D.dip0.t-ipconnect.de> has quit IRC10:21
*** morphis <morphis!~morphis@pD9ED703D.dip0.t-ipconnect.de> has joined #yocto10:25
*** Crofton <Crofton!~Crofton@62.168.35.107> has quit IRC10:31
*** sjolley <sjolley!sjolley@nat/intel/x-yhauqwafzoxyhhyn> has quit IRC10:32
*** sjolley <sjolley!~sjolley@134.134.139.74> has joined #yocto10:33
*** ed21 <ed21!Adium@nat/intel/x-dnhsdokidambqske> has joined #yocto10:36
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC10:45
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto10:47
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:e3aa:a711:f9f3:5053> has quit IRC10:56
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC11:05
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:07
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:afa7:3934:77d7:672a> has joined #yocto11:09
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto11:27
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC11:39
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC11:44
*** msvb-lab <msvb-lab!~michael@x55b54464.dyn.telefonica.de> has joined #yocto11:58
*** armpit <armpit!~armpit@62.168.35.106> has joined #yocto12:03
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has joined #yocto12:06
*** hnje <hnje!~hnje@193.106.123.182> has joined #yocto12:07
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has quit IRC12:07
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has joined #yocto12:09
*** Willy-- <Willy--!188a097e@gateway/web/freenode/ip.24.138.9.126> has joined #yocto12:10
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has quit IRC12:11
*** prix <prix!~smuxi@firebird.primox.net> has joined #yocto12:12
*** peacememories <peacememories!~textual@e242-018.eduroam.tuwien.ac.at> has joined #yocto12:13
*** dreyna <dreyna!~dreyna@62.168.35.68> has joined #yocto12:14
*** hnje <hnje!~hnje@193.106.123.182> has quit IRC12:21
*** prix <prix!~smuxi@firebird.primox.net> has quit IRC12:26
*** armpit <armpit!~armpit@62.168.35.106> has quit IRC12:34
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC12:35
*** peacememories <peacememories!~textual@e242-018.eduroam.tuwien.ac.at> has quit IRC12:36
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto12:37
*** peacememories <peacememories!~textual@e242-018.eduroam.tuwien.ac.at> has joined #yocto12:37
*** marka <marka!~masselst@135-23-92-83.cpe.pppoe.ca> has joined #yocto12:37
*** ant_work <ant_work!~ant__@host18-113-dynamic.16-79-r.retail.telecomitalia.it> has quit IRC12:39
*** Saur <Saur!~pkj@proxy02.se.axis.com> has quit IRC12:45
*** annnah <annnah!~annnah@2605:6001:eb83:a900::1> has joined #yocto12:55
otavionayfe: there is already; i did not yet merged stable fixes on it13:01
*** gtristan <gtristan!~tristanva@221.147.85.171> has quit IRC13:03
nayfeotavio: nice! you know when it will be released? no pressure :)13:05
*** Saur <Saur!~pkj@proxy02.se.axis.com> has joined #yocto13:05
*** annnah <annnah!~annnah@2605:6001:eb83:a900::1> has quit IRC13:09
*** annnah <annnah!~annnah@unaffiliated/annnha> has joined #yocto13:09
*** zeeblex <zeeblex!~zeeblex@gate-zro.freescale.com> has joined #yocto13:13
*** Crofton <Crofton!~Crofton@62.168.35.105> has joined #yocto13:17
*** morphis <morphis!~morphis@pD9ED703D.dip0.t-ipconnect.de> has quit IRC13:21
*** Crofton <Crofton!~Crofton@62.168.35.105> has quit IRC13:21
*** rdmikkovee <rdmikkovee!528d696b@gateway/web/freenode/ip.82.141.105.107> has quit IRC13:25
*** RP1 <RP1!~richard@62.168.35.107> has joined #yocto13:25
*** falk0n <falk0n!~falk0n@a79-168-122-231.cpe.netcabo.pt> has joined #yocto13:29
*** stephano <stephano!~stephano@134.134.139.73> has joined #yocto13:32
*** morphis <morphis!~morphis@pD9ED703D.dip0.t-ipconnect.de> has joined #yocto13:35
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC13:35
nayfeotavio: ha, i was looking not looking in right github, you mean this branch : https://github.com/Freescale/linux-fslc/tree/4.9-1.0.x-imx ?13:40
otavionayfe: well, honestly I am not too interested on 4.9 as I am using 4.1 or 4.13 for all our customers13:41
otavionayfe: so I'll likely use this to host community fixes13:41
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has quit IRC13:42
otavionayfe: and avoid duplication of work13:42
Adam_otavio: nayfe: sorry to jump in, but are you guys talking about GCC versions...?13:42
nayfeotavio: ok, i suppose 4.1 for IPU/VPU support, and 4.13 for others ?13:42
Adam_Ah, kernels.13:43
nayfeAdam_: talking about linux version for freescale SOCs13:43
Adam_nayfe: ty13:43
otavionayfe: 4.13 has etnaviv and vpu support13:44
otavionayfe: ipu is not complete yet13:44
otavioAdam_: Linux kernel13:44
otavionayfe: we added support to use mainline and we are moving many customers to it13:45
Adam_otavio: ty - sorry I was trying to build GCC 4.9 toolchain on Morty (by default it uses 6.9).13:45
otavioAdam_: why?13:46
nayfeotavio: ok I see, I use a lot of gstreamer IPU/VPU stuff, so best option is probably to wait for 4.13 IPU support13:46
Adam_otavio: I have a bunch of custom apps that require an old version of GCC....13:46
otavionayfe: not sure; gst works very well on mainline13:46
otavioAdam_: time to upgrade?13:46
otavionayfe: we will move to 4.14 very soon13:47
Adam_otavio: I know. But it's hard to convince the app guys. I assume gcc 4.9 + morty is not a combo that's been tested?13:47
*** dreyna_ <dreyna_!~dreyna@62.168.35.68> has joined #yocto13:48
trontRP1, can this http://lists.openembedded.org/pipermail/openembedded-core/2017-October/143537.html make it into yocto pyro please?13:48
nayfeotavio: cpu time consuming is a big concern for us, so IPU helped in 4.1.15 ...13:48
nayfeotavio: you mean mainstream without IPU is better than 4.1 with IPU ?13:49
*** dreyna <dreyna!~dreyna@62.168.35.68> has quit IRC13:49
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto13:49
RP1tront: just that patch?13:50
trontRP1, yes, just the one13:50
otavionayfe: try it13:50
otavionayfe: it is13:50
otavioRP1: are you taking 2.5 patches already?13:51
RP1otavio: not yet, no13:51
otavioRP1: Ok13:51
nayfeotavio: ok thanks, i'll give it a try, but it means quite a lot of rework for our gstreamer plugins. Is there a place to look after work in progress ? meta-freescale mailinglist ?13:54
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC13:54
*** Monty_ <Monty_!62d99026@gateway/web/freenode/ip.98.217.144.38> has joined #yocto13:55
*** kaspter <kaspter!~Instantbi@183.128.239.163> has quit IRC13:55
trontRP1, thanks a lot13:56
RP1tront: thankfully its an easier patch to review but we can;'t normally do that....13:57
trontwhat is the usual procedure?13:57
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto13:57
RP1tront: Armin queues, tests, I merge the batch13:58
eduardas_mhello, I am using Kubuntu 16.04 and when I run bitbake recovery -g -u depexp I get: "Failed to connect to Mir: Failed to connect to server socket: No such file or directory"13:59
trontI see; noted13:59
*** nathani_ <nathani_!~nathani@mail.validmanufacturing.com> has joined #yocto13:59
RP1tront: it takes time as the tests take time and tracking down the failures takes time. We need more people13:59
trontthanks again for making this exception now13:59
eduardas_mwas never actually able to view the dependency graph using depexp, not even when I was using Ubuntu 14.04 stock13:59
*** RP1 <RP1!~richard@62.168.35.107> has quit IRC13:59
eduardas_mthere was also some kind of error on 14.04 too, though I do not remember what it was exactly14:00
Monty_Hey guys, Is there an easy way to call a function on the final image after its created? We would like to copy images to our build server once bitbake has created the final image.  We've been looking at IMAGE_POSTPROCESS_COMMAND but the final image has not been created yet.14:01
eduardas_mcan anyone give me a good example on how to properly view a dependency graph for a recipe on Ubuntu 16.04?14:01
*** ChrysD <ChrysD!c16cc543@gateway/web/freenode/ip.193.108.197.67> has joined #yocto14:03
ChrysDHi All ! I have problem with "devtool modify". I remember that i tried it last week, and now when i try to bitbake, he is looking to another conf folder inside the dir that i create for devtool modify. how to reverse it ? Thanks by advance14:04
eduardas_mMonty_: I suppose you could create a recipe that pulls in your final image recipe as a dependency and does whatever more tasks you need, though that sounds ugly14:04
*** CTtpollard <CTtpollard!~CTtpollar@167.98.27.226> has quit IRC14:05
*** aragua <aragua!~aragua@62.168.35.124> has joined #yocto14:05
*** dreyna_ <dreyna_!~dreyna@62.168.35.68> has quit IRC14:06
ChrysDNo idea?14:09
*** dreyna <dreyna!~dreyna@62.168.35.68> has joined #yocto14:10
eduardas_mMonty_: then again (after re-reading your sentence), should you not be building the images on the build server in the first place?14:11
eduardas_mand let your Continuos Integration system handle whatever build artifacts are produced14:12
*** RP1 <RP1!~richard@62.168.35.105> has joined #yocto14:12
*** dreyna <dreyna!~dreyna@62.168.35.68> has quit IRC14:16
ChrysDI get the oslution14:16
ChrysDthe workspace made by devtool is added in bblayers.conf14:16
ChrysDjust need to remove there14:16
ChrysD( cleaning tmp/ for nothing :s )14:16
*** open-nandra <open-nandra!~marek@81.89.61.168.host.vnet.sk> has quit IRC14:18
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC14:19
*** ed21 <ed21!Adium@nat/intel/x-dnhsdokidambqske> has quit IRC14:19
*** aehs29 <aehs29!aehernan@nat/intel/x-mdrsqktsyycungnc> has joined #yocto14:22
*** gtristan <gtristan!~tristanva@110.11.179.89> has joined #yocto14:23
*** aragua <aragua!~aragua@62.168.35.124> has quit IRC14:24
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has joined #yocto14:24
*** dreyna <dreyna!~dreyna@62.168.35.68> has joined #yocto14:25
Monty_The "build server" is more of a cloud backup - I've confused the question by giving it a bad name.  It doesn't make sense to build the images there.  There's no easy/clean way then?14:28
eduardas_mMonty_: I suppose you could just write a bash script that runs bitbake, waits for it to finish successfully and does the upload?14:30
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has quit IRC14:30
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has joined #yocto14:32
*** mnsgs <mnsgs!4fab95ac@gateway/web/freenode/ip.79.171.149.172> has quit IRC14:33
Monty_Yer. That's what we're probably going to do.  Just doesn't feel like we're using yocto/bitbake correctly14:33
*** dreyna_ <dreyna_!~dreyna@62.168.35.68> has joined #yocto14:34
eduardas_mMonty_: I am not that experienced in Yocto myself, but as far as I know the two main CI solutions are either Yocto Autobuilder or Jenkins... I assume the proper way to handle artifact uploads to somewhere would be via the mechanisms those provide14:35
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-ieiufdbkifkmdilz> has joined #yocto14:35
eduardas_mthough I am really not familiar with either... perhaps someone could elaborate on the matter?14:36
*** dreyna <dreyna!~dreyna@62.168.35.68> has quit IRC14:37
*** vdehors_arc <vdehors_arc!~vincent@LPuteaux-657-1-103-59.w193-248.abo.wanadoo.fr> has quit IRC14:37
*** stefan_737362 <stefan_737362!~Mutter@84.117.19.81> has quit IRC14:38
*** dreyna_ <dreyna_!~dreyna@62.168.35.68> has quit IRC14:38
joshuaglif you want to run something after image construction you can do do_image[postfuncs] += "my_function"14:39
eduardas_mjoshuagl: really useful to know, though "postfuncs" is mentioned only once in the Mega-manual and in a slightly different context14:46
*** annnah <annnah!~annnah@unaffiliated/annnha> has quit IRC14:47
rburtoneduardas_m: https://www.yoctoproject.org/docs/latest/bitbake-user-manual/bitbake-user-manual.html#variable-flags is probably the best bit of docs for it14:48
*** Snert_ <Snert_!~LoginName@106-24-237-24.gci.net> has joined #yocto14:50
*** Costin1 <Costin1!~nxf31494@gate-zro.freescale.com> has left #yocto14:50
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has quit IRC14:51
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC14:51
eduardas_mrburton: thank you... also, since you are here, could you please tell me how to successfully run depexp on Ubuntu 16.04? I get: "Failed to connect to Mir: Failed to connect to server socket: No such file or directory"14:51
rburtonlol mir14:52
eduardas_mI simply run bitbake recovery -g -u depexp14:52
rburtonpresumably you need to know what environment variables mir needs to work, and then ensure they don't get wiped like $DISPLAY does14:52
rburtonor stop using mir14:52
eduardas_mrburton: yeah, I know... something is off in Kubuntu 16.04, but the funny thing is that I'm running regular Plasma 5 on X1114:53
eduardas_mnot Mir14:53
*** yohboy <yohboy!~yohan@LFbn-1-7688-211.w92-167.abo.wanadoo.fr> has joined #yocto14:53
eduardas_mrburton: $DISPLAY gets removed when sourcing the environment for bitbake?14:54
eduardas_mI did not know that14:54
rburtonDISPLAY doesn't no14:54
rburtonwell, it does, but we add it back for depexp14:55
rburtonbut presumably mir doesn't use DISPLAY as that's an X variable14:55
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto14:55
Monty_trying it out now. However the docs say do_image_* starts the image generation process. do_image_complete completes the image generation process. do_image_complete task performs post-processing on the image through the IMAGE_POSTPROCESS_COMMAND.14:56
Monty_image_post_process_command didn't work as the image hadn't been created yet14:57
*** aragua <aragua!~aragua@62.168.35.106> has joined #yocto14:57
*** sgw <sgw!~swold@134.134.139.76> has joined #yocto15:01
*** aragua <aragua!~aragua@62.168.35.106> has quit IRC15:02
Monty_http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#image-generation-dev-environment - there doesn't appear to be any tasks/commands that happen after the image has been generated.  IMAGE_POSTPROCESS_COMMAND acts on the final image output files15:05
eduardas_mrburton: simply running export DISPLAY=:0 after sourcing environment for Yocto does not help in running depexp15:05
eduardas_mhere is the full error: https://pastebin.com/PNYPxYij15:06
joshuaglthere's no depexp in your bitbake, you should use taskexp instead15:08
joshuaglI think the mir stuff may be a red herring15:08
joshuagl"FATAL: Unable to import extension module "depexp" from bb.ui. Valid extension modules: knotty, ncurses or taskexp"15:09
joshuagldepexp was dropped and replaced with taskexp a release or so ago15:09
eduardas_mjoshuagl: thank you, I was not aware of that... I am using Yocto Pyro15:09
joshuaglthe very release in which it happened :-)15:10
joshuaglhttp://www.yoctoproject.org/docs/latest/ref-manual/ref-manual.html#migration-2.3-bitbake-changes15:10
*** yohboy <yohboy!~yohan@LFbn-1-7688-211.w92-167.abo.wanadoo.fr> has quit IRC15:14
eduardas_mjoshuagl: yes, taskexp works for me :)15:16
*** Crofton <Crofton!~Crofton@ip-94-113-76-12.net.upcbroadband.cz> has joined #yocto15:16
*** vdehors_arc_ <vdehors_arc_!~vincent@LPuteaux-657-1-103-59.w193-248.abo.wanadoo.fr> has joined #yocto15:16
joshuagl\o/15:17
ChrysDI had problem adding strace in IMX6.15:18
ChrysDI've added in the image recipe strace.15:18
ChrysDI've verified that in bitbake -e i have strace in image_install15:18
ChrysDbut when i boot my card.. no strace in /usr/bin15:18
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC15:19
eduardas_mChrysD: what does your rootfs manifest say?15:19
eduardas_mdoes it say the strace package is included?15:20
ChrysDcan you remember me where i can find this manifest?15:20
*** stephano <stephano!~stephano@134.134.139.73> has quit IRC15:20
eduardas_mChrysD: in tmp/deploy/images15:20
ChrysDstrace cortexa9hf-vfp-neon 4.9-r015:21
eduardas_mwith the .manifest in filename15:21
ChrysDSo it means that it should be installed15:23
ChrysD?15:23
eduardas_mChrysD: I would really assume it to be installed... are you sure you booted the same image?15:23
ChrysDyeah sure15:23
ChrysDi've remove my tmp/ sstate and everything15:23
ChrysDso it's the first image i made15:23
eduardas_mChrysD: I add strace myself on i.MX6 via IMAGE_INSTALL += " strace", so I can not think of why it might not work... the package management tools on the board (rpm or opkg) also say the package is missing?15:26
ChrysDonly things it says is command not found15:27
ChrysDand it's not in /usr/bin15:27
ChrysDSame with ltrace...15:27
eduardas_mChrysD: I also append tools-debug to IMAGE_FEATURES15:28
ChrysDI added devregs for eexample, and the command works15:28
*** jcstach <jcstach!~jcstach@104.129.196.75> has joined #yocto15:29
*** laplante_ <laplante_!~laplante@104.129.196.71> has joined #yocto15:29
*** jcstach_ <jcstach_!~jcstach@104.129.200.110> has joined #yocto15:30
eduardas_mChrysD: you remember you have to not forget the space before the package name in IMAGE_INSTALL += " strace" or else it won't be parsed? I am running out of ideas15:31
ChrysDi do IMAGE_INSTALL += "15:31
ChrysD             strace \15:31
ChrysD                       ltrace \15:31
ChrysD                blblabla\15:31
ChrysDand it works15:31
ChrysDi mean for somes of them15:31
ChrysDbut not all of the package15:31
*** jcstach__ <jcstach__!~jcstach@104.129.200.76> has quit IRC15:32
ChrysDand i have a space between the package name and " \ "15:32
eduardas_mChrysD: does only strace not work?15:32
*** dreyna <dreyna!~dreyna@62.168.35.66> has joined #yocto15:32
ChrysDeduardas_m : i have 5 packages, 2 of them dont work15:32
ChrysDltrace and strace15:32
ChrysDboth are in the manifest15:32
eduardas_mif it is the first one in the list, it must have a space before the name15:32
ChrysDboth are in IMAGE_INSTALL with bitbake -e15:32
eduardas_mChrysD: yes, that confuses me also15:33
*** laplante__ <laplante__!~laplante@104.129.200.76> has quit IRC15:33
ChrysDIMAGE_INSTALL +=" \         imx-test \         i2c-tools \         devregs \         strace \         ltrace \ "15:34
nrossiChrysD: you should be able to check if the rootfs has the strace binary, just inspect the tar.gz if you have that built as an image fstype.15:34
*** laplante_ <laplante_!~laplante@104.129.196.71> has quit IRC15:34
*** jcstach <jcstach!~jcstach@104.129.196.75> has quit IRC15:34
ChrysDand strace ltrace doesn't work but they are the two last....15:34
eduardas_mChrysD: this is my section with packages if this helps: https://pastebin.com/i5f46cVk15:34
nrossiChrysD: since having the package installed doesn't mean you have to have the binary ;)15:34
ChrysDok15:35
ChrysDeduardas_m : that's mine : https://pastebin.com/qzBGRfmm15:35
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-caocurmwcbjabxyq> has quit IRC15:35
eduardas_mChrysD: you can also explore the rootfs in a non-archived form in /tmp15:35
eduardas_mmaking a tar.gz is not necessary15:36
eduardas_min tmp/work I mean15:36
nrossisure, if you have the build in tmp available, but will not be there if you blew it away and rebuilt from sstate15:36
ChrysDHow can I check?15:38
ChrysDI add tools-debug and I have strace15:39
Adam_Q. Is it possible to respond to an old mailing list thread of OE?15:39
eduardas_mChrysD: for example, my rootfs can be found in /home/eduardas/BUILD_3/pyro_builds/build_rc/tmp/work/var_som_mx6-fslc-linux-gnueabi/fod-final-image/1.0-r0/rootfs/15:39
ChrysDeduardas_m : yeah i know that15:39
ChrysDme there : /Yocto/build/tmp/work/imx6qhera-poky-linux-gnueabi/ov5640-image-debug/1.0-r0/rootfs15:40
*** stephano <stephano!~stephano@134.134.139.75> has joined #yocto15:40
ChrysDand now i have in /usr/bin strace15:40
ChrysDafter adding tools debug as image features15:40
eduardas_mChrysD: ltrace too?15:40
ChrysDyeah15:41
ChrysDand if i don't put debug tools15:41
ChrysDi have no ltrace and ftrace15:41
ChrysDstrace*15:41
ChrysDThanks nrossi and eduardas for your support, but still don't understand why can't be installed manually.15:41
eduardas_mChrysD: kind of weird, since I would have expected to be able to add those one by one... had debug-tools enabled for other reasons15:42
ChrysDEduardas, as you are working on IMX6, have you got ftrace working on your board?15:42
ChrysDi have kernel panic now15:43
ChrysDahahah15:43
eduardas_mChrysD: to be completely honest, I am a Linux noob... I have no experience with any kind of tracing tools... I just add that stuff to use "some time in the future".. I know, disappointing15:43
eduardas_mfor "when I need it"15:44
ChrysDThe same, but now it's time to me to use them15:44
ChrysDahahah15:44
eduardas_mChrysD: ok, good luck...  got to go15:44
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC15:44
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:afa7:3934:77d7:672a> has quit IRC15:45
*** lamego <lamego!~jose@134.134.139.75> has joined #yocto15:45
ChrysDnrossi : i have my rootfs on tmp/ different from the one on my image....15:45
nrossiChrysD: different to the rootfs tarball or the image you have booted?15:46
ChrysDthe image i have booted15:47
nrossiChrysD: how is it different exactly?15:47
*** dreyna <dreyna!~dreyna@62.168.35.66> has quit IRC15:47
ChrysDnrossi : in /usr/bin/15:47
ChrysDnrossi : things are missing15:48
*** grma <grma!~gruberm@80.93.38.128> has quit IRC15:48
nrossiChrysD: what sort of things? binaries, symlinks?15:48
ChrysDnrossi : binaries like strace15:48
nrossiChrysD: did you not mention above you got it working?15:49
ChrysDno i have it on my /usr/bin in tmp/15:49
ChrysDnot on my board15:49
nrossiah ok, i miss understood.15:49
nrossiChrysD: then your issue is image/disk related15:49
ChrysDI have it there /build/tmp/work/imx6qhera-poky-linux-gnueabi/ov5640-image-debug/1.0-r0/rootfs15:50
ChrysDov5640-image-debug is the image name that i put after bitbake15:50
nrossiChrysD: how are you writing the image to your target? sd card?15:50
ChrysDsdcard yeah15:50
nrossiChrysD: are you using a sdcard image that is generated by the build or manually partitioning/etc15:50
nrossi?15:50
ChrysDby the build15:51
nrossiChrysD: when you write the image to disk do you just 'dd' it?15:51
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto15:51
ChrysDnrossi : i use win3215:51
nrossiChrysD: ouch...15:51
ChrysDnrossi win32 disk isntaller*15:51
ChrysDI have a linux server which compile bitbake and everything. But i put my sdcard into my window machine.15:52
ChrysDSo i do a Winscp of the .sdcard15:52
ChrysDthen a win3215:52
ChrysDI could do an ssh dd if necessary i guess15:53
ChrysDBut it's the first time that i put things in IMAGE_INSTALL but don't get it in the final image15:53
*** laplante <laplante!~laplante@104.129.200.80> has joined #yocto15:53
nrossiChrysD: your issue might be that the new disk image is not being written to the disk properly?15:53
ChrysDmhhh15:54
nrossiChrysD: have you double checked the image file being written is the same as the on from the build? (md5sum)15:54
ChrysDno, i triple checked15:54
ChrysD:s15:55
ChrysDIf i add other packages15:55
ChrysDlike gstreamer, or qt or whatever, no problem15:55
nrossiChrysD: i see, have you tried formatting the disk, and then using the win32 imager?15:55
peacememoriescan i somehow set the sstate_dir via environment variables instead of local.conf?15:55
ChrysDi add other debugging tools , no problem. I get only that with strace and lstrace15:55
nrossiChrysD: oh, so its just strace playing up, that is odd15:56
ChrysDnrossi : i'm in a 3.14.28 core image minimal15:56
ChrysDnrossi : and the ov5640-image-debug is just an image which add debugging tools, or other package + kernel module15:57
nrossiChrysD: did you check if strace was in the rootfs tarball?15:57
nrossiChrysD: or just in tmp/15:57
ChrysDjust in tmp/15:57
*** ant_home <ant_home!~ant__@host201-77-dynamic.251-95-r.retail.telecomitalia.it> has joined #yocto15:58
nrossiChrysD: if you build the tarball, check in it, if its there then its definitely image related problem15:58
nrossipeacememories: check BB_ENV_EXTRAWHITE15:59
ChrysDi'm checking nrossi15:59
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has joined #yocto16:00
*** svalan <svalan!~svalan@seali-84.19.140.128-static.iport.se> has quit IRC16:00
*** maxin <maxin!~maxin@134.134.139.82> has quit IRC16:01
ChrysDnrossi : it's in the ov5640-image-debug-imx6qhera-Blablablabla.rootfs.tar.bz216:01
*** mvlad <mvlad!~mvlad@gate-zro.freescale.com> has quit IRC16:01
*** fl0v01 <fl0v01!~fvo@p2E5840A2.dip0.t-ipconnect.de> has quit IRC16:01
*** maxin <maxin!~maxin@134.134.139.82> has joined #yocto16:01
nrossiChrysD: ok, lets check if in the sdcard image. This is a little tricky, i assume you have root on your build machine?16:01
ChrysDnrossi : i have root on my build machine16:02
nrossiChrysD: get losetup installed if not already16:02
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC16:03
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has quit IRC16:03
ChrysDnrossi i have it16:03
nrossiChrysD: losetup -P /dev/loop0 <.sdcard file>16:06
ChrysDWhen i do that, it send me to the help page of losetup16:06
*** laplante <laplante!~laplante@104.129.200.80> has quit IRC16:07
ChrysDyou mean -p or -P ?16:07
nrossioh drop the -P, it might be in newer versions only16:07
ChrysDok16:07
ChrysDit works16:07
nrossithen to replace the -P, run partprobe /dev/loop016:07
nrossiyou should now have some /dev/loop0pX nodes16:08
nrossimount the one that is the rootfs16:08
nrossiand explore for strace16:08
ChrysD[17:51] <ChrysD> nrossi : i use win32 [17:51] <nrossi> ChrysD: ouch...16:09
ChrysDthat's how i can sum up16:09
nrossiChrysD: ?16:10
ChrysDit's there16:10
nrossion the loopbacked image?16:10
ChrysDyeah16:10
ChrysDthat's why i copied your " ouch... " ahah16:10
nrossiChrysD: ok so the solution here, is to take your windows machine and send it back to microsoft :P16:10
ChrysDor maybe to throught it through the window16:11
ChrysDthat's why is a windows machine no?16:11
nrossithat would hurt the window, don't make your windows feel the pain of windows :P16:11
ChrysDthrow it*16:11
ChrysDWe use lot of windows tools to, the best solution was to have two computer :s16:11
nrossiwindow's dd tools have already been iffy, last time i was on windows i gave up and got a linux machine for sd card imaging16:12
nrossis/already/always/16:12
*** peacememories <peacememories!~textual@e242-018.eduroam.tuwien.ac.at> has quit IRC16:12
*** svalan <svalan!~svalan@seali-84.19.140.128-static.iport.se> has joined #yocto16:12
nrossiChrysD: btw, to proper clean up that /dev/loop0 mount, losetup -d16:13
nrossiChrysD: also if you can always use your board to do you sd card imaging :)16:14
*** mvlad <mvlad!~mvlad@gate-zro.freescale.com> has joined #yocto16:14
nrossiChrysD: have one card with known tools working that boots to ramfs, or use another sdcard reader on usb or something16:14
ChrysDnrossi : thank you for the tips of the losetup16:17
ChrysDnrossi : what you mean by " that boots to ramfs" ?16:18
nrossiChrysD: boot it with the rootfs in ram, ramfs or ramdisk. It's quite easy to do with u-boot, get a .cpio and load it to a memory address and pass it to bootm's second arg (bootm <kernel> <ramfs> <dtb)16:19
nrossi(or bootz if your using zImage)16:19
nrossisorry needs to be a uboot wrapped cpio, so ".cpio.gz.u-boot" is probably what you are after16:20
ChrysDI think he is already booted in th e ram16:21
ChrysDas i can change the kernel16:22
ChrysDwhile the board is booted16:22
ChrysDi already tried to do an scp of the kernel16:22
ChrysDoh maybe you mean rootfs is not on the ram16:22
ChrysDin the*16:22
ChrysDi said nothing.16:23
nrossiChrysD: you are using a rootfs from the sdcard at the moment yes? e.g. root=/dev/mmcblk0p216:23
ChrysDyeah16:23
nrossiChrysD: that would prevent you from removing the sd card, but if you put the rootfs in ram, then once booted the sd is not needed, you can remove and replace with the sdcard you want to load the image on16:24
*** yann|work <yann|work!~yann@178.208.16.32> has quit IRC16:24
*** ant_home <ant_home!~ant__@host201-77-dynamic.251-95-r.retail.telecomitalia.it> has quit IRC16:26
ChrysDnrossi : you mean if i want to make rootfs changes16:29
nrossiChrysD: just an idea if you cant attach you sd card to your build machine16:29
ChrysDnrossi : yeah yeah i have understand. So i put the rootfs in the ram so that i can change it in my sdcard.16:30
ChrysDnrossi : the best would be to have the rootfs in nfs16:30
nrossiChrysD: yep exactly, nfs rootfs works too16:31
ChrysDnrossi : I need to work into my linux workflow ...16:31
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has joined #yocto16:32
ChrysDnrossi : i copied the /git folrder of the linux folder for kernel developpement and i took the run.do_compile / run .do_configure and run.do_compile_kernelmodules ( i modified path ) so that i can work into kernel quickly.16:32
nrossiChrysD: have a look at EXTERNALSRC, saves having to work out of the oe build16:33
*** martinkelly <martinkelly!~martin@71-35-172-156.tukw.qwest.net> has joined #yocto16:40
ChrysDnrossi : ok thanks16:40
ChrysDnrossi : i don't understand how win32disk installer coudl have a problem16:42
ChrysDhe jus tneed to write the binaryahah16:42
*** dreyna <dreyna!~dreyna@62.168.35.66> has joined #yocto16:43
*** vdehors_arc_ <vdehors_arc_!~vincent@LPuteaux-657-1-103-59.w193-248.abo.wanadoo.fr> has quit IRC16:44
nrossiChrysD: depends on the sd reader drivers, i've seen mention of issues before16:44
ChrysDnrossi : i have to go, thanks for the help , i've appreciate, also about learning losetup =) If you have time, do you mind explain me what's your workflow ?16:46
ChrysDnrossi : i mean next time :D16:46
*** hbruce <hbruce!hbruce@nat/intel/x-ykkfauvpjdtduxio> has quit IRC16:47
nrossiChrysD: sure, ping me if im on16:47
*** mihai- <mihai-!~mihai@unaffiliated/mihai> has quit IRC16:47
ChrysDnrossi : thanks a lot, bye !16:47
*** ChrysD <ChrysD!c16cc543@gateway/web/freenode/ip.193.108.197.67> has quit IRC16:47
*** gnac <gnac!~gnac@or-71-0-52-80.sta.embarqhsd.net> has joined #yocto16:47
*** mihai- <mihai-!~mihai@unaffiliated/mihai> has joined #yocto16:47
*** dreyna <dreyna!~dreyna@62.168.35.66> has quit IRC16:48
*** tavish <tavish!~tavish@unaffiliated/tavish> has joined #yocto16:49
*** mihai- <mihai-!~mihai@unaffiliated/mihai> has quit IRC16:57
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-pahenwkbhopiyluc> has joined #yocto16:59
*** lamego <lamego!~jose@134.134.139.75> has quit IRC17:04
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC17:05
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC17:08
*** jku <jku!~jku@dyj-skyyyyyyyyyyyyycy-3.rev.dnainternet.fi> has joined #yocto17:11
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC17:12
*** tavish_ <tavish_!~tavish@unaffiliated/tavish> has joined #yocto17:12
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:afa7:3934:77d7:672a> has joined #yocto17:15
*** tavish <tavish!~tavish@unaffiliated/tavish> has quit IRC17:16
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has quit IRC17:20
*** gtristan <gtristan!~tristanva@110.11.179.89> has quit IRC17:23
*** dreyna <dreyna!~dreyna@62.168.35.125> has joined #yocto17:23
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto17:27
*** lamego <lamego!jose@nat/intel/x-usekrbsuhzeuhygy> has joined #yocto17:29
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto17:38
*** stefan_ <stefan_!~stefan@ipbcc3cd28.dynamic.kabel-deutschland.de> has joined #yocto17:47
*** sjolley <sjolley!~sjolley@134.134.139.74> has quit IRC17:49
otavionayfe: I think the changes are going to be small; check the mailing list or contact me in private17:56
otavionayfe: we can assist you if need17:57
*** sjolley <sjolley!~sjolley@134.134.139.73> has joined #yocto18:01
*** jg_ <jg_!~jg@static-173-76-34-203.bstnma.fios.verizon.net> has joined #yocto18:12
*** falk0n <falk0n!~falk0n@a79-168-122-231.cpe.netcabo.pt> has quit IRC18:19
*** jku <jku!~jku@dyj-skyyyyyyyyyyyyycy-3.rev.dnainternet.fi> has quit IRC18:22
*** bodangly <bodangly!~bodangly@24-240-128-46.static.davl.vt.charter.com> has joined #yocto18:26
*** bodangly_ <bodangly_!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has joined #yocto18:28
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:afa7:3934:77d7:672a> has quit IRC18:30
*** bodangly <bodangly!~bodangly@24-240-128-46.static.davl.vt.charter.com> has quit IRC18:31
*** gtristan <gtristan!~tristanva@110.11.179.89> has joined #yocto18:35
*** thaytan <thaytan!~jan@2a02:aa10:b580:9080:afa7:3934:77d7:672a> has joined #yocto18:38
*** Martian <Martian!~martian@84.40.91.35> has joined #yocto18:38
*** Monty_ <Monty_!62d99026@gateway/web/freenode/ip.98.217.144.38> has quit IRC18:41
*** scottrif <scottrif!~scottrif@47.39.44.219> has joined #yocto18:55
*** bluelightning <bluelightning!~paul@2406:e001:3d9d:1:5e51:4fff:febb:401d> has joined #yocto18:58
*** bluelightning <bluelightning!~paul@2406:e001:3d9d:1:5e51:4fff:febb:401d> has quit IRC18:58
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto18:58
*** joshuagl <joshuagl!joshuagl@nat/intel/x-geigfhflcorapfvt> has quit IRC18:59
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has joined #yocto19:04
*** kpo <kpo!~bob@user-94-254-253-24.play-internet.pl> has joined #yocto19:06
*** sjolley <sjolley!~sjolley@134.134.139.73> has quit IRC19:09
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC19:15
crazy_imphi19:18
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto19:19
crazy_impwhat is the best way  to change a kernel recipe?19:19
*** jg_ <jg_!~jg@static-173-76-34-203.bstnma.fios.verizon.net> has quit IRC19:23
*** bodangly_ is now known as bodangly19:30
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC19:36
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-pahenwkbhopiyluc> has quit IRC19:39
*** Willy-- <Willy--!188a097e@gateway/web/freenode/ip.24.138.9.126> has quit IRC19:54
*** bodangly <bodangly!~bodangly@c-24-218-194-93.hsd1.ct.comcast.net> has quit IRC19:55
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-sgsrstwjgpyuvmfj> has quit IRC19:57
*** martinkelly <martinkelly!~martin@71-35-172-156.tukw.qwest.net> has quit IRC19:58
*** rubdos <rubdos!~rubdos@ptr-1uzevqefjgxdm5wv65h.18120a2.ip6.access.telenet.be> has quit IRC19:58
*** catch22 <catch22!~catch22__@204.40.96.58.static.exetel.com.au> has joined #yocto20:05
*** stefan_ <stefan_!~stefan@ipbcc3cd28.dynamic.kabel-deutschland.de> has quit IRC20:07
*** tavish_ <tavish_!~tavish@unaffiliated/tavish> has quit IRC20:11
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC20:15
*** rajm <rajm!~robertmar@u217-75-209-98.static.grapesc.cz> has quit IRC20:16
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-ytjhiacssaztsqcp> has joined #yocto20:26
*** anselmolsm <anselmolsm!~anselmols@134.134.139.76> has joined #yocto20:28
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto20:29
*** anselmolsm <anselmolsm!~anselmols@134.134.139.76> has left #yocto20:30
*** martinkelly <martinkelly!~martin@71-35-172-156.tukw.qwest.net> has joined #yocto20:32
*** nemequ <nemequ!~nemequ@2600:8801:d100:0:91b7:cf33:d97f:785c> has quit IRC20:37
*** nemequ <nemequ!~nemequ@ip68-111-200-158.sd.sd.cox.net> has joined #yocto20:39
*** jg_ <jg_!~jg@2601:18f:981:82c5:b801:1568:8ad3:7bf5> has joined #yocto20:51
*** RP1 <RP1!~richard@62.168.35.108> has joined #yocto20:53
*** RP1 is now known as RP20:53
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-wlsmvzvddayhvtfk> has quit IRC20:58
*** ant_home <ant_home!~ant__@host6-253-dynamic.44-79-r.retail.telecomitalia.it> has joined #yocto20:59
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto20:59
*** armpit <armpit!~armpit@62.168.35.105> has joined #yocto21:00
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC21:01
*** melonipoika <melonipoika!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC21:01
* armpit arrg.. builds driving me crazy21:01
*** lamego <lamego!jose@nat/intel/x-usekrbsuhzeuhygy> has quit IRC21:06
LetoThe2ndarmpit:21:09
LetoThe2ndorly? :-P21:10
*** pohly1 <pohly1!~pohly@p54BD58CF.dip0.t-ipconnect.de> has quit IRC21:13
*** marka <marka!~masselst@135-23-92-83.cpe.pppoe.ca> has quit IRC21:22
*** rcwoolley_ <rcwoolley_!~rwoolley@128.224.252.2> has quit IRC21:23
*** dreyna <dreyna!~dreyna@62.168.35.125> has quit IRC21:27
*** jg_ <jg_!~jg@2601:18f:981:82c5:b801:1568:8ad3:7bf5> has quit IRC21:30
*** sjolley <sjolley!~sjolley@134.134.139.74> has joined #yocto21:36
*** dreyna <dreyna!~dreyna@62.168.35.125> has joined #yocto21:37
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto21:42
*** dreyna <dreyna!~dreyna@62.168.35.125> has quit IRC21:45
*** sjolley <sjolley!~sjolley@134.134.139.74> has quit IRC22:04
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC22:14
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC22:14
*** jg_ <jg_!~jg@2601:18f:981:82c5:b801:1568:8ad3:7bf5> has joined #yocto22:39
*** stephano <stephano!~stephano@134.134.139.75> has quit IRC22:39
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto23:04
*** berndhs <berndhs!~berndhs@s72-38-197-91.static.datacom.cgocable.net> has joined #yocto23:05
*** nathani_ <nathani_!~nathani@mail.validmanufacturing.com> has quit IRC23:08
*** ant_home <ant_home!~ant__@host6-253-dynamic.44-79-r.retail.telecomitalia.it> has quit IRC23:18
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-ieiufdbkifkmdilz> has quit IRC23:25
*** kpo <kpo!~bob@user-94-254-253-24.play-internet.pl> has quit IRC23:32
*** sgw <sgw!~swold@134.134.139.76> has quit IRC23:35
*** scottrif <scottrif!~scottrif@47.39.44.219> has quit IRC23:40
*** berndhs <berndhs!~berndhs@s72-38-197-91.static.datacom.cgocable.net> has quit IRC23:42
*** Martian <Martian!~martian@84.40.91.35> has quit IRC23:44
paulg_ls23:58
paulg_ls23:58

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