Friday, 2018-09-28

* armpit this looks funny 00:00
armpitCONFIGUREOPTS_remove = "--disable-static"00:00
armpitEXTRA_OECONF_append = " --enable-static"00:00
ssingh02here's what my apparmor looks like from buildhistory: https://pastebin.com/8d2TRni400:00
ssingh02and here's what perl looks like: https://pastebin.com/D3YyQWFg00:01
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto00:02
ssingh02is it safe to conclude that my apparmor doesn't directly install perl?00:02
ssingh02what does "glibc-mtrace" -> "perl" exactly mean? glibc-mtrace is installing perl?00:02
ssingh02@armpit how can I remove the inheritance on perlnative and pythonnative  via apparmor bbappend? Is that even possible?00:04
*** RP <RP!~RP@5751f4a1.skybroadband.com> has quit IRC00:05
armpitssingh02, not sure. if you can hack up the recipe to remove the bits you don't need, then I can look at if there is a way to clean it up to be more flexible00:12
ssingh02ok, I'll try to get rid of mtrace and see if that gets rid of perl, if not then I'll hack something up00:14
*** geissonator <geissonator!~geissonat@45-18-127-186.lightspeed.austtx.sbcglobal.net> has quit IRC00:32
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto00:37
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC00:40
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC00:42
*** anujm <anujm!anujm@nat/intel/x-wxniulujwqsneekp> has quit IRC00:44
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC00:56
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto00:58
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC01:10
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto01:17
*** falk0n <falk0n!~falk0n@a109-49-149-83.cpe.netcabo.pt> has quit IRC01:31
*** falk0n <falk0n!~falk0n@a109-49-149-83.cpe.netcabo.pt> has joined #yocto01:40
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto01:47
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC02:00
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto02:02
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto02:18
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC02:33
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has quit IRC02:49
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC03:10
*** tgraydon <tgraydon!~textual@134.134.139.76> has quit IRC03:59
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-gtnpdazfsunxwita> has joined #yocto04:40
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto04:52
*** AndersD <AndersD!~AndersD@194.237.220.218> has joined #yocto05:08
*** AndersD <AndersD!~AndersD@194.237.220.218> has quit IRC05:19
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has joined #yocto05:21
jdeldoes bitbake track local git repo state for sstate reasons?05:26
jdelmaybe, more helpfully, is there a way to see if a recipe's sstate is valid, or, if not, why?05:27
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto05:34
*** JaMa <JaMa!~martin@217.30.68.212> has joined #yocto05:40
*** OutBackDingo <OutBackDingo!~quassel@unaffiliated/outbackdingo> has joined #yocto05:43
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC05:47
*** tprrt <tprrt!~tprrt@217.114.201.133> has joined #yocto05:52
jdelhere's another anoying bbclass: systemd06:07
jdelit references the ${D} directory in its do_package step06:07
jdelbut ${D} is populated by do_install, iirc06:07
jdelif that's skipped by setscene, then it can't find any files and complains06:07
*** pohly <pohly!~pohly@p54BD55A3.dip0.t-ipconnect.de> has joined #yocto06:08
*** xtron <xtron!~mentor@103.255.4.254> has joined #yocto06:13
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-ujmqgrmcjinmryox> has quit IRC06:16
jdelderr no i'm wrong, it checks for the presence of the image directory, but it's empty06:28
jdeli think this is more qualcom weirdness06:33
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has joined #yocto06:49
*** mckoan|away is now known as mckoan06:55
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC06:58
*** RP <RP!~RP@5751f4a1.skybroadband.com> has joined #yocto07:01
jdelokay I'm back to thinking there's another issue in package.bbclass07:02
jdelspecifically this line: populate_packages[dirs] = "${D}"07:03
jdeli believe this makes running do_package create an empty "image" directory07:03
jdelbut many things use the existince of an image directory to gate some behavior07:03
jdeleg systemd.bbclass07:03
jdelah yeah, do_package has ${D} in dirs as well07:07
jdelthat doesn't seem right07:07
jdeldo_package just depends on populaet sysroot07:07
jdelbut ${D} is the image directory used by do_install, no?07:07
jdeldo_package in theory shouldn't reference it at all07:08
jdeli guess I'm just so confused how I can even get into this state07:11
jdelwhere populate_sysroot is cached, but do_package is not07:11
*** seebs_ <seebs_!~seebs@clifthotel.static.monkeybrains.net> has joined #yocto07:12
jdeli guess I can just make do_package depend on do_install07:13
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto07:14
*** seebs <seebs!~seebs@204.153.192.24> has quit IRC07:15
jdeli'm so confused: addtask package after do_install07:23
jdelsomething's so not right about this bsp07:23
jdelokay, so, as I suspected, the crux of my problem is still this qualcom bbclass07:38
jdelit removes the do_install task and replaces it with a do_install_prebuilt task07:38
jdelbut do_package assumes the existents of a do_install task07:38
jdelnow, is it possible for a task to be replaced with a different function at runtime?07:39
jdelie I want to run my own do_install, not an inherited one, but only if some criteria is met?07:39
*** xtron <xtron!~mentor@103.255.4.254> has quit IRC07:47
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto08:02
*** xtron <xtron!~mentor@110.93.212.98> has joined #yocto08:03
*** cquast <cquast!~cquast@90.85.130.193> has joined #yocto08:07
*** tprrt <tprrt!~tprrt@217.114.201.133> has quit IRC08:10
*** xtron <xtron!~mentor@110.93.212.98> has quit IRC08:27
*** yann|work <yann|work!~yann@LFbn-1-12686-123.w90-90.abo.wanadoo.fr> has joined #yocto08:29
*** dv_ <dv_!~dv@62-178-50-190.cable.dynamic.surfer.at> has quit IRC08:34
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto08:35
*** rburton <rburton!~textual@35.106.2.81.in-addr.arpa> has joined #yocto08:49
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto08:51
*** aratiu <aratiu!~adi@80.97.64.55> has quit IRC08:53
*** aratiu <aratiu!~adi@80.97.64.55> has joined #yocto08:55
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto09:03
*** ant_work <ant_work!~ant__@host90-253-dynamic.4-87-r.retail.telecomitalia.it> has joined #yocto09:09
*** nayfe <nayfe!uid259604@gateway/web/irccloud.com/x-ahhpytnvyyyqvxxc> has quit IRC09:17
*** armpit <armpit!~armpit@2601:202:4180:c33:3022:46d3:5852:c75f> has quit IRC09:30
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC09:38
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto09:39
*** armpit <armpit!~armpit@2601:202:4180:c33:e960:91d2:2331:2d71> has joined #yocto09:42
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto09:58
*** scroll is now known as hfjvjffju09:59
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto10:11
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto10:16
*** seebs__ <seebs__!~seebs@204.153.192.24> has joined #yocto10:19
*** seebs_ <seebs_!~seebs@clifthotel.static.monkeybrains.net> has quit IRC10:23
*** seebs__ <seebs__!~seebs@204.153.192.24> has quit IRC10:26
*** seebs_ <seebs_!~seebs@204.153.192.24> has joined #yocto10:26
*** mtahmed <mtahmed!c0c353c8@gateway/web/freenode/ip.192.195.83.200> has joined #yocto10:40
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto10:41
mtahmedHi all! I have been looking into building a separate dump-capture kernel for capturing crashes (https://www.kernel.org/doc/Documentation/kdump/kdump.txt). The reason I would need to build a separate kernel is because the dump-capture kernel would have a different kernel config. So far, I haven't been able to figure out how I would go about building two kernels. Does yocto support this? If not, what's the best way to support the dump-10:43
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC10:45
*** varjag <varjag!~user@122.62-97-226.bkkb.no> has quit IRC10:47
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC10:54
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto10:55
*** AndersD_ <AndersD_!~AndersD@194.237.220.218> has joined #yocto10:59
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has quit IRC11:02
*** christner <christner!~dchristne@70-91-95-105-washington.dc.hfc.comcastbusiness.net> has joined #yocto11:16
*** AndersD_ <AndersD_!~AndersD@194.237.220.218> has quit IRC11:24
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has joined #yocto11:35
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:39
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has joined #yocto12:06
yoctiNew news from stackoverflow: create symbolic link in bitbake recipe <https://stackoverflow.com/questions/48167601/create-symbolic-link-in-bitbake-recipe>12:06
*** mtahmed <mtahmed!c0c353c8@gateway/web/freenode/ip.192.195.83.200> has quit IRC12:16
*** mtahmed <mtahmed!1805460c@gateway/web/freenode/ip.24.5.70.12> has joined #yocto12:18
*** geissonator <geissonator!~geissonat@32.97.110.54> has joined #yocto12:23
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC12:29
*** ant_work <ant_work!~ant__@host90-253-dynamic.4-87-r.retail.telecomitalia.it> has quit IRC12:38
*** marka <marka!~masselst@184.175.21.100> has joined #yocto12:39
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:55
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:56
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:57
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:58
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto12:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:00
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:01
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:02
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:03
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:04
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:05
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:07
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:08
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto13:08
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto13:17
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto13:17
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC13:20
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has quit IRC13:28
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC13:32
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto13:42
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC13:52
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto13:57
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto13:58
*** AndersD <AndersD!~AndersD@194-237-220-218.customer.telia.com> has quit IRC14:00
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto14:02
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto14:15
*** christner <christner!~dchristne@70-91-95-105-washington.dc.hfc.comcastbusiness.net> has quit IRC14:15
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto14:20
*** AndersD <AndersD!~AndersD@94.234.182.229> has joined #yocto14:21
*** AndersD <AndersD!~AndersD@94.234.182.229> has quit IRC14:24
*** AndersD_ <AndersD_!~AndersD@194-237-220-218.customer.telia.com> has joined #yocto14:25
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC14:27
*** King_InuYasha <King_InuYasha!~King_InuY@fedora/ngompa> has joined #yocto14:29
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has joined #yocto14:29
*** rburton <rburton!~textual@35.106.2.81.in-addr.arpa> has quit IRC14:29
*** AndersD_ <AndersD_!~AndersD@194-237-220-218.customer.telia.com> has quit IRC14:37
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto14:46
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC14:54
*** MarcWe <MarcWe!~hmw@zimbra.welvaarts.com> has quit IRC14:55
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto15:02
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC15:19
JPEWarmpit: Would you be able to pick up 364c4c7d3fc049f2b734a6a235758a75af364ce0 and f163fd8ec4333f32a32c21d867ef56b40e3eadaa on sumo please?15:26
armpitwhich sumo ?15:26
JPEWOh, sorry, oe-core/poky. Those SHA-1's are from poky15:27
JPEWI always get confused if I should list the oe-core SHA or the poky SHA :(15:27
*** xtron <xtron!~mentor@110.93.212.98> has joined #yocto15:28
armpiteither one works15:28
JPEWShould be: 'rootfs.py: Install -src packages when PACKAGE_DEBUG_SPLIT_STYLE is "debug-with-srcpkg"' and 'package.bbclass: improve -dbg and -src package ordering'15:29
CroftonJPEW, never list th epoky sha15:30
*** Crofton_ <Crofton_!~Crofton@2601:5c0:c100:b84:d585:2c35:2898:977f> has quit IRC15:31
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC15:37
*** Crofton_ <Crofton_!~Crofton@2601:5c0:c100:b84:2677:3ff:fe8f:418> has joined #yocto15:44
JPEWarmpit: Thanks!15:49
JPEWCrofton: I'll try to remember that next time15:50
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC15:54
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto15:54
jdelanyone know how to replace a task at run-time?15:58
jdelor how to do the following: for task X, take all tasks that depend on X and make them depend on task Y15:58
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto16:03
*** mckoan is now known as mckoan|away16:11
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC16:13
*** geissonator <geissonator!~geissonat@32.97.110.54> has quit IRC16:16
*** chandana73 <chandana73!~ckalluri@149.199.62.254> has joined #yocto16:21
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC16:33
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC16:34
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto16:35
armpitJPEW, Crofton is just cranky16:37
Croftonjesus16:37
CroftonI am way more cranky now16:37
Croftonbut in general most people only know oe-core commits16:38
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto16:38
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto16:38
JPEWYa, I suppose it makes more sense with the combo-layers thing16:38
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC16:40
angelo_tshi, any doc/help to crete a new arch in yocto ?16:43
*** seebs_ <seebs_!~seebs@204.153.192.24> has quit IRC16:51
*** cquast <cquast!~cquast@90.85.130.193> has quit IRC16:57
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-gtnpdazfsunxwita> has quit IRC16:59
*** stephano <stephano!stephano@nat/intel/x-vnpakuxmlqswgrkj> has joined #yocto17:25
*** gnac <gnac!~gnac@or-71-0-52-80.sta.embarqhsd.net> has quit IRC17:26
halsteadarmpit, RP We're ready to queue more builds now.17:27
armpitk17:27
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC17:34
*** christner <christner!~dchristne@70-91-95-105-washington.dc.hfc.comcastbusiness.net> has joined #yocto17:34
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto17:34
*** seebs <seebs!~seebs@38.32.44.26> has joined #yocto17:37
christnerI have a set of binaries that (for historical regions) do not get installed to my image, but are downloaded and run later. however, because of this they do not get signed during rootfs. I added the call to evmctl during the build process to sign them then, however the call fails due to permissions. But, when I run the run the build from the devshell manually, it works correctly. any suggestions?17:37
khemchristner: you might want to run it under pseudo17:46
*** moto-timo <moto-timo!ttorling@fsf/member/moto-timo> has quit IRC17:56
*** rewitt <rewitt!~rewitt@134.134.139.76> has quit IRC17:56
*** stephano <stephano!stephano@nat/intel/x-vnpakuxmlqswgrkj> has quit IRC17:56
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has joined #yocto18:02
*** rewitt <rewitt!~rewitt@134.134.139.76> has joined #yocto18:04
*** geissonator <geissonator!~geissonat@45-18-127-186.lightspeed.austtx.sbcglobal.net> has joined #yocto18:06
* armpit Phil Collins, Su-Su-pseudo 18:24
*** otavio <otavio!~otavio@debian/developer/otavio> has joined #yocto18:39
*** stephano <stephano!~stephano@134.134.139.76> has joined #yocto18:39
*** christner <christner!~dchristne@70-91-95-105-washington.dc.hfc.comcastbusiness.net> has quit IRC18:41
*** christner <christner!~dchristne@70-91-95-105-washington.dc.hfc.comcastbusiness.net> has joined #yocto19:01
khemarmpit: :)19:11
khemarmpit: have we run compliance scripts against meta-odroid ?19:11
armpitI don't recall19:13
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC19:15
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto19:16
khemarmpit: ok19:17
khemarmpit: thanks for sumo changes, it built ok on odroid-c2 I merged it19:17
khemarmpit: can you update patchwork accordingly ?19:17
armpityes19:17
armpitI need to run the compliance on meta-security soon so I will add meta-odroid in the mix19:18
khemarmpit: great19:25
khemthe layer is looking good now19:25
armpitwell, thanks to you it is19:30
*** xtron <xtron!~mentor@110.93.212.98> has quit IRC19:34
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC19:37
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC20:04
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto20:04
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC20:28
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto20:29
*** Darkmatter66 <Darkmatter66!~Manjaro-D@37.237.210.207> has joined #yocto20:35
*** mtahmed <mtahmed!1805460c@gateway/web/freenode/ip.24.5.70.12> has quit IRC20:48
jdeldoes anyone know how the metadata_scm class works?20:52
jdelit appears that this automatically invalidates sstate cache entries20:52
jdelbut I'm struggling to figure out how20:52
jdelit seems that info is also printed out when bitbake prints out the layers at the beginning of execution20:54
*** mtahmed <mtahmed!b8178784@gateway/web/freenode/ip.184.23.135.132> has joined #yocto20:59
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC20:59
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-fqcooizviqevrgvr> has joined #yocto21:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto21:10
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC21:11
mtahmedHi all! I have been looking into setting up dump-capture kernel to record crashes (https://www.kernel.org/doc/Documentation/kdump/kdump.txt). However, this requires building a separate kernel and I am wondering if yocto has support for building two kernels? If not, how do I handle the dump-capture kernel usecase?21:17
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC21:18
*** adelcast <adelcast!~adelcast@130.164.62.135> has quit IRC21:20
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto21:26
*** pohly <pohly!~pohly@p54BD55A3.dip0.t-ipconnect.de> has quit IRC21:27
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has joined #yocto21:29
*** yann|work <yann|work!~yann@LFbn-1-12686-123.w90-90.abo.wanadoo.fr> has quit IRC21:29
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC21:45
*** Darkmatter66 <Darkmatter66!~Manjaro-D@37.237.210.207> has quit IRC21:47
*** seebs <seebs!~seebs@38.32.44.26> has quit IRC21:49
jdelmtahmed: i suspect you'll have to instrument your kernel recipe with some custom tasks22:01
jdelmtahmed: or perhaps a bbclass extension22:01
jdelso you'd have a "kernel" package and a "kernel-crashkernel" package22:02
jdelsimilar to how "*-native" packages work22:02
mtahmed@jdel I was also concerned about how the kernel recipes are really tied into everything and everything kind of assumes that there's only a single kernel built.22:06
mtahmedI also saw this RFC and am wondering if it ever got anywhere: http://lists.openembedded.org/pipermail/openembedded-core/2015-April/103662.html22:07
mtahmedAnd I saw this: https://patchwork.openembedded.org/patch/122765/ but it seems like it never made it in22:10
*** marka <marka!~masselst@184.175.21.100> has quit IRC22:13
jdeli suspect think the kernel build is not as tightly coupled as you think22:13
jdelalso, this wouldn't change a normal virtual/kernel dependency22:13
jdelit would just add another package in the same recipe22:14
jdelif the only thing that changes is the kernel paramaters and/or config22:14
jdelthat would be easy to use class extension variables to sub in for a crashkernel build22:14
mtahmedAnd then they would use separate build directories as well?22:15
jdeleg PARAMS=foobarbaz; PARAMS_crashkernel=bazbarfoo22:15
jdelyes22:15
mtahmedOhhh I see. Neat idea! I'll give that a shot and report back and potentially submit patches upstream. Thanks @jdel!!22:15
jdelglhf22:16
*** mattsm <mattsm!~mattsm@76.205.175.243> has quit IRC22:25
*** mattsm <mattsm!~mattsm@76.205.175.243> has joined #yocto22:26
*** geissonator <geissonator!~geissonat@45-18-127-186.lightspeed.austtx.sbcglobal.net> has quit IRC22:46
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has joined #yocto22:50
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC22:50
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC22:51
*** Son_Goku <Son_Goku!~King_InuY@fedora/ngompa> has quit IRC23:00
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto23:18
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC23:21
*** ssingh02 <ssingh02!183f4ca6@gateway/web/freenode/ip.24.63.76.166> has quit IRC23:26
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto23:38
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto23:40
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto23:40
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto23:40
*** stephano <stephano!~stephano@134.134.139.76> has quit IRC23:41
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto23:43
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC23:55
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto23:55

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