*** kpo_ <kpo_!~bob@user-94-254-140-220.play-internet.pl> has quit IRC | 00:04 | |
*** sgw <sgw!swold@nat/intel/x-yaoloxhdlupieihn> has quit IRC | 00:06 | |
*** martinkelly1 <martinkelly1!~martin@205.175.118.174> has quit IRC | 00:26 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 00:26 | |
*** bavery_fn <bavery_fn!~bavery@134.134.139.75> has joined #yocto | 00:27 | |
*** ant_home <ant_home!~ant__@host184-216-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC | 00:32 | |
*** User12345678 <User12345678!~User@mti-37-145.tm.net.my> has joined #yocto | 00:33 | |
*** lukma1 <lukma1!~Thunderbi@89-64-54-216.dynamic.chello.pl> has joined #yocto | 00:43 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 00:43 | |
*** lukma <lukma!~Thunderbi@89-64-27-66.dynamic.chello.pl> has quit IRC | 00:44 | |
*** lukma1 is now known as lukma | 00:44 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 00:48 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 00:48 | |
*** lukma1 <lukma1!~Thunderbi@89-64-27-66.dynamic.chello.pl> has joined #yocto | 00:49 | |
*** lukma <lukma!~Thunderbi@89-64-54-216.dynamic.chello.pl> has quit IRC | 00:49 | |
*** lukma1 is now known as lukma | 00:49 | |
*** msvb-lab <msvb-lab!~michael@x55b5440e.dyn.telefonica.de> has quit IRC | 01:04 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has joined #yocto | 01:14 | |
*** msvb-lab <msvb-lab!~michael@x55b54115.dyn.telefonica.de> has joined #yocto | 01:17 | |
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has quit IRC | 01:30 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 01:34 | |
*** sgw <sgw!~swold@c-73-180-42-186.hsd1.or.comcast.net> has joined #yocto | 01:39 | |
*** sgw1 <sgw1!~swold@134.134.139.72> has joined #yocto | 01:42 | |
*** sgw <sgw!~swold@c-73-180-42-186.hsd1.or.comcast.net> has quit IRC | 01:44 | |
*** sgw1 is now known as sgw | 01:44 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-pktsrmaqodsynmag> has joined #yocto | 01:46 | |
*** zarzar <zarzar!~zarzar@184.75.233.58> has quit IRC | 01:57 | |
*** zarzar <zarzar!~zarzar@184.75.233.58> has joined #yocto | 01:58 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC | 02:00 | |
*** CoLa <CoLa!cordlandwe@kde/cordlandwehr> has quit IRC | 02:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto | 02:02 | |
*** CoLa <CoLa!cordlandwe@gateway/shell/kde/x-tabsbbazaspccnyp> has joined #yocto | 02:04 | |
*** CoLa is now known as Guest84771 | 02:05 | |
*** Snert <Snert!~LoginName@106-24-237-24.gci.net> has joined #yocto | 02:08 | |
*** User12345678 is now known as learningc | 02:20 | |
learningc | I'm confused with .config and defconfig. When I bitbake virtual/kernel -c menuconfig, it produce .config or defconfig? Do I need both to bitbake virtual/kernel? | 02:27 |
---|---|---|
*** stephano <stephano!~stephano@134.134.139.83> has quit IRC | 02:40 | |
bluelightning | learningc: bitbake -c menuconfig will just write to the .config, if you wanted to include that in a recipe properly you would rename it to defconfig, put it next to the recipe and add it to SRC_URI; alternatively you can do bitbake -c diffconfig virtual/kernel and you'll get a config fragment you can use with just the changes in it | 02:42 |
bluelightning | learningc: you only need to do that when you're actually happy with the final configuration though | 02:42 |
learningc | bluelightning, should I bother with defconfig file at all? If I bitbake virtual/kernel, does it require .config or defconfig? | 02:51 |
bluelightning | learningc: if you have done bitbake virtual/kernel -c menuconfig you only need to go ahead and build the kernel, no need to worry about the defconfig | 02:52 |
bluelightning | learningc: but bear in mind that your config changes are temporary at this point, once you are finished making changes you should move it to a defconfig next to the recipe or a config fragment | 02:53 |
bluelightning | (otherwise if for example you did bitbake -c clean virtual/kernel or deleted your TMPDIR your changes would be gone) | 02:54 |
learningc | bluelightning, I see. Thanks. Getting clearer in my mind | 02:54 |
learningc | bluelightning, Where is the recipe directory that I should put the defconfig located? There are so many directories in tmp/ that I'm getting lost | 02:56 |
bluelightning | learningc: the defconfig, should you want to preserve it, should go in a subdirectory named "files" or the same name as the recipe right next to the recipe file itself | 02:57 |
bluelightning | then you need to add "file://defconfig" to SRC_URI within the recipe if it isn't already there | 02:58 |
learningc | bluelightning, After I copy the defconfig next to recipe and add file://defconfig to SRC_URI, the next time I do source poky/oe-init-build-env, bitbake virtual/kernel will use that defconfig file after renaming it to .config? | 03:02 |
bluelightning | learningc: yes | 03:02 |
bluelightning | though if you're in the same shell session, no need to re-source the environment setup script | 03:03 |
learningc | bluelightning, But how will bitbake know the defconfig file has changed since it has already created the build directory? | 03:05 |
bluelightning | learningc: any changes to recipes or files they refer to (e.g. in SRC_URI) will be noticed by bitbake on the next execution | 03:06 |
learningc | I see | 03:06 |
learningc | bluelightning, But what will happen to the original defconfig file in the recipe directory? When I copy my .config file into a defconfig file in the recipe directory, won't it erase the original one? | 03:08 |
bluelightning | learningc: sorry I'm not following - the "original one"? | 03:14 |
learningc | bluelightning, I suppose there must be an "original" defconfig file to use to build the kernel when I clone poky? | 03:16 |
bluelightning | learningc: with linux-yocto, no - the configuration is assembled from fragments based upon enabled features - for more details see our kernel manual | 03:17 |
learningc | bluelightning, I mean, what file will bitbake use when I bitbake my kernel without creating any .config/defconfig file ? | 03:17 |
learningc | I see | 03:18 |
*** jg_ <jg_!~jg@2601:18f:981:82c5:a800:914c:7bb3:48f7> has quit IRC | 03:19 | |
learningc | bluelightning, I'm not sure where is the recipe directory to put the defconfig copy. Is it in build directory created by source poky/oe-init-build-env or in the poky directory when I clone poky? | 03:22 |
bluelightning | learningc: the latter | 03:22 |
bluelightning | learningc: however note that as a matter of best practice you wouldn't modify the original recipe, you would create a bbappend with the changes in it in your own layer | 03:23 |
bluelightning | that makes it easier to handle upgrading in the future - i.e. you're not dealing with a forked repository | 03:24 |
learningc | bluelightning, I see. Many thanks to you. | 03:25 |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 03:40 | |
*** bananadev <bananadev!~onlyester@118.70.128.150> has joined #yocto | 03:44 | |
*** zerus_ <zerus_!~petter@host-95-199-16-41.mobileonline.telia.com> has joined #yocto | 03:53 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-uhrnpoqpuuiuktyx> has quit IRC | 03:57 | |
*** zerus__ <zerus__!~petter@host-95-199-24-253.mobileonline.telia.com> has joined #yocto | 04:01 | |
*** zerus_ <zerus_!~petter@host-95-199-16-41.mobileonline.telia.com> has quit IRC | 04:03 | |
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-gywffkgtnqvkwgyx> has quit IRC | 04:15 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 04:28 | |
*** zerus__ <zerus__!~petter@host-95-199-24-253.mobileonline.telia.com> has quit IRC | 04:28 | |
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has joined #yocto | 04:30 | |
*** zerus_ <zerus_!~petter@h-155-4-31-3.NA.cust.bahnhof.se> has joined #yocto | 04:51 | |
*** gtristan <gtristan!~tristanva@110.11.179.89> has quit IRC | 04:52 | |
*** zerus_ <zerus_!~petter@h-155-4-31-3.NA.cust.bahnhof.se> has quit IRC | 04:56 | |
*** jratz <jratz!~jratz@pool-100-36-248-77.washdc.fios.verizon.net> has quit IRC | 05:05 | |
*** jratz <jratz!~jratz@pool-100-36-248-77.washdc.fios.verizon.net> has joined #yocto | 05:06 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 05:07 | |
*** AndersD <AndersD!~anders@194.237.220.218> has joined #yocto | 05:12 | |
*** AndersD <AndersD!~anders@194.237.220.218> has quit IRC | 05:15 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto | 05:16 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC | 05:18 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has joined #yocto | 05:20 | |
*** bananadev <bananadev!~onlyester@118.70.128.150> has quit IRC | 05:21 | |
*** gtristan <gtristan!~tristanva@114.207.54.40> has joined #yocto | 05:26 | |
*** edgar444 <edgar444!uid214381@gateway/web/irccloud.com/x-ysecyctmdrrxuhhm> has joined #yocto | 05:37 | |
*** malconxx <malconxx!~mabs@unaffiliated/malconxx> has joined #yocto | 05:43 | |
*** malconxx <malconxx!~mabs@unaffiliated/malconxx> has left #yocto | 05:44 | |
*** pohly <pohly!~pohly@p5DE8C2E3.dip0.t-ipconnect.de> has joined #yocto | 06:03 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 06:13 | |
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto | 06:18 | |
*** open-nandra <open-nandra!~marek@81.89.61.168.host.vnet.sk> has joined #yocto | 06:19 | |
*** vdehors <vdehors!~vdehors@37.169.39.80> has joined #yocto | 06:24 | |
*** nayfe <nayfe!d433a784@gateway/web/freenode/ip.212.51.167.132> has quit IRC | 06:35 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 06:39 | |
*** avalluri <avalluri!avalluri@nat/intel/x-iowlmfgcmblwddha> has quit IRC | 06:43 | |
*** bananadev <bananadev!~onlyester@118.70.128.150> has joined #yocto | 06:44 | |
*** Bunio_FH <Bunio_FH!~bunio@hC35A6AB6.cli.nitronet.pl> has joined #yocto | 06:46 | |
*** mattsm <mattsm!~mattsm@75-13-95-234.lightspeed.austtx.sbcglobal.net> has quit IRC | 06:47 | |
*** avalluri <avalluri!avalluri@nat/intel/x-pdmghhqbekktgbbo> has joined #yocto | 06:47 | |
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has joined #yocto | 06:51 | |
*** mattsm <mattsm!~mattsm@2602:304:b0d5:feac:5964:2f77:45a5:a898> has joined #yocto | 06:55 | |
*** fl0v0 <fl0v0!~fvo@p4FC0AA1F.dip0.t-ipconnect.de> has joined #yocto | 07:00 | |
*** colrack <colrack!~colrack@94.126.8.166> has joined #yocto | 07:02 | |
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto | 07:09 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 07:17 | |
*** diego_r <diego_r!~diego@151.51.122.152> has joined #yocto | 07:18 | |
*** nayfe <nayfe!d433a784@gateway/web/freenode/ip.212.51.167.132> has joined #yocto | 07:22 | |
*** Dvorkin_ <Dvorkin_!b072cc0c@gateway/web/freenode/ip.176.114.204.12> has quit IRC | 07:27 | |
*** yann <yann!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC | 07:29 | |
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto | 07:38 | |
*** rob_w <rob_w!~bob@93.104.205.194> has joined #yocto | 07:43 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 07:43 | |
*** joshuagl <joshuagl!joshuagl@nat/intel/x-atgkxucfbbvdnhhn> has joined #yocto | 07:46 | |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-mmeogqkfnkcaqwor> has joined #yocto | 07:47 | |
*** toscalix <toscalix!~toscalix@80.91.95.114> has joined #yocto | 07:50 | |
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has joined #yocto | 07:56 | |
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto | 07:57 | |
*** John_K_ <John_K_!446fc350@gateway/web/freenode/ip.68.111.195.80> has quit IRC | 07:59 | |
*** lemagoup <lemagoup!~lemagoup@158.255.112.194> has joined #yocto | 08:02 | |
*** dreyna <dreyna!~dreyna@2601:646:4201:b1a0:94e2:7fe6:ea28:d106> has quit IRC | 08:03 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 08:04 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 08:07 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 08:14 | |
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has quit IRC | 08:15 | |
*** Bunio_FH <Bunio_FH!~bunio@hC35A6AB6.cli.nitronet.pl> has quit IRC | 08:21 | |
*** rburton <rburton!~textual@home.burtonini.com> has joined #yocto | 08:28 | |
*** yann <yann!~yann@178.208.16.32> has joined #yocto | 08:38 | |
*** RP1 is now known as RP | 08:46 | |
*** m4ho <m4ho!~m4ho@unaffiliated/m4ho> has quit IRC | 08:55 | |
*** m4ho <m4ho!~m4ho@unaffiliated/m4ho> has joined #yocto | 08:57 | |
*** schtob <schtob!6cab85a8@piratenpartei/BY/schtobia> has joined #yocto | 08:59 | |
*** Bunio_FH <Bunio_FH!~bunio@188.146.166.157.nat.umts.dynamic.t-mobile.pl> has joined #yocto | 09:01 | |
*** schtob is now known as schtobia | 09:01 | |
*** JaMa <JaMa!~martin@217.30.68.212> has quit IRC | 09:04 | |
*** kjokinie <kjokinie!~kjokinie@145.247.120.245> has quit IRC | 09:12 | |
*** kjokinie <kjokinie!~kjokinie@145.247.120.245> has joined #yocto | 09:12 | |
*** Bunio_FH <Bunio_FH!~bunio@188.146.166.157.nat.umts.dynamic.t-mobile.pl> has quit IRC | 09:12 | |
*** bavery_fn <bavery_fn!~bavery@134.134.139.75> has quit IRC | 09:14 | |
*** sgw <sgw!~swold@134.134.139.72> has quit IRC | 09:14 | |
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has quit IRC | 09:18 | |
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has joined #yocto | 09:21 | |
*** sgw <sgw!swold@nat/intel/x-kxfmflgflqknmmhf> has joined #yocto | 09:29 | |
*** Ox4 <Ox4!~user@unaffiliated/zloy> has joined #yocto | 09:29 | |
*** bavery_fn <bavery_fn!bavery@nat/intel/x-gmmindtinbfnpktz> has joined #yocto | 09:29 | |
Ox4 | hello guys | 09:29 |
Ox4 | I need to place particular packages version to text file in the image. Is there elegant approach to do this? | 09:30 |
LetoThe2nd | you mean something like a version manifest? | 09:30 |
*** baali <baali!~baali@27.56.144.226> has joined #yocto | 09:32 | |
*** cordlandwehr <cordlandwehr!~cordlandw@91.239.177.14> has joined #yocto | 09:33 | |
Ox4 | LetoThe2nd: yep | 09:34 |
LetoThe2nd | look at the buildinfo stuff, i think it can do something alike. maybe with some massaging | 09:34 |
*** cordlandwehr is now known as CoLa|work | 09:36 | |
Ox4 | LetoThe2nd: thank you | 09:36 |
LetoThe2nd | good luck | 09:36 |
Ox4 | LetoThe2nd: did you mean this bbclass -> https://git.yoctoproject.org/cgit.cgi/poky/plain/meta/classes/image-buildinfo.bbclass ? | 09:38 |
LetoThe2nd | Ox4: yes i think so | 09:38 |
LetoThe2nd | maybe its not a perfect fit, but a start | 09:38 |
Ox4 | understood | 09:38 |
*** ant_work <ant_work!~ant__@host18-113-dynamic.16-79-r.retail.telecomitalia.it> has joined #yocto | 09:38 | |
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto | 09:41 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 09:48 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-zudozbjjhfaxcdxj> has joined #yocto | 09:49 | |
*** Chep <Chep!~chep@san13-h05-176-143-154-85.dsl.sta.abo.bbox.fr> has joined #yocto | 09:52 | |
Chep | hi | 09:53 |
Chep | is it possible to include an inc file from an other layer? if the inc file does also include inc files, will path be ok? | 09:54 |
LetoThe2nd | should be ok, just give it the full path. | 09:55 |
Chep | I tried but I got problem with SRCPV | 09:57 |
Chep | if I put my recipe in the layer with inc files, SRCPV is resolved | 09:57 |
Chep | if I put my recipe in another layer with full path includes, I got a "versions of u-boot available: my_version+git${SRCPV}" | 09:58 |
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC | 09:59 | |
*** rajm <rajm!~robertmar@167.98.27.226> has joined #yocto | 10:00 | |
Chep | my bad there was an error in path ... thanks LetoThe2nd | 10:01 |
LetoThe2nd | :-) | 10:01 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 10:10 | |
*** vdehors <vdehors!~vdehors@37.169.39.80> has quit IRC | 10:17 | |
Ox4 | When is manifest file generated? | 10:18 |
Ox4 | after which phase? | 10:18 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 10:24 | |
LetoThe2nd | Ox4: image preprocessing | 10:36 |
*** schtobia <schtobia!6cab85a8@piratenpartei/BY/schtobia> has quit IRC | 10:42 | |
*** learningc <learningc!~User@mti-37-145.tm.net.my> has quit IRC | 10:46 | |
*** hnje1 <hnje1!~hnje@81.216.59.226> has joined #yocto | 10:50 | |
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC | 10:53 | |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has joined #yocto | 10:58 | |
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-mlppslmboscfqkvt> has joined #yocto | 10:59 | |
*** warthog9 <warthog9!~warthog9@proxy.monkeyblade.net> has quit IRC | 11:03 | |
*** warthog9 <warthog9!~warthog9@proxy.monkeyblade.net> has joined #yocto | 11:04 | |
*** bananadev <bananadev!~onlyester@118.70.128.150> has quit IRC | 11:10 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 11:16 | |
*** kpo_ <kpo_!~bob@156.17.9.109> has joined #yocto | 11:16 | |
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has joined #yocto | 11:19 | |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has quit IRC | 11:19 | |
*** vdehors <vdehors!~vdehors@37.169.39.80> has joined #yocto | 11:27 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 11:33 | |
*** hnje1 is now known as hnje | 11:35 | |
*** hnje <hnje!~hnje@81.216.59.226> has joined #yocto | 11:35 | |
*** Ramose <Ramose!c05e2222@gateway/web/freenode/ip.192.94.34.34> has joined #yocto | 11:42 | |
Ramose | I am seeing this error, https://paste.ubuntu.com/25679130/ can anyone please me out , how should I fix it | 11:44 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 11:47 | |
*** Ramose <Ramose!c05e2222@gateway/web/freenode/ip.192.94.34.34> has quit IRC | 11:47 | |
*** Ramose <Ramose!c05e2222@gateway/web/freenode/ip.192.94.34.34> has joined #yocto | 11:49 | |
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has joined #yocto | 11:50 | |
JaMa | Ramose: did you do what the last line says? | 11:50 |
Ramose | JaMa: This conf/site.conf doesn't exist | 11:52 |
Ramose | This *file | 11:52 |
*** kpo_ <kpo_!~bob@156.17.9.109> has quit IRC | 11:55 | |
*** Ramose <Ramose!c05e2222@gateway/web/freenode/ip.192.94.34.34> has quit IRC | 12:00 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has joined #yocto | 12:00 | |
*** pev <pev!~pev@95.147.121.60> has joined #yocto | 12:03 | |
pev | Hey all | 12:03 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 12:04 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 12:05 | |
pev | Interesting question : I've got an old project via yocto 1.6 thats been stable a long time, but needs dropbear updating for security. Now, normally id just copy in the suitable upstream recipe but theres already a dropbear.inc in the common poky dir... What's the "right" way to do this? Obv I can just bodge over the top in the poky dir but isn't there a better approach? | 12:05 |
pev | *copy the upstream recipe into my own layer | 12:05 |
RP | pev: you can put a copy of the .inc in the new layer? | 12:06 |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 12:08 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 12:17 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 12:20 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 12:21 | |
pev | RP: Ah, grand! Will that then supercede the version under poky? | 12:21 |
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto | 12:28 | |
*** kanavin <kanavin!~ak@192.198.151.43> has quit IRC | 12:30 | |
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC | 12:30 | |
*** kanavin <kanavin!~ak@192.198.151.43> has joined #yocto | 12:31 | |
*** Nilesh_ <Nilesh_!uid116340@gateway/web/irccloud.com/x-pktsrmaqodsynmag> has quit IRC | 12:35 | |
rburton | pev: the recipe will look in the same folder before hunting around | 12:37 |
*** pev <pev!~pev@95.147.121.60> has quit IRC | 12:46 | |
*** ant_work <ant_work!~ant__@host18-113-dynamic.16-79-r.retail.telecomitalia.it> has quit IRC | 13:00 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 13:03 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has quit IRC | 13:04 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.95.192> has joined #yocto | 13:04 | |
*** lamego <lamego!jose@nat/intel/x-ndfxvrzuortpaukh> has joined #yocto | 13:05 | |
*** jg_ <jg_!~jg@2601:18f:981:82c5:a800:914c:7bb3:48f7> has joined #yocto | 13:06 | |
*** ChrysD <ChrysD!c16cc543@gateway/web/freenode/ip.193.108.197.67> has joined #yocto | 13:08 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto | 13:11 | |
*** lukma1 <lukma1!~Thunderbi@89-64-27-66.dynamic.chello.pl> has joined #yocto | 13:14 | |
*** lukma <lukma!~Thunderbi@89-64-27-66.dynamic.chello.pl> has quit IRC | 13:15 | |
*** lukma1 is now known as lukma | 13:15 | |
*** bavery_fn <bavery_fn!bavery@nat/intel/x-gmmindtinbfnpktz> has quit IRC | 13:16 | |
*** tasslehoff <tasslehoff!~Tasslehof@82.147.55.166> has quit IRC | 13:17 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.95.192> has quit IRC | 13:17 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has joined #yocto | 13:18 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has quit IRC | 13:18 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has joined #yocto | 13:18 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 13:23 | |
ChrysD | Hi, what does FILES_${PN} is it for ? And by adding -dev or -dbg or whatever ? Thanks. | 13:30 |
*** baali <baali!~baali@27.56.144.226> has quit IRC | 13:32 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has quit IRC | 13:33 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has joined #yocto | 13:34 | |
*** stephano <stephano!~scetola@134.134.139.82> has joined #yocto | 13:37 | |
LetoThe2nd | ChrysD: its for telling the package management what shall go into the package | 13:38 |
ChrysD | LetoThe2nd : But when you do the " do_install ", it tell where to go to the sysroot. So implicitly it will go into the package no? | 13:39 |
LetoThe2nd | ChrysD: no. | 13:39 |
LetoThe2nd | ChrysD: usually FILES will be a subset of what goes into the sysroot. think manpages. | 13:40 |
ChrysD | For example, in that example, you dont have a FILE_${PN} : http://variwiki.com/index.php?title=Yocto_Hello_World | 13:40 |
LetoThe2nd | ChrysD: because some stuff is inherently in FILES_${PN} unless defined otherwise, like bindir, libdir, etc. | 13:42 |
LetoThe2nd | but it should all be in the docs, after all. | 13:42 |
LetoThe2nd | in a nutshell, you probably need FILES_ if you install something to a non canonical /usr application part | 13:42 |
LetoThe2nd | s/part/path/ | 13:42 |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has quit IRC | 13:43 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has joined #yocto | 13:43 | |
ChrysD | mmmh | 13:43 |
*** sgw <sgw!swold@nat/intel/x-kxfmflgflqknmmhf> has quit IRC | 13:44 | |
*** sgw <sgw!~swold@c-73-180-42-186.hsd1.or.comcast.net> has joined #yocto | 13:44 | |
ChrysD | not sure of understanding but i will still dig. | 13:46 |
LetoThe2nd | ChrysD: http://www.yoctoproject.org/docs/2.3.2/ref-manual/ref-manual.html#var-FILES | 13:49 |
ChrysD | I already read but thanks. | 13:49 |
*** hnje <hnje!~hnje@81.216.59.226> has quit IRC | 13:50 | |
*** sgw <sgw!~swold@c-73-180-42-186.hsd1.or.comcast.net> has quit IRC | 13:52 | |
ChrysD | LetoThe2nd : what confuse me is the fact that with do_install, i have my file into my device without the need of putting FILES. | 13:52 |
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has joined #yocto | 13:53 | |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has joined #yocto | 13:54 | |
*** bavery_fn <bavery_fn!~bavery@134.134.139.73> has joined #yocto | 13:58 | |
*** AndersD <AndersD!~anders@194-237-220-218.customer.telia.com> has quit IRC | 14:00 | |
*** yates <yates!~user@rrcs-96-10-234-158.midsouth.biz.rr.com> has quit IRC | 14:04 | |
*** marka <marka!~masselst@128.224.252.2> has joined #yocto | 14:06 | |
*** open-nandra <open-nandra!~marek@81.89.61.168.host.vnet.sk> has quit IRC | 14:08 | |
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto | 14:11 | |
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has quit IRC | 14:13 | |
*** bbarr <bbarr!~bbarr@ec2-34-231-191-18.compute-1.amazonaws.com> has joined #yocto | 14:15 | |
*** dave0x6d <dave0x6d!uid190567@gateway/web/irccloud.com/x-mlppslmboscfqkvt> has quit IRC | 14:19 | |
*** JoiF <JoiF!~jofr@193.182.166.3> has joined #yocto | 14:23 | |
JoiF | Any device-tree wizards around? | 14:23 |
*** sgw <sgw!~swold@134.134.139.76> has joined #yocto | 14:23 | |
JoiF | I have my amba { slcr@f8000000 { clkc@100 { foo; }; }; }; coming from upstream, but I would like to extend it. | 14:26 |
*** ipuustin <ipuustin!~ipuustin@dyn-jzyhcj-m---xk12qy-3.rev.dnainternet.fi> has quit IRC | 14:26 | |
JoiF | I don't want to overwrite the file from upstream | 14:26 |
JoiF | What is the correct syntax to do that? | 14:27 |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has joined #yocto | 14:29 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 14:30 | |
nrossi | JoiF: Does clkc have a alias, e.g. "clkc: clkc..."? then use &clkc { ...}; otherwise use the path /amba/slcr... {...}; in your top level dts | 14:31 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 14:31 | |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has quit IRC | 14:33 | |
JoiF | nrossi: As always, you're here to save me ;) | 14:33 |
JoiF | But no, it doesn't have an alias | 14:34 |
JoiF | I have to have the full reference, right? With the addresses and everything? | 14:34 |
nrossi | JoiF: I think so, but dtc might have gotten smarter since i last had to use paths ;) | 14:36 |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has joined #yocto | 14:38 | |
*** kanavin <kanavin!~ak@192.198.151.43> has quit IRC | 14:39 | |
ChrysD | What are all the way which kernel modules can be loaded automatically at boot ? I have a meta made by my own, which the image produced had the driver loaded at boot. Now i changed project but still the same meta and now it's not loaded automatically. | 14:39 |
ChrysD | Local.conf are the same. | 14:40 |
ChrysD | the image recipe is the same and distro is the same. | 14:41 |
ChrysD | With bitbake virtual/kernel -c menuconfig , the driver is in "<M>" state | 14:41 |
*** cpf <cpf!~cpf@dial-216-221-43-192.mtl.aei.ca> has joined #yocto | 14:42 | |
nrossi | ChrysD: most common is the KERNEL_MODULE_AUTOLOAD variable which results in the module package containing an entry in /etc/modules-load.d | 14:42 |
ChrysD | nrossi : I know this one, but i didn't needed to set this variable to have my module loaded in the first project. That's why i'm wondering. | 14:43 |
nrossi | ChrysD: could be loaded by udev due to a device needing it, really depends on the module for that though | 14:44 |
*** kanavin <kanavin!~ak@192.198.151.43> has joined #yocto | 14:44 | |
ChrysD | nrossi : it's a camera driver | 14:44 |
ChrysD | nrossi : ov5640 | 14:44 |
ChrysD | nrossi : to be more precise ov5640_camera_mipi | 14:44 |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 14:45 | |
ChrysD | WHich strike me is that the first project, i made my own image recipe which require core-image-minimal and added few packages | 14:45 |
JoiF | nrossi: So we are on the same page that this https://gist.github.com/johannfr/89eb3e6fc15bed7d9bddfa713cccff21 is adding those two lines to whatever is already in clkc@100 at a higher level? ..and not overwriting the entire block? | 14:45 |
JoiF | I guess I'm about to find out .. it just finished compiling ;) | 14:46 |
*** aurele <aurele!~aurele@srvmsg.castel.fr> has quit IRC | 14:46 | |
cpf | I have a newbie question: I want to have libpcap in my image. I would usually use "CORE_IMAGE_EXTRA_INSTALL =+ "libpcap". Howewer I see that I can also do 'bitbake libpcap'. Does the latter also include libpcap in the image? | 14:47 |
rburton | no, the latter just builds the libpcap packages | 14:48 |
rburton | doesn't do anything with images | 14:48 |
ChrysD | bitbake libpcap will only do the package, but doesn't mean that i will be put into your image. | 14:48 |
*** ipuustin <ipuustin!~ipuustin@dyn9kkyrcj-m---xk12qy-3.rev.dnainternet.fi> has joined #yocto | 14:48 | |
cpf | <rburton>: so it is like a test run ? | 14:49 |
rburton | no, it just builds the recipe | 14:49 |
cpf | OK so in my case I will use "CORE_IMAGE_EXTRA_INSTALL =+ "libpcap" since I want the package in the image.. thanks. | 14:50 |
ChrysD | cpf : It allow to build only the recipe instead of all the image for testing purpose. Like if you change a recipe and want to know if it work, it's faster to do bitbake 'recipe' instead of bitbake 'image' | 14:50 |
nrossi | JoiF: valid syntax, but no idea why you are trying to feed the gem1_emio_mux clock back into the clkc? | 14:51 |
cpf | <ChrysD>: yes I see. it makes sense. | 14:51 |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto | 14:52 | |
cdreher | Hello, I'm trying to build with a custom BSP and a custom toolchain. The manual | 14:53 |
cdreher | http://www.yoctoproject.org/docs/1.8/adt-manual/adt-manual.html#optionally-using-an-external-toolchain | 14:53 |
cdreher | states that I shall add the layer that contains the toolchain to my bblayers.conf | 14:53 |
cdreher | How do I build such a layer ? What should I put in that layer ? | 14:53 |
JoiF | nrossi: The reason I'm doing that may have something to do with the fact that I have no idea what I'm doing. ;) | 14:54 |
*** ipuustin <ipuustin!~ipuustin@dyn9kkyrcj-m---xk12qy-3.rev.dnainternet.fi> has quit IRC | 14:54 | |
ChrysD | nrossi : no more idea? | 14:55 |
JoiF | nrossi: But it comes from here: https://forums.xilinx.com/t5/Embedded-Linux/Unable-to-get-25MHz-Frequency-with-gem0-device-connected-to/m-p/687379#M15654 | 14:55 |
JoiF | With modifications from gem0 to gem1 | 14:55 |
*** ipuustin <ipuustin!~ipuustin@dyn-jzyhcj-m---xk12qy-3.rev.dnainternet.fi> has joined #yocto | 14:56 | |
*** gtristan <gtristan!~tristanva@114.207.54.40> has quit IRC | 14:57 | |
JoiF | nrossi: My /sys/kernel/debug/clk/clk_summary at least shows me 25000000 for "gem1_emio_mux" and its child-node "gem1" | 14:57 |
JoiF | Both of which were previously zero | 14:57 |
ChrysD | I have a strange behavior : I have an image recipe which "require recipes-images/images/my-other-image". But my new image doesn't include the image_install of my "required image". :s | 14:57 |
nrossi | ChrysD: hard to say tbh so many ways to load modules :| | 14:58 |
ChrysD | nrossi : ok still thanks | 14:58 |
*** baali <baali!~baali@27.56.144.226> has joined #yocto | 14:58 | |
*** aurele <aurele!~aurele@srvmsg.castel.fr> has joined #yocto | 14:58 | |
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC | 15:02 | |
nrossi | JoiF: ignore me, i forgot you have to route the emio clock into the gem's :| which is done via through clkc | 15:02 |
ChrysD | mhhh when i do -c clean of an image recipe, and i do bitbake image_recipe, is like if it i've done nothing. | 15:05 |
ChrysD | even with -cleanall | 15:05 |
nrossi | ChrysD: some things don't result in a change in the hashes, -c cleansstate to be sure your not using sstate cached content | 15:06 |
ChrysD | nrossi : i've done an image, and after it another image. and the another image had problem so that i wanted to do a clean rebuild | 15:07 |
ChrysD | nrossi : so i guess it was th eproblem | 15:07 |
ChrysD | nrossi : doesn't do nothing. It only do the 'do_rootfs' | 15:09 |
ChrysD | nrossi : the only way is removing tmp/download and sstate folders... | 15:10 |
nrossi | ChrysD: that will be a completely fresh build, and will rebuild everything... | 15:11 |
ChrysD | nrossi : it's what i want | 15:11 |
*** eduardas_m <eduardas_m!~Eduardas@213.197.143.19> has joined #yocto | 15:11 | |
ChrysD | nrossi : i've done a first image " bitbake image1" and from that i've done second image " bitbake image 2". But when i've done the second image, it was directlty to the case of "do_rootfs". SO i wanted to do fresh build with only building "image2" | 15:12 |
*** madhusudhananAnd <madhusudhananAnd!~irc@122.165.96.181> has quit IRC | 15:13 | |
nrossi | ChrysD: sure, if thats what you want :) then you only need to delete tmp and sstate dirs, download is just whats downloaded from the internet | 15:14 |
ChrysD | nrossi : SO what does cleanall do? | 15:15 |
ChrysD | nrossi : fo ra recipe image i mean | 15:15 |
nrossi | ChrysD: http://git.openembedded.org/openembedded-core/tree/meta/conf/documentation.conf#n13 | 15:16 |
*** Ox4 <Ox4!~user@unaffiliated/zloy> has left #yocto | 15:17 | |
ChrysD | nrossi : It's what i've already read. But if i do a -cleanall of an image recipe, it won't clean the recipe which depends the image recipe? | 15:18 |
nrossi | ChrysD: -c clean* only clean the specific target recipe you specify and nothing else | 15:18 |
*** zeddii is now known as zedd_gone | 15:18 | |
ChrysD | nrossi : oh | 15:19 |
ChrysD | nrossi : i thought -c cleanall <image-recipe> will do a kind of "cleaning" | 15:19 |
*** alkino <alkino!~alkino@78.ip-151-80-145.eu> has joined #yocto | 15:19 | |
ChrysD | Thanks | 15:19 |
alkino | hi o/ | 15:19 |
alkino | I got a ctc that is generated for a lot of HOST_TARGET: arm-overkiz-linux-musl, arm-overkiz-linux-gnueabi, arm-overkiz-linux-musleabi, | 15:20 |
alkino | how can we explain that? | 15:20 |
alkino | I need only one, the right one:p | 15:20 |
*** zedd_gone is now known as zeddii | 15:20 | |
ChrysD | I like that documentation.conf instead of the manual, thanks for the discovery ahah | 15:21 |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 15:23 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC | 15:25 | |
*** gtristan <gtristan!~tristanva@110.11.179.89> has joined #yocto | 15:26 | |
*** ipuustin <ipuustin!~ipuustin@dyn-jzyhcj-m---xk12qy-3.rev.dnainternet.fi> has quit IRC | 15:28 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.91.220> has joined #yocto | 15:28 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto | 15:29 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 15:31 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto | 15:33 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 15:33 | |
*** Kakounet <Kakounet!~Thunderbi@che44-1-88-163-87-53.fbx.proxad.net> has quit IRC | 15:34 | |
*** fberg <fberg!~kappe@93-42-191-214.ip88.fastwebnet.it> has joined #yocto | 15:35 | |
eduardas_m | hello, I am exposing a FAT32 partition on my SD card to Windows using g_mass_storage USB gadget driver... and yet it showing up as unallocated... the driver works fine when exposing the partition via USB on Ubuntu 16.04 | 15:35 |
fberg | I have a question.. I have a local poky repository along with the meta-openembedded layer | 15:35 |
eduardas_m | the partition I am exposing was created via wic | 15:36 |
fberg | I have also create a build repository with the downloads directory | 15:36 |
fberg | How can I be sure that I have all the files that are needed to build the image w/o an internet connection ? | 15:37 |
rburton | fberg: bitbake image -cfetchall | 15:38 |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.91.220> has quit IRC | 15:39 | |
fberg | thank you rburton | 15:39 |
fberg | once executed, all the fetched sources will be in the build/download folder ? | 15:39 |
eduardas_m | I am using: modprobe g_mass_storage file=/dev/mmcblk1p4 stall=no | 15:40 |
eduardas_m | am I missing an argument to make this work properly with Windows? | 15:40 |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 15:41 | |
*** rajm <rajm!~robertmar@167.98.27.226> has quit IRC | 15:44 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto | 15:45 | |
*** eduardas_m <eduardas_m!~Eduardas@213.197.143.19> has quit IRC | 15:47 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC | 15:52 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 15:54 | |
*** bavery_fn1 <bavery_fn1!~bavery@134.134.139.73> has joined #yocto | 15:57 | |
*** bavery_fn <bavery_fn!~bavery@134.134.139.73> has quit IRC | 15:57 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 15:57 | |
*** gwilson <gwilson!~gwilson@12.26.104.3> has quit IRC | 15:59 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.96.165> has joined #yocto | 16:05 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 16:06 | |
ChrysD | If i do "require image....." into my new image recipe, what is inside the iMAGE_INSTALL of the required one should be into the new image right? | 16:08 |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has joined #yocto | 16:10 | |
*** mdnneo <mdnneo!~umaucher@217.89.178.116> has quit IRC | 16:10 | |
*** angrysiamese <angrysiamese!~angrysiam@50-207-9-18-static.hfc.comcastbusiness.net> has quit IRC | 16:10 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 16:12 | |
*** stephano <stephano!~scetola@134.134.139.82> has quit IRC | 16:13 | |
*** fl0v0 <fl0v0!~fvo@p4FC0AA1F.dip0.t-ipconnect.de> has quit IRC | 16:14 | |
*** grma <grma!~gruberm@80.93.38.128> has quit IRC | 16:16 | |
*** melonipoika_ <melonipoika_!~quassel@dsl-hkibng22-54f8db-14.dhcp.inet.fi> has quit IRC | 16:17 | |
*** vdehors <vdehors!~vdehors@37.169.39.80> has quit IRC | 16:17 | |
*** fberg <fberg!~kappe@93-42-191-214.ip88.fastwebnet.it> has quit IRC | 16:20 | |
*** zeeblex <zeeblex!~zeeblex@gate-zro.freescale.com> has quit IRC | 16:23 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@106.203.96.165> has quit IRC | 16:24 | |
*** madhusudhananAnd <madhusudhananAnd!~irc@49.207.176.101> has joined #yocto | 16:24 | |
*** yann <yann!~yann@178.208.16.32> has quit IRC | 16:26 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 16:27 | |
*** jg_ <jg_!~jg@2601:18f:981:82c5:a800:914c:7bb3:48f7> has quit IRC | 16:29 | |
*** ipuustin <ipuustin!~ipuustin@dyn9kkyrcj-m---xk12qy-3.rev.dnainternet.fi> has joined #yocto | 16:32 | |
-YoctoAutoBuilder- build #528 of nightly-ppc is complete: Success [build successful] Build details are at https://autobuilder.yocto.io/builders/nightly-ppc/builds/528 | 16:36 | |
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-zudozbjjhfaxcdxj> has quit IRC | 16:38 | |
*** igor <igor!~igor@187.108.42.203> has joined #yocto | 16:40 | |
*** BBoy <BBoy!~pi@188-143-99-155.pool.digikabel.hu> has joined #yocto | 16:47 | |
*** ChrysD <ChrysD!c16cc543@gateway/web/freenode/ip.193.108.197.67> has quit IRC | 16:48 | |
*** stephano <stephano!~scetola@134.134.139.82> has joined #yocto | 16:48 | |
*** gwilson <gwilson!~gwilson@12.26.104.3> has joined #yocto | 16:48 | |
*** BBoy81 <BBoy81!~pi@178-164-195-73.pool.digikabel.hu> has quit IRC | 16:50 | |
*** armpit <armpit!~armpit@2601:202:4001:9ea0:d49e:b0ae:9202:32ab> has quit IRC | 16:51 | |
*** cpf <cpf!~cpf@dial-216-221-43-192.mtl.aei.ca> has quit IRC | 16:57 | |
*** toscalix <toscalix!~toscalix@80.91.95.114> has quit IRC | 16:58 | |
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto | 17:06 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 17:07 | |
*** cpf <cpf!~cpf@dial-216-221-45-1.mtl.aei.ca> has joined #yocto | 17:10 | |
*** tavish <tavish!~tavish@unaffiliated/tavish> has joined #yocto | 17:11 | |
*** sachit <sachit!~sbtkd85@ps3mwgproxy10-dmz.us.dell.com> has quit IRC | 17:28 | |
*** sachit <sachit!~sbtkd85@ps3mwgproxy10-dmz.us.dell.com> has joined #yocto | 17:29 | |
*** cpf <cpf!~cpf@dial-216-221-45-1.mtl.aei.ca> has quit IRC | 17:33 | |
*** cpf <cpf!~cpf@dsl-66-36-131-8.mtl.aei.ca> has joined #yocto | 17:46 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 17:53 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 17:54 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 17:58 | |
*** JaMa <JaMa!~martin@217.30.68.212> has quit IRC | 17:59 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto | 18:00 | |
*** lpotter <lpotter!~quassel@2001:8003:6470:4900:ba27:ebff:febb:59b> has quit IRC | 18:01 | |
*** gwilson <gwilson!~gwilson@12.26.104.3> has quit IRC | 18:01 | |
*** gwilson <gwilson!~gwilson@12.26.104.3> has joined #yocto | 18:02 | |
*** gwilson <gwilson!~gwilson@12.26.104.3> has quit IRC | 18:04 | |
*** lpotter <lpotter!~quassel@120.154.143.16> has joined #yocto | 18:05 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has joined #yocto | 18:07 | |
*** rcw <rcw!~rwoolley@128.224.252.2> has joined #yocto | 18:09 | |
*** peacememories <peacememories!~textual@e245-069.eduroam.tuwien.ac.at> has quit IRC | 18:09 | |
*** cpf <cpf!~cpf@dsl-66-36-131-8.mtl.aei.ca> has quit IRC | 18:11 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 18:18 | |
*** colrack <colrack!~colrack@94.126.8.166> has quit IRC | 18:26 | |
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC | 18:43 | |
*** stefan_ <stefan_!~stefan@ipbcc3cd23.dynamic.kabel-deutschland.de> has joined #yocto | 18:46 | |
*** Noor <Noor!~quassel@110.93.212.98> has quit IRC | 18:51 | |
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto | 18:51 | |
*** yann <yann!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto | 18:52 | |
*** armpit <armpit!~armpit@50-233-148-156-static.hfc.comcastbusiness.net> has joined #yocto | 18:53 | |
*** toanju <toanju!~toanju@x55b61c22.dyn.telefonica.de> has joined #yocto | 19:02 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 19:03 | |
*** bluelightning <bluelightning!~paul@2406:e007:6c74:1:5e51:4fff:febb:401d> has joined #yocto | 19:07 | |
*** bluelightning <bluelightning!~paul@2406:e007:6c74:1:5e51:4fff:febb:401d> has quit IRC | 19:07 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 19:07 | |
*** rcw <rcw!~rwoolley@128.224.252.2> has quit IRC | 19:17 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 19:25 | |
*** bodangly <bodangly!~bodangly@12.178.87.98> has joined #yocto | 19:26 | |
*** kpo_ <kpo_!~bob@user-94-254-140-220.play-internet.pl> has joined #yocto | 19:27 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 19:27 | |
bodangly | I have a problem where GCC optimizations are itnerfering with a patch to some code. Is there a way to disable optimizations for a specific recipe? | 19:28 |
bodangly | I tried to do EXTRA_OEMAKE = " CPPFLAGS=-O0" but then my build fails, looks like its wiping out cppflags that were needed | 19:28 |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 19:29 | |
zarzar | what is the best linux distro for a dev machine for using yocto and cros development for embedded linux? | 19:32 |
bodangly | or how can I get yocto to spit out the log of a successful compilation so I could pull out the whole CFLAGS and hard code them? | 19:32 |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 19:37 | |
kergoth | bodangly: CFLAGS and CPPFLAGS are bitbake variables, just modify them appropriately as you would any other bitbake variable, no need to muck with how they get passed in yourself | 19:38 |
kergoth | that said, there are separate variables that hold the optimization flags, see meta/conf/bitbake.conf | 19:38 |
bodangly | kergoth: can I adjust optimizations for just one recipe? | 19:38 |
kergoth | i don't understandt eh question | 19:39 |
kergoth | they're bitbake variables, set them in the recipe as you would anything else | 19:39 |
kergoth | read the bitbake manual | 19:39 |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 19:41 | |
*** baali <baali!~baali@27.56.144.226> has quit IRC | 19:44 | |
*** stephano <stephano!~scetola@134.134.139.82> has left #yocto | 19:49 | |
*** pohly <pohly!~pohly@p5DE8C2E3.dip0.t-ipconnect.de> has quit IRC | 19:50 | |
bodangly | got it thank you | 19:52 |
bodangly | CFLAGS += " -O0" worked | 19:52 |
*** tavish <tavish!~tavish@unaffiliated/tavish> has quit IRC | 19:58 | |
*** marka <marka!~masselst@128.224.252.2> has quit IRC | 19:59 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 20:04 | |
lsandov1 | zarzar: there are several distros supported by YP, | 20:11 |
lsandov1 | zarzar: somewhere in the docs the exact distro-version map is defined | 20:11 |
*** nrossi <nrossi!uid193926@gateway/web/irccloud.com/x-mmeogqkfnkcaqwor> has quit IRC | 20:16 | |
tcpdump | Is there a way to limit CPU in Yocto? The CPU and GPU are getting pretty damn hot. | 20:42 |
tcpdump | Im wanting to reign it in, and see if that helps. | 20:42 |
*** stephano <stephano!scetola@nat/intel/x-russpagoddeshixw> has joined #yocto | 20:53 | |
*** ant_home <ant_home!~ant__@host184-216-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto | 20:57 | |
bluelightning | tcpdump: you can set BB_NUMBER_THREADS and PARALLEL_MAKE to reduce the parallelism, see what's in your local.conf | 20:59 |
bluelightning | by default these days it automatically scales those based on the number of cores in your system | 21:00 |
bluelightning | if your GPU is getting hot that is something else (or just as a result of the CPU getting hot) - the build system doesn't use the GPU ;) | 21:01 |
*** stephano1 <stephano1!~scetola@192.55.54.42> has joined #yocto | 21:02 | |
*** stephano1 <stephano1!~scetola@192.55.54.42> has quit IRC | 21:03 | |
*** stephano <stephano!scetola@nat/intel/x-russpagoddeshixw> has quit IRC | 21:04 | |
*** toanju <toanju!~toanju@x55b61c22.dyn.telefonica.de> has quit IRC | 21:13 | |
*** joshuagl <joshuagl!joshuagl@nat/intel/x-atgkxucfbbvdnhhn> has quit IRC | 21:14 | |
*** bbarr <bbarr!~bbarr@ec2-34-231-191-18.compute-1.amazonaws.com> has quit IRC | 21:15 | |
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has joined #yocto | 21:17 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 21:24 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 21:26 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 21:30 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 21:33 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has quit IRC | 21:38 | |
*** klynn <klynn!~klynn@2602:306:308b:9c90:7500:a8e0:bc5f:6dac> has joined #yocto | 21:42 | |
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC | 21:44 | |
*** lamego <lamego!jose@nat/intel/x-ndfxvrzuortpaukh> has quit IRC | 21:44 | |
*** aehs29 <aehs29!~aehernan@134.134.139.73> has quit IRC | 21:56 | |
*** aehs29 <aehs29!~aehernan@134.134.139.75> has joined #yocto | 21:56 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC | 21:57 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto | 21:57 | |
*** juvenal <juvenal!~juvenal@189-68-84-45.dsl.telesp.net.br> has joined #yocto | 21:58 | |
*** kpo_ <kpo_!~bob@user-94-254-140-220.play-internet.pl> has quit IRC | 21:59 | |
*** Argylelabcoat <Argylelabcoat!~textual@rrcs-98-100-199-98.central.biz.rr.com> has quit IRC | 22:06 | |
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC | 22:32 | |
*** klynn <klynn!~klynn@2602:306:308b:9c90:7500:a8e0:bc5f:6dac> has quit IRC | 22:35 | |
*** jg_ <jg_!~jg@atmob.haystack.edu> has joined #yocto | 22:35 | |
*** behanw <behanw!uid110099@gateway/web/irccloud.com/x-edhqpnehclauxyrp> has joined #yocto | 22:37 | |
*** agust <agust!~agust@p4FCB648A.dip0.t-ipconnect.de> has quit IRC | 22:44 | |
*** stephano <stephano!~scetola@134.134.139.72> has joined #yocto | 22:45 | |
*** igor <igor!~igor@187.108.42.203> has quit IRC | 22:46 | |
*** rburton <rburton!~textual@home.burtonini.com> has quit IRC | 22:47 | |
*** bbarr <bbarr!~bbarr@ip70-188-182-91.ri.ri.cox.net> has quit IRC | 22:57 | |
*** silviof <silviof!~silviof@unaffiliated/silviof> has quit IRC | 23:04 | |
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has quit IRC | 23:08 | |
*** klynn <klynn!~klynn@99-8-185-201.lightspeed.snfcca.sbcglobal.net> has joined #yocto | 23:08 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has quit IRC | 23:09 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has joined #yocto | 23:10 | |
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-anbiwvcqcsxiempt> has joined #yocto | 23:11 | |
*** sjolley1 <sjolley1!~sjolley@134.134.139.83> has joined #yocto | 23:14 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has quit IRC | 23:14 | |
*** klynn <klynn!~klynn@99-8-185-201.lightspeed.snfcca.sbcglobal.net> has quit IRC | 23:16 | |
*** klynn <klynn!~klynn@99-8-185-201.lightspeed.snfcca.sbcglobal.net> has joined #yocto | 23:23 | |
*** majuk <majuk!~majuk@50-233-77-210-static.hfc.comcastbusiness.net> has quit IRC | 23:28 | |
*** Guma <Guma!~Guma@c-67-184-64-21.hsd1.il.comcast.net> has joined #yocto | 23:35 | |
*** jg_ <jg_!~jg@atmob.haystack.edu> has quit IRC | 23:41 | |
*** sjolley <sjolley!~sjolley@134.134.139.83> has joined #yocto | 23:43 | |
*** sjolley1 <sjolley1!~sjolley@134.134.139.83> has quit IRC | 23:43 | |
*** libby1 <libby1!~libby@134.134.139.72> has left #yocto | 23:44 | |
*** sgw <sgw!~swold@134.134.139.76> has quit IRC | 23:49 | |
*** stephano <stephano!~scetola@134.134.139.72> has quit IRC | 23:52 | |
*** stephano <stephano!~scetola@192.55.55.41> has joined #yocto | 23:54 | |
*** libby <libby!~libby@134.134.139.72> has joined #yocto | 23:58 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!