Sunday, 2020-02-16

*** junland_ <junland_!~junland@142.93.201.46> has quit IRC00:00
*** junland <junland!~junland@142.93.201.46> has joined #yocto00:01
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC00:34
*** zeddii <zeddii!~zeddii@CPE98dac440104d-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC01:17
*** zeddii <zeddii!~zeddii@CPE98dac440104d-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto01:19
*** MiskaX_ is now known as MiskaX01:55
*** MiskaX <MiskaX!zx3hsbtg6r@rankki.sonarnerd.net> has left #yocto01:55
*** MiskaX <MiskaX!zx3hsbtg6r@rankki.sonarnerd.net> has joined #yocto01:55
*** agust <agust!~agust@pD95F1BAA.dip0.t-ipconnect.de> has quit IRC02:00
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto03:17
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC03:27
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC04:05
*** dlan <dlan!~dennis@61.170.191.108> has joined #yocto05:01
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto05:01
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC05:32
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto06:02
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto07:44
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC07:54
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.170.68.214> has joined #yocto08:12
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto08:12
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto08:20
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC08:28
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC08:46
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.170.70.139> has joined #yocto08:47
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto08:47
*** pohly <pohly!~pohly@p5B05600C.dip0.t-ipconnect.de> has joined #yocto08:59
*** locutus_ <locutus_!~LocutusOf@5.170.68.12> has joined #yocto09:04
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto09:04
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC09:07
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC09:10
*** locutus__ <locutus__!~LocutusOf@5.170.70.183> has joined #yocto09:15
*** locutus_ <locutus_!~LocutusOf@5.170.68.12> has quit IRC09:17
*** locutus_ <locutus_!~LocutusOf@5.170.68.226> has joined #yocto09:33
*** locutus__ <locutus__!~LocutusOf@5.170.70.183> has quit IRC09:36
*** Bunio_FH <Bunio_FH!~bunio@107.parkhotel-praha.cz> has joined #yocto09:41
*** Bunio_FH <Bunio_FH!~bunio@107.parkhotel-praha.cz> has quit IRC09:42
*** locutus__ <locutus__!~LocutusOf@5.170.69.78> has joined #yocto09:46
*** locutus_ <locutus_!~LocutusOf@5.170.68.226> has quit IRC09:48
*** NiksDev <NiksDev!~NiksDev@192.91.101.30> has quit IRC09:57
*** NiksDev <NiksDev!~NiksDev@192.91.101.32> has joined #yocto09:57
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto10:11
*** gaston64 <gaston64!669c6e97@102.156.110.151> has joined #yocto10:28
gaston64hello, I am using yocto project to build a Linux image operating system for my embedded board. I need to install some elements to this image which are : g++, gdb, make, rsync, zip . How can I add them to my image please ?10:30
marex-cloudgaston64: add them to  IMAGE_INSTALL10:35
gaston64marex-cloud Okey thank you !10:37
gaston64But can you tell me the difference between IMAGE_INSTALL , IMAGE_INSTALL_append , IMGAE_FEATURES , EXTRA_IMAGE_FEATURES ? please10:38
marex-cloudgaston64: search for this _append only , there's wiki article about it10:38
marex-cloudI'm on a phone, it's hard to type, sorry10:39
gaston64marex-cloud Okey no problem, I am a little bit confused between them and when I want to add some features to my linux image I don't know where to put it in those variables10:40
marex-cloudInto your image recipe or local.conf10:41
marex-cloudWhen in doubt, git grep in meta or oe-core gives plenty of examples10:41
gaston64marex-cloud Okey thanks10:43
marex-cloudIMAGE_INSTALL is for adding packages, IMAGE_FEATURES is for well, features of the image, which is 'above' the recipes and recipes can be built differently depending on which features are enabled10:43
gaston64when I want to add something to my image, I need to take a breath and choose if it is a feature or a package10:45
gaston64It's hard to make a difference between them, isn't it ?10:46
*** locutus__ <locutus__!~LocutusOf@5.170.69.78> has quit IRC10:50
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto10:51
marex-cloudRecipes usually result in packages when they're built, but recipes may check for features to build packages in specific configuration10:52
gaston64I see , this make it more clear for me thanks10:55
marex-cloudIt's also very simplified view11:00
marex-cloudCfr the mega manual for all the nuances11:00
yoctiNew news from stackoverflow: Yocto Top Level Files <https://stackoverflow.com/questions/60247741/yocto-top-level-files>11:00
gaston64Okey I will search for it11:02
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC11:03
gaston64Now, I want to know how can I check if the desired packages are already existing into my image or I must add them manualy ? How can I see what packages are build into my image ?11:03
gaston64I have .manifest file in /tmp/deploy/images/"my_board_name"11:04
gaston64is this the right file to check ?11:05
marex-cloudbitbake -e yourimage | grep IMAGE_INSTALL might be helpful, or check the image build dir11:09
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC11:10
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.170.69.78> has joined #yocto11:10
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto11:10
*** rubdos <rubdos!~rubdos@2a02:578:859d:700:8b44:5716:382d:a7da> has quit IRC11:11
*** agust <agust!~agust@pD95F11D0.dip0.t-ipconnect.de> has joined #yocto11:15
*** rubdos <rubdos!~rubdos@77.109.115.120.adsl.dyn.edpnet.net> has joined #yocto11:16
*** moustafa <moustafa!c533555d@197.51.85.93> has joined #yocto11:28
gaston64marex-cloud thank you for your support11:29
moustafahello11:30
moustafahow I can deploy my qt app on yocto custom image ?11:31
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC11:33
*** gaston64 <gaston64!669c6e97@102.156.110.151> has quit IRC11:41
marex-cloudWrite a recipe for it, add it to your IMAGE_INSTALL in image recipe11:56
moustafawhen I did it , it gave me=> do_unpack: Unpack failure for URL ............12:00
*** bantu <bantu!d9f08f83@pD9F08F83.dip0.t-ipconnect.de> has joined #yocto12:11
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has joined #yocto12:55
*** moustafa <moustafa!c533555d@197.51.85.93> has quit IRC12:59
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC13:05
*** bantu <bantu!d9f08f83@pD9F08F83.dip0.t-ipconnect.de> has quit IRC13:40
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC13:42
*** moustafa <moustafa!c533555d@197.51.85.93> has joined #yocto14:16
*** moustafa <moustafa!c533555d@197.51.85.93> has quit IRC14:58
*** ferry_t <ferry_t!~quassel@2001:981:6fec:1:e030:9ec2:17c0:9fff> has joined #yocto15:31
ferry_tHi I am building a initrd (not built-in initramfs). It is built into a hddimg together with bzImage and is working fine. However, my rootfs only has bzImage. I need to manually copy initrd there, then it boots. How do I add initrd there automatically?15:36
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has joined #yocto15:52
yoctiNew news from stackoverflow: Yocto: overriding kernel configuration <https://stackoverflow.com/questions/60250078/yocto-overriding-kernel-configuration>16:01
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has quit IRC16:01
*** thaytan <thaytan!~thaytan@180-150-69-32.b49645.syd.nbn.aussiebb.net> has joined #yocto16:02
ferry_t@yocto I tried to answer the question on SO16:35
ferry_t@yocti16:36
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has quit IRC16:44
*** amaury_d <amaury_d!~amaury_@lfbn-idf1-1-2172-114.w90-127.abo.wanadoo.fr> has quit IRC16:49
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has joined #yocto16:59
*** Klox <Klox!~Klox@c-24-1-131-19.hsd1.il.comcast.net> has joined #yocto17:00
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has quit IRC17:05
*** JBook_SE <JBook_SE!a434f282@gateway/web/cgi-irc/kiwiirc.com/ip.164.52.242.130> has quit IRC17:05
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto17:08
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has joined #yocto17:12
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC17:17
*** gsalazar <gsalazar!~gsalazar@17.229.60.94.rev.vodafone.pt> has quit IRC17:27
*** amaury_d <amaury_d!~amaury_@lfbn-idf1-1-2172-114.w90-127.abo.wanadoo.fr> has joined #yocto17:36
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto17:39
*** mehmet <mehmet!~mehmet@2a02:8109:b6bf:f9b5:9166:a9d9:b384:d30c> has joined #yocto17:54
*** mehmet <mehmet!~mehmet@2a02:8109:b6bf:f9b5:9166:a9d9:b384:d30c> has quit IRC17:56
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto19:16
*** Klox <Klox!~Klox@c-24-1-131-19.hsd1.il.comcast.net> has quit IRC19:21
*** nerdboy <nerdboy!~sarnold@47.143.129.32> has joined #yocto19:26
*** Klox <Klox!~Klox@c-24-1-131-19.hsd1.il.comcast.net> has joined #yocto19:29
*** nerdboy <nerdboy!~sarnold@47.143.129.32> has quit IRC19:43
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto19:43
*** khem <khem!~khem@unaffiliated/khem> has quit IRC20:21
*** yann <yann!~yann@lstlambert-656-1-138-242.w80-14.abo.wanadoo.fr> has joined #yocto20:33
*** ferry_t <ferry_t!~quassel@2001:981:6fec:1:e030:9ec2:17c0:9fff> has quit IRC20:34
*** yann <yann!~yann@lstlambert-656-1-138-242.w80-14.abo.wanadoo.fr> has quit IRC20:38
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto20:42
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto20:43
*** gsalazar <gsalazar!~gsalazar@2001:818:e633:c100:83a0:92b7:67ab:e154> has joined #yocto20:54
*** gsalazar <gsalazar!~gsalazar@2001:818:e633:c100:83a0:92b7:67ab:e154> has quit IRC21:00
yoctiNew news from stackoverflow: phytec phyBOARD iMX-6 performed poorly when running qt5 opengles application from flash instead of sd card (fps halved) <https://stackoverflow.com/questions/60252992/phytec-phyboard-imx-6-performed-poorly-when-running-qt5-opengles-application-fro>21:02
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC21:04
*** pohly <pohly!~pohly@p5B05600C.dip0.t-ipconnect.de> has quit IRC21:39
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@5.170.241.171> has joined #yocto21:50
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has joined #yocto21:50
*** locutus_ <locutus_!~LocutusOf@5.170.240.244> has joined #yocto21:53
*** locutus__ <locutus__!~LocutusOf@5.171.105.44> has joined #yocto21:55
*** LocutusOfBorg <LocutusOfBorg!~LocutusOf@ubuntu/member/locutusofborg> has quit IRC21:55
*** locutus_ <locutus_!~LocutusOf@5.170.240.244> has quit IRC21:57
*** locutus__ <locutus__!~LocutusOf@5.171.105.44> has quit IRC22:31
*** Klox <Klox!~Klox@c-24-1-131-19.hsd1.il.comcast.net> has quit IRC23:00
*** zeddii <zeddii!~zeddii@CPE98dac440104d-CM64777d5e8820.cpe.net.cable.rogers.com> has quit IRC23:07
*** zeddii <zeddii!~zeddii@CPE98dac440104d-CM64777d5e8820.cpe.net.cable.rogers.com> has joined #yocto23:17
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC23:26
*** agust <agust!~agust@pD95F11D0.dip0.t-ipconnect.de> has quit IRC23:34
*** armpit <armpit!~armpit@2601:202:4180:a5c0:594e:3e2b:6a46:7912> has quit IRC23:41
*** armpit <armpit!~armpit@2601:202:4180:a5c0:9144:9b3e:b52:fa29> has joined #yocto23:54
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC23:57

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!