Thursday, 2018-11-08

*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC00:05
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto00:06
*** dl9pf22 <dl9pf22!~dl9pf2@221x245x165x21.ap221.ftth.ucom.ne.jp> has quit IRC00:14
*** maudat <maudat!~moda@64.18.88.250> has quit IRC00:15
*** dl9pf2 <dl9pf2!~dl9pf2@70.250.149.210.rev.vmobile.jp> has joined #yocto00:15
khemarmpit: play some pubg00:20
*** phragment <phragment!~blubb@jabber.htu.tugraz.at> has joined #yocto00:21
*** la_croix_ <la_croix_!05470484@gateway/web/freenode/ip.5.71.4.132> has joined #yocto00:26
la_croix_Hi, I'm new to this, and I have a few questions about the best way to load modules in a yocto build00:26
la_croix_Would anybody have a minute to give me some advice?00:27
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto00:28
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC00:30
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has joined #yocto00:30
la_croix_Anybody around?00:34
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC00:34
*** NU-Slacker <NU-Slacker!~NU-Slacke@24.13.72.71> has quit IRC00:34
*** kpo <kpo!~bob@piq58.internetdsl.tpnet.pl> has quit IRC00:44
*** scottrif <scottrif!~scottrif@47.40.108.60> has left #yocto00:49
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC01:00
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has joined #yocto01:03
*** dl9pf2 <dl9pf2!~dl9pf2@70.250.149.210.rev.vmobile.jp> has quit IRC01:05
*** dl9pf22 <dl9pf22!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has joined #yocto01:06
*** dl9pf22 <dl9pf22!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has quit IRC01:17
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has joined #yocto01:22
khemla_croix_: sure, is it a in-kernel module or external01:28
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC01:31
*** Cbast <Cbast!~sfrigon@107.190.38.187> has joined #yocto01:35
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto01:35
*** kpo <kpo!~bob@217.97.93.91.ipv4.supernova.orange.pl> has joined #yocto01:40
la_croix_It's i2s support. Essentially I want to follow these instructions: https://learn.adafruit.com/adafruit-i2s-mems-microphone-breakout/raspberry-pi-wiring-and-test01:59
la_croix_khem sorry I only just saw this02:01
khemis it for rpi ?02:03
la_croix_Yes02:04
khemla_croix_: set ENABLE_I2C = "1" in local.conf02:05
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto02:05
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC02:06
la_croix_This is i2s, not i2c... Does that matter?02:06
khemah it would02:07
*** Cbast <Cbast!~sfrigon@107.190.38.187> has quit IRC02:07
la_croix_Yes, it seems as though i2s is not included in standard raspbian distro (which I believe yocto replicates for this board), hence the patch02:10
khemla_croix_: I think the module is already part of rootfs02:13
la_croix_In that case wouldn't lsmod reveal it? Currently it doesn't list it02:14
khemcan you create a file /etc/modules-load.d/snd.conf with content02:17
khemsnd-soc-bcm2835-i2s02:17
khemand reboot the box ?02:17
khemthen do lsmod | grep i2s02:17
la_croix_rebooting02:18
*** kpo <kpo!~bob@217.97.93.91.ipv4.supernova.orange.pl> has quit IRC02:19
la_croix_That comes back empty02:19
la_croix_In fact, lsmod only contanis nfsd and ipv602:20
khemcan you try find /lib/modules/ -name "*i2s*"02:20
la_croix_empty again02:21
khemok so it seems your build has not included modules at all02:21
khemhow did you build this image ?02:21
la_croix_Following the instructions on the mender site: https://docs.mender.io/1.6/artifacts/building-mender-yocto-image02:22
la_croix_It is build on core-img-full-cmdline, with a couple of layers for rpi and mender, as well as one for activating dhcp02:23
khemdid you build core-image-full-cmdline?02:23
khemok02:23
*** tgraydon <tgraydon!~textual@134.134.139.83> has joined #yocto02:24
khemcan you add IMAGE_INSTALL_append = " kernel-modules " in local.conf and rebuild the image ?02:25
khemonce you do that then it will include all modules in image02:25
la_croix_yep, one minute02:26
khemthen you can follow the instructions I gave above to autoload the module02:26
la_croix_Ok, so if I then want to push these out to a load or rpis as mender artifacts, should I be activating i2s in a layer, or do I need to edit the rootfs following the instructions that you have above?02:30
OutBackDingoanyoone done initramffs with a pi 3 ?02:33
khemla_croix_: you can enable it in meta-data02:36
khemla_croix_: in local.conf add KERNEL_MODULE_AUTOLOAD_append = " snd-soc-bcm2835-i2s "02:38
khemthat will ensure that its automatically inserted on boot02:38
khemOutBackDingo: yes02:38
OutBackDingokhem: ok im seriously struggling with initramfs on a pi ... so whhats the hhint02:39
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has quit IRC02:39
OutBackDingoive read a bunch or raspbian docs oin it... but doesnt seem to be much in the way of yoccto docs02:39
la_croix_Great, thanks02:40
OutBackDingokhem: basically i have uboot enabled on a core-image-weston boots fine02:40
khemOutBackDingo: did you go through https://meta-raspberrypi.readthedocs.io/en/latest/extra-build-config.html#image-with-initramfs02:40
OutBackDingonow id like to get initramffs uup for ccryptffs02:40
OutBackDingoyes and thhats not whats clear02:41
khemwhats not clear02:41
OutBackDingowhats needed for config.txt and cmdline.txt ?02:42
OutBackDingokhem: as in i get an initrd02:42
OutBackDingowell initramfs02:42
khemnothing02:42
khemdid you follow the intructions as listed ?02:43
khemit wont build a final SD card image with just kernel+initramfs02:44
khembut it will build SD-card image with kernel+inittramfs+rootfs02:44
khemyou can use that to flash the SD card02:44
khemwhen you boot it will ignore rootfs on SD card02:45
OutBackDingokhem: this ERROR: ParseError at /home/dingo/WESTON/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc:23: unparsed line: 'kernel_configure_variable BLK_DEV_INITRD y'02:47
khemadd it to do_configure_prepend() function02:48
OutBackDingofsck me..... unclear in the doc02:50
* OutBackDingo thhinks his brain is fried02:50
OutBackDingokhem: still failing02:53
khemOutBackDingo: yeah the doc needs some update I have sent a patch02:53
OutBackDingohttps://pastebin.com/qNnUAP9M02:53
khemyeah the second change about adding INITRAMFS variable should be done in local.conf and not in linux-raspberrypi.inc02:55
OutBackDingo#$@%^$#^@$%#$%02:56
* OutBackDingo thinks OMG02:56
OutBackDingoi should have knoown this02:57
OutBackDingoquite diffferent then innitramfs on moosst other devices02:57
khemhttps://github.com/agherzan/meta-raspberrypi/commit/7c649bf0dab6c9334401422a98dc148073abbc3c02:57
OutBackDingokhem: so... do i need to generate thhe image first ?02:59
khemOutBackDingo: once you set the vars correctly just do bitbake core-image-base02:59
OutBackDingo`INITRAMFS_IMAGE = "<name for your initramfs image>"` < is looking for a path to an already generated image ?02:59
OutBackDingoMissing or unbuildable dependency chain was: ['kernel-initramfs', 'virtual/kernel', 'initramfs']03:00
OutBackDingoERROR: Required build target 'core-image-base' has no buildable providers.03:00
OutBackDingoMissing or unbuildable dependency chain was: ['core-image-base', 'kernel-initramfs', 'virtual/kernel', 'initramfs']03:00
OutBackDingoSummary: There were 2 ERROR messages shown, returning a non-zero exit code.03:00
khemNo that just means a variable03:00
OutBackDingodo we need meta-initramfs03:01
khemINITRAMFS_IMAGE = "core-image-weston"03:01
OutBackDingoahhhhhh03:01
khemthe name should be proper image name03:01
khemthat you want to bundle03:01
OutBackDingoand thats whats missing03:02
OutBackDingothe secret sauuce to naming convetntions03:02
*** la_croix_ <la_croix_!05470484@gateway/web/freenode/ip.5.71.4.132> has quit IRC03:02
khemI think <> denotes a variable03:02
khemwe are compiler people so we think whole world knows BNF03:03
OutBackDingoso then bitbake core-image-weston03:04
OutBackDingoafter i set NITRAMFS_IMAGE = "core-image-weston"03:04
khemactually if you want to bundle core-image-weston then bitbake some other image03:04
OutBackDingokhem: great lets see03:04
OutBackDingoso itll inherit it03:05
khembitbake core-image-base may be03:05
khemyes core-image-weston will get bundled into kernel03:05
OutBackDingowhich means remoove my dependency loop now :)03:05
khemright03:05
OutBackDingoughhhh03:06
OutBackDingoLOOL03:06
khemideally you dont want same images in initrd and real rootfs03:06
khemthats not usual03:06
OutBackDingoughhh Identifying dependency loops (this may take a short while)...03:07
khemadd IMAGE_FSTYPES_pn-core-image-weston = "${INITRAMFS_FSTYPES}" in local.conf03:09
khemcore-image-weston is not a common initrd image03:09
OutBackDingoi get it so far now, buut now time to backtrack from my meta-build and remove the "dependency loops" as my image name is core-imaage-build-weston which inhherits core-image and core-image-weston ... YAY03:09
khemOutBackDingo: Do me a favor once it works write it down stepwise03:10
OutBackDingo:P03:10
OutBackDingorewrite the book huuhh03:10
OutBackDingokhem: done anything withh enncrypted rootfs ? hahhahhahahha03:10
khemyes but I have to leave now03:11
OutBackDingokhem: if youu can catch up with me lateer, meantime lets see if i can get thhrough a initramfs03:12
*** derek_ <derek_!d05b0202@gateway/web/freenode/ip.208.91.2.2> has quit IRC03:57
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has quit IRC04:11
*** dl9pf2 <dl9pf2!~dl9pf2@2001:240:2422:7f17:b5e:ce8e:3cf4:ad72> has joined #yocto04:14
*** dl9pf2 <dl9pf2!~dl9pf2@2001:240:2422:7f17:b5e:ce8e:3cf4:ad72> has quit IRC04:38
*** dl9pf2 <dl9pf2!~dl9pf2@2001:240:2422:7f17:74cd:bc5b:41ab:df50> has joined #yocto04:39
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has quit IRC04:55
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC04:57
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has joined #yocto04:57
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto04:59
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has quit IRC05:10
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has joined #yocto05:12
*** dl9pf22 <dl9pf22!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has joined #yocto05:24
*** dl9pf22 <dl9pf22!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has quit IRC05:27
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-plfmwparhaqwckwf> has quit IRC05:27
*** dl9pf2 <dl9pf2!~dl9pf2@2001:240:2422:7f17:74cd:bc5b:41ab:df50> has quit IRC05:28
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has joined #yocto05:31
OutBackDingokhem: i dont see an sdimg ? i do see a core-image-weston-raspberrypi3-20181108052912.rootfs.cpio.gz05:32
*** AndersD <AndersD!~AndersD@194.237.220.218> has joined #yocto06:13
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has joined #yocto06:14
OutBackDingokhem: bootlooping with ERROR Image tooo large consider increasing CONFIG_SYS_BOOTM_LEN06:26
*** morphis__ <morphis__!~morphis@p5DCC3778.dip0.t-ipconnect.de> has quit IRC06:31
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto06:33
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has quit IRC06:36
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has joined #yocto06:37
*** morphis <morphis!~morphis@p5DCC3778.dip0.t-ipconnect.de> has joined #yocto06:38
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC07:11
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has joined #yocto07:17
*** fl0v0 <fl0v0!~fvo@mue-88-130-106-238.dsl.tropolys.de> has joined #yocto07:27
OutBackDingoapears u-boot on the pi 3 doessnt like initramfs07:32
*** fsdun <fsdun!~fsdun@62.154.245.74> has joined #yocto07:44
*** frsc <frsc!~frsc@200116b8249d7a008a6c6034be11bba0.dip.versatel-1u1.de> has joined #yocto07:44
fsdunMoin07:44
*** Carton__ <Carton__!~jo@213.55.211.27> has joined #yocto07:47
*** rondo-de <rondo-de!543e9474@gateway/web/freenode/ip.84.62.148.116> has quit IRC07:52
*** lusus <lusus!~lusus@62.91.23.180> has joined #yocto08:02
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto08:30
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto08:34
*** roxell <roxell!~roxell@unaffiliated/roxell> has quit IRC08:35
*** rajm <rajm!~robertmar@148.252.241.226> has joined #yocto08:36
*** mckoan|away is now known as mckoan08:37
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto08:40
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto08:44
*** florian_kc is now known as florian08:45
*** dl9pf2 <dl9pf2!~dl9pf2@p1477104-ipngn12501hodogaya.kanagawa.ocn.ne.jp> has quit IRC08:47
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC08:50
*** Bunio_FH1 <Bunio_FH1!~bunio@81-18-201-214.static.chello.pl> has joined #yocto08:50
*** ant_work <ant_work!~ant__@a-ii1-78.tin.it> has joined #yocto08:54
*** dl9pf2 <dl9pf2!~dl9pf2@59.250.149.210.rev.vmobile.jp> has joined #yocto08:55
*** tgraydon <tgraydon!~textual@134.134.139.83> has quit IRC09:00
*** nighty- <nighty-!~nighty@kyotolabs.asahinet.com> has quit IRC09:01
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto09:12
yoctiNew news from stackoverflow: version node not found for symbol <https://stackoverflow.com/questions/53204342/version-node-not-found-for-symbol>09:19
*** rob_w <rob_w!~rob@unaffiliated/rob-w/x-1112029> has quit IRC09:21
*** joaocfernandes <joaocfernandes!~Joao@88.157.236.36> has joined #yocto09:22
*** nighty- <nighty-!~nighty@s229123.ppp.asahi-net.or.jp> has joined #yocto09:33
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto09:53
*** kpo <kpo!~bob@217.97.93.91.ipv4.supernova.orange.pl> has joined #yocto10:01
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto10:06
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto10:24
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC10:25
*** Carton__ <Carton__!~jo@213.55.211.27> has quit IRC10:27
*** Carton__ <Carton__!~jo@213.55.211.27> has joined #yocto10:28
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto10:30
*** kpo <kpo!~bob@217.97.93.91.ipv4.supernova.orange.pl> has quit IRC10:30
*** dl9pf2 <dl9pf2!~dl9pf2@59.250.149.210.rev.vmobile.jp> has quit IRC10:36
*** dl9pf2 <dl9pf2!~dl9pf2@100.208.138.210.rev.vmobile.jp> has joined #yocto10:39
zagorwhat is the policy for backporting fixes to old releases? do you accept gcc-8 fixes for rocko?10:41
zagorspecifically, I'm getting alignment crashes in elfutils and python-native. these are fixed in sumo but not rocko.10:50
zagorI'm using bbappend recipes to add the patches locally so it's not a problem for me. just wondering what the project policy is.10:51
*** Kitsok <Kitsok!~kitsok@2a02:6b8:0:506:d681:d7ff:fe6d:d499> has joined #yocto11:06
KitsokHi all! I'm trying to add a custom user to the target system. For this I added "useradd admin;" to the EXTRA_USERS_PARAMS var in local.conf.sample, but it fails. I've tried it with different parameters, finally it fails even with the username only. I've also tried groupadd with the same result.  The error is " groupadd command did not succeed" without any other info. What am I doing wrong?11:08
ant_workzagor, gcc-8 was introduced with thud some months ago. I don't think it will be backported.11:09
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto11:25
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC11:25
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto11:28
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC11:29
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto11:30
*** mckoan is now known as mckoan|away11:32
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto11:44
lpapphi, why do I need get a prompt when I boot up runlevel one, single user mode?11:44
zagorant_work: I mean when the host machine runs gcc-811:44
*** dv_ <dv_!~dv@62.178.50.190> has quit IRC11:45
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has joined #yocto11:47
prabhakarladHi all, what is the difference between standard and extensible SDK ?11:57
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto11:59
*** dl9pf2 <dl9pf2!~dl9pf2@100.208.138.210.rev.vmobile.jp> has quit IRC12:03
*** morphis_ <morphis_!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has joined #yocto12:15
*** morphis <morphis!~morphis@p5DCC3778.dip0.t-ipconnect.de> has quit IRC12:18
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC12:21
RPprabhakarlad: one is a fairly typical standalone toolchain, the other gives access to more tools like devtool12:27
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has quit IRC12:29
*** tgoodwin <tgoodwin!~tgoodwin@static-108-40-78-74.bltmmd.fios.verizon.net> has joined #yocto12:32
*** joaocfernandes <joaocfernandes!~Joao@88.157.236.36> has quit IRC12:34
OutBackDingook, anyyone know whats thhe secret to initramfs size on a PI ?? the build keeps failing12:37
RPOutBackDingo: it sounded like your build worked but it failed to boot? Did you try doing what the error said?12:38
OutBackDingoRP: https://pastebin.com/tnLTNcQT12:40
OutBackDingoits seems the disk is ful;l12:41
OutBackDingoits not creating images12:41
OutBackDingoive even had to remove u-boot12:41
OutBackDingowhere thhe initramfs image should be soore-image-minimal12:43
OutBackDingocore-image-minimal12:43
RPOutBackDingo: you could try INHERIT += "rm_work"12:44
OutBackDingoRP: inherit it where ?12:46
OutBackDingoiver already had to set  The initramfs size 245760(K) overrides INITRAMFS_MAXSIZE: 131072(K)12:46
RPOutBackDingo: I guess it depends if your image is full or your host system, its hard to tell from that pastebin12:47
OutBackDingoRP: the host disk isnt the issue12:48
OutBackDingoits when its trying to create the images12:48
OutBackDingo/dev/mapper/newdebian--vg-root  885G  284G  556G  34% /12:48
RPOutBackDingo: sorry, my advice won't help then12:48
RPOutBackDingo: it sounds like its trying to write the whole rootfs into the initramfs which would be why its out of space12:49
RPhmm, maybe not12:50
OutBackDingoRP: and thats what im thinking.... when it shhould only be trying to write core-image-minimal12:50
RPOutBackDingo: best guess is the do_rpi_sdiimge itself doesn't know to include the initramfs size in its size of the sd image it builds12:51
prabhakarladRP: thank you :)12:52
OutBackDingomy config https://pastebin.com/c9zTk7dA12:53
OutBackDingoand im thhen bitbake core-image-weston12:53
*** lpapp <lpapp!~lpapp@kde/lpapp> has left #yocto12:55
OutBackDingoi cant believe its this difficult to generate a weston image with initramffs12:57
RPOutBackDingo: likely something simple but I'm not able to page in the right data to help :(13:04
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC13:07
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has quit IRC13:10
*** oorezz is now known as zzeroo13:16
fsdunOutBackDingo, do you want to have core-image-weston as initramfs?13:17
*** joaocfernandes <joaocfernandes!~Joao@88.157.236.36> has joined #yocto13:21
OutBackDingofsdun: no i want core image minimal as initrams with encryptfs and ssh13:21
OutBackDingoso i can encrypt rootfs and then boot to weston13:22
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto13:23
*** joaocfernandes <joaocfernandes!~Joao@88.157.236.36> has quit IRC13:29
fsdunOutBackDingo, do you have SDIMG_SIZE set?. could you paste /home/dingo/INITRAMFS/rpi-build/tmp/work/raspberrypi3-poky-linux-gnueabi/core-image-weston/1.0-r0/temp/run.do_image_rpi_sdimg.2466613:30
OutBackDingofsdun: https://pastebin.com/7FDkrgaf13:34
OutBackDingofsdun: SDIMG_SIZE ?13:36
OutBackDingoi literally think... its trying to pack it all inside initramffs where i only want core-image-minimal in initramfs13:40
OutBackDingoif i literally strip my config down it build core-image-base withh core image-minimal as initramfs13:41
OutBackDingoitll complete i can dd the sdimg and it boots, though no networking... as soon as i tryy to add thhings for the config to get weston, ort my custom packages it fails13:42
fsdunwhat's the size of /home/dingo/INITRAMFS/rpi-build/tmp/deploy/images/raspberrypi3/bcm2835-bootfiles/ ?13:45
fsdunI think it's failing in line 141 of you pastebin which is line 121 in sdcard_image-rpi.bbclass13:46
OutBackDingodu -h /home/dingo/INITRAMFS/rpi-build/tmp/deploy/images/raspberrypi3/bcm2835-bootfiles/13:46
OutBackDingo13M/home/dingo/INITRAMFS/rpi-build/tmp/deploy/images/raspberrypi3/bcm2835-bootfiles/13:46
OutBackDingoi cant be the only one whos done this13:47
OutBackDingoLOL :)13:47
fsdunare you aware that IMAGE_INSTALL_append also applies for core-image-minimal?13:49
OutBackDingofsdun: it shhould be what, to not install / append to initramfs but to install in rootfs ?13:49
fsduncore-image-minimal is a normal image which also uses IMAGE_INSTALL (as core-image-weston does), but is packaged as INITRAMFS_FSTYPES.13:52
jofrI'll probably need to different image recipes.13:53
jofr*facepalm*13:53
jofrYou'll probably need to different image recipes.13:53
khemOutBackDingo: set INITRAMFS_MAXSIZE = "262144"13:54
*** marka <marka!~masselst@128.224.252.2> has joined #yocto13:54
khemin local.conf, the image that is being bundled is big13:54
OutBackDingokhem: i know you said youve done this beforee but i really cant see how13:56
*** eduardas_m <eduardas_m!~eduardas@213.197.143.19> has quit IRC13:57
*** yates <yates!~user@rrcs-96-10-234-158.midsouth.biz.rr.com> has joined #yocto13:58
yatesdoes a filesystem exist for eeproms?13:58
jofryates: Does cpio fit your bill?  :p13:59
OutBackDingokhem: why is it big, if i only want core-image-minimal to be initramfs with encryptfs to unlock mmcblkk0p2 and then boot to weston ?14:00
OutBackDingoso whhats the secret that im missing hhere14:01
khemI thought you were using core-image-weston14:01
*** morphis_ <morphis_!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has quit IRC14:02
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC14:02
*** ant_work <ant_work!~ant__@a-ii1-78.tin.it> has quit IRC14:02
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC14:02
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has quit IRC14:02
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC14:02
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has quit IRC14:02
*** ant_home <ant_home!~ant__@host211-58-dynamic.14-87-r.retail.telecomitalia.it> has quit IRC14:02
*** lazyape_home <lazyape_home!~lazyape2@athedsl-4549662.home.otenet.gr> has quit IRC14:02
*** dqx <dqx!~dqx@unaffiliated/dqx> has quit IRC14:02
*** sa2ajj <sa2ajj!~quassel@dsl-hkibng21-54f864-131.dhcp.inet.fi> has quit IRC14:02
*** rovanceo <rovanceo!~rovanceo@80.97.64.55> has quit IRC14:02
*** joseppc <joseppc!~josep@unaffiliated/joseppc> has quit IRC14:02
*** RP <RP!~RP@5751f4a1.skybroadband.com> has quit IRC14:02
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has quit IRC14:02
*** Guest83748 <Guest83748!~brianleu@cpe-24-211-134-4.nc.res.rr.com> has quit IRC14:02
*** ski7777 <ski7777!~quassel@ip5b437013.dynamic.kabel-deutschland.de> has quit IRC14:02
*** henriknj <henriknj!~hnje@193.106.123.182> has quit IRC14:02
*** silviof <silviof!~silviof@unaffiliated/silviof> has quit IRC14:02
*** mcfrisk <mcfrisk!~mcfrisk@kapsi.fi> has quit IRC14:02
*** micka <micka!~micka@reverse-75.fdn.fr> has quit IRC14:02
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has quit IRC14:02
*** fray <fray!~fray@kernel.crashing.org> has quit IRC14:02
*** rettichschnidi <rettichschnidi!~reto@pdpc/supporter/student/rettichschnidi> has quit IRC14:02
*** denix <denix!~denix@pool-100-15-91-218.washdc.fios.verizon.net> has quit IRC14:02
*** dkc <dkc!~dkc@55.ip-158-69-215.net> has quit IRC14:02
*** fray <fray!~fray@kernel.crashing.org> has joined #yocto14:02
*** mcfrisk <mcfrisk!mcfrisk@kapsi.fi> has joined #yocto14:02
*** ski7777 <ski7777!~quassel@ip5b437013.dynamic.kabel-deutschland.de> has joined #yocto14:02
*** nslu2-log <nslu2-log!~nslu2-log@23.141.224.193> has joined #yocto14:02
*** denix0 <denix0!~denix@pool-100-15-91-218.washdc.fios.verizon.net> has joined #yocto14:02
*** morphis_ <morphis_!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has joined #yocto14:02
*** rettichschnidi <rettichschnidi!~reto@212-51-141-71.fiber7.init7.net> has joined #yocto14:02
*** dkc <dkc!~dkc@55.ip-158-69-215.net> has joined #yocto14:02
*** denix0 is now known as denix14:02
*** sa2ajj <sa2ajj!~quassel@84.248.100.131> has joined #yocto14:02
*** micka <micka!~micka@80.67.176.75> has joined #yocto14:02
*** silviof <silviof!~silviof@HSI-KBW-078-043-040-050.hsi4.kabel-badenwuerttemberg.de> has joined #yocto14:02
*** Guest83748 <Guest83748!~brianleu@cpe-24-211-134-4.nc.res.rr.com> has joined #yocto14:02
*** henriknj <henriknj!~hnje@193.106.123.182> has joined #yocto14:02
*** rovanceo <rovanceo!~rovanceo@80.97.64.55> has joined #yocto14:02
*** stryx` <stryx`!~stryx@185.164.136.111> has joined #yocto14:03
*** silviof <silviof!~silviof@HSI-KBW-078-043-040-050.hsi4.kabel-badenwuerttemberg.de> has quit IRC14:03
*** silviof <silviof!~silviof@unaffiliated/silviof> has joined #yocto14:03
*** joseppc <joseppc!~josep@80.252.166.18> has joined #yocto14:03
*** moto-timo <moto-timo!~ttorling@192.55.54.39> has joined #yocto14:03
*** stryx` <stryx`!~stryx@185.164.136.111> has quit IRC14:03
*** stryx` <stryx`!~stryx@unaffiliated/stryx/x-3871776> has joined #yocto14:03
*** joseppc <joseppc!~josep@80.252.166.18> has quit IRC14:03
*** joseppc <joseppc!~josep@unaffiliated/joseppc> has joined #yocto14:03
*** moto-timo <moto-timo!~ttorling@192.55.54.39> has quit IRC14:03
*** moto-timo <moto-timo!~ttorling@fsf/member/moto-timo> has joined #yocto14:03
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto14:04
*** ant_work <ant_work!~ant__@a-ii1-78.tin.it> has joined #yocto14:04
*** lazyape <lazyape!~lazyape2@athedsl-4549662.home.otenet.gr> has joined #yocto14:04
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC14:04
*** ant_home <ant_home!~ant__@host211-58-dynamic.14-87-r.retail.telecomitalia.it> has joined #yocto14:04
*** RP <RP!~RP@5751f4a1.skybroadband.com> has joined #yocto14:04
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto14:04
OutBackDingokhem: i fails to buildd the image14:05
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has joined #yocto14:06
*** dqx <dqx!~dqx@unaffiliated/dqx> has joined #yocto14:07
nrossiOutBackDingo: I used wic last time i did an initramfs boot with the raspi bootloader. One initramfs rootfs image packed onto the filesystem of p1 (via IMAGE_BOOT_FILES), and one disk image. In your case the disk image could include your encrypted root on p2 of the disk. Just a suggestion if the sdcard image type doesn't pan out for you.14:07
khemI see you have IMAGE_INSTALL_append which could be bloating the image quite a bit14:08
khemSD card has two paritions one for boot files where kernel lives and its relatively small14:09
khemnow when you pack initramfs into kernel the size of bootfiles will grow too14:09
khemso you might need to adjust the size of boot partition14:09
khemsomething like BOOT_SPACE ?= "40960" makes is 40M14:10
OutBackDingokhem: thats the default14:10
khemyou might need to set it bigger than that14:10
khemwhats the size of cpio.xz14:10
jofrI have recipeFoo that DEPENDS on recipeBar-native. I thought that if I did a "cleanall" on recipeBar-native, it would cause recipeFoo to get rebuilt the next time. Well, it doesn't. But how can I enforce it?14:11
khemjofr: if nothing changed then it should not since signatures wont change14:12
khemclean both14:13
*** ak77 <ak77!c12e4b03@gateway/web/freenode/ip.193.46.75.3> has quit IRC14:14
*** comptroller <comptroller!~comptroll@47-213-222-253.paolcmtc01.res.dyn.suddenlink.net> has joined #yocto14:14
*** prabhakarlad <prabhakarlad!~prabhakar@194.75.40.178> has joined #yocto14:15
jofrkhem: It is changing, but all the changes are in recipe-sysroot-native because recipeBar-native is.. well.. native.  :p14:17
jofrI think I managed to fix it by changing recipeBar to a non"-native", BBEXTENDing native and defining a FILES_ section14:21
OutBackDingokhem: must be the appends14:22
OutBackDingoi have a weston image now im testing14:22
OutBackDingokhem: nope blank screen, not booting14:26
*** morphis_ <morphis_!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has quit IRC14:28
OutBackDingokhem ok wait... i can ssh into it14:29
*** morphis <morphis!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has joined #yocto14:29
OutBackDingodevtmpfs                171.3M         0    171.3M   0% /dev14:29
OutBackDingotmpfs                   304.8M     92.0K    304.7M   0% /run14:29
OutBackDingotmpfs                   304.8M     48.0K    304.7M   0% /var/volatile14:29
OutBackDingoits booted to tmpfs not rootfs on sdcard though14:29
OutBackDingoguys14:29
OutBackDingoughhhhh14:29
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has quit IRC14:35
OutBackDingonoow, hhot to get it to continue to boot rootfs14:37
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC14:38
*** toanju <toanju!~toanju@185.27.182.30> has joined #yocto14:38
*** boucman_work <boucman_work!~jrosen@wesnoth/developer/boucman> has joined #yocto14:38
*** varjag <varjag!~user@ti0040a400-6464.bb.online.no> has joined #yocto14:41
*** peacememories <peacememories!~textual@t192-187.demo.tuwien.ac.at> has joined #yocto14:42
*** toanju <toanju!~toanju@185.27.182.30> has quit IRC14:43
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC14:49
*** maudat <maudat!~moda@64.18.88.250> has joined #yocto14:53
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC14:54
*** phragment <phragment!~blubb@jabber.htu.tugraz.at> has quit IRC14:56
*** paulg <paulg!~paulg@24-246-7-167.cable.teksavvy.com> has quit IRC14:56
*** AndersD <AndersD!~AndersD@194.237.220.218> has quit IRC15:02
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC15:03
*** lucaceresoli <lucaceresoli!~lucaceres@37.160.98.75> has joined #yocto15:04
*** lucaceresoli_ <lucaceresoli_!~lucaceres@37.160.93.170> has joined #yocto15:05
*** lucaceresoli <lucaceresoli!~lucaceres@37.160.98.75> has quit IRC15:09
prabhakarladHi , I have built and SDK, and now when extracting I get this ERROR: Sstate artifact unavailable for package, any thought what could be missing ?15:10
*** lucaceresoli_ <lucaceresoli_!~lucaceres@37.160.93.170> has quit IRC15:12
*** lucaceresoli <lucaceresoli!~lucaceres@37.160.93.170> has joined #yocto15:14
*** peacememories <peacememories!~textual@t192-187.demo.tuwien.ac.at> has quit IRC15:18
*** stephano <stephano!~stephano@134.134.139.76> has joined #yocto15:18
*** peacememories <peacememories!~textual@t192-187.demo.tuwien.ac.at> has joined #yocto15:25
*** paulg <paulg!~paulg@24-246-7-167.cable.teksavvy.com> has joined #yocto15:29
*** rajm <rajm!~robertmar@148.252.241.226> has quit IRC15:29
*** chandana73 <chandana73!~ckalluri@149.199.62.130> has joined #yocto15:29
*** morphis <morphis!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has quit IRC15:30
*** morphis_ <morphis_!~morphis@pD9E2FDFE.dip0.t-ipconnect.de> has joined #yocto15:30
*** peacememories <peacememories!~textual@t192-187.demo.tuwien.ac.at> has quit IRC15:38
*** rajm <rajm!~robertmar@148.252.241.226> has joined #yocto15:40
*** phragment <phragment!~blubb@jabber.htu.tugraz.at> has joined #yocto15:51
*** ant_work <ant_work!~ant__@a-ii1-78.tin.it> has quit IRC15:53
kergothRP: hmm, now that getVar defaults to expansion, indexing and .get() should be expanded, so we should be good to change things like (d.getVar('FOO') or '').split() to d.get('FOO', '').split(), more like a regular mapping, yes?15:56
*** rajm <rajm!~robertmar@148.252.241.226> has quit IRC16:05
*** rajm <rajm!~robertmar@148.252.241.226> has joined #yocto16:08
*** berton[m] <berton[m]!fabioberto@gateway/shell/matrix.org/x-sbacfemkrkimhpyp> has left #yocto16:09
*** berton <berton!~berton@181.220.65.91> has joined #yocto16:15
*** toanju <toanju!~toanju@x5ce7b6bd.dyn.telefonica.de> has joined #yocto16:15
*** Bunio_FH1 <Bunio_FH1!~bunio@81-18-201-214.static.chello.pl> has quit IRC16:24
*** dmoseley <dmoseley!472c9d28@gateway/web/cgi-irc/kiwiirc.com/ip.71.44.157.40> has joined #yocto16:25
*** dmoseley <dmoseley!472c9d28@gateway/web/cgi-irc/kiwiirc.com/ip.71.44.157.40> has joined #yocto16:27
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto16:27
*** lucaceresoli <lucaceresoli!~lucaceres@37.160.93.170> has quit IRC16:31
RPkergoth: I guess in theory but my preference is to leave getVar as a) its clearer to read somehow and b) the patch churn and conflicts such changes generate make life a nightmare16:38
kergothtrue. i also wonder how it would affect checksum generation, i don't remember if the signature generation checks indexing and .get and friends16:39
kergothprobably *should*, but..16:39
kergothdefinitely easier to do ast analysis when we don't have to differentiate dicts from datasmart objects16:40
*** Carton__ <Carton__!~jo@213.55.211.27> has quit IRC16:41
kergothHmm, I wonder if there'd be an interest in https://github.com/MentorEmbedded/meta-mentor/blob/master/meta-mentor-staging/classes/win_sdk_cull.bbclass going upstream16:42
RPkergoth: getVar is a much nicer expression for the magic ast code to spot16:45
RPkergoth: that might be a good one for meta-mingw16:46
kergothah, good point16:46
JPEWkergoth: I agree (on win_sdk_cull.bbclass). We do something like that already... but I can't find it atm16:47
kergothah, k. will add to my list to check16:47
kergoththanks16:47
JPEWI should probably see if anyone is interested in our self extracting python script for mingw SDKs some day too....16:48
*** chandana73 <chandana73!~ckalluri@149.199.62.130> has quit IRC16:50
*** Kitsok <Kitsok!~kitsok@2a02:6b8:0:506:d681:d7ff:fe6d:d499> has quit IRC16:53
RPJPEW: yes, as a patch to meta-mingw :)16:55
RPmingw really needs to get some maintainers who use that stuff16:55
JPEWRP: Ya I've noticed. We use it pretty heavily, I *might* be convinced to voluteer for that ;)16:56
* RP quicks fires up an editor on the README16:58
kergoth:)17:03
frayself extrasking mingw SDKs?  confused17:04
fraywe just create a zip file using the post processing stuff.. and the user extracts the zip and it 'all just works'17:04
*** frsc <frsc!~frsc@200116b8249d7a008a6c6034be11bba0.dip.versatel-1u1.de> has quit IRC17:04
fray(seems to be what our customers have expected at least...)17:05
*** fl0v0 <fl0v0!~fvo@mue-88-130-106-238.dsl.tropolys.de> has quit IRC17:09
JPEWfray: There are some post processing steps that we have found necessary (just like on Linux SDKs)17:25
JPEWfray: I don't remember what atm, we've been using it for years17:25
*** lusus <lusus!~lusus@62.91.23.180> has quit IRC17:32
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has joined #yocto17:34
*** kaspter <kaspter!~Instantbi@115.206.63.55> has quit IRC17:35
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has quit IRC17:36
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has joined #yocto17:45
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC17:46
*** dmoseley <dmoseley!472c9d28@gateway/web/cgi-irc/kiwiirc.com/ip.71.44.157.40> has quit IRC17:48
yoctiNew news from stackoverflow: AOT compile system assemblies using Yocto meta-mono <https://stackoverflow.com/questions/53213420/aot-compile-system-assemblies-using-yocto-meta-mono>17:51
*** andrunko <andrunko!andrunko@nat/collabora/x-gqpzszmfbebzigfs> has joined #yocto17:55
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC17:55
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto17:55
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC17:57
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto17:58
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC17:59
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto18:06
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto18:06
*** andrunko <andrunko!andrunko@nat/collabora/x-gqpzszmfbebzigfs> has quit IRC18:10
*** andrunko <andrunko!andrunko@nat/collabora/x-ezidavozllvifneh> has joined #yocto18:10
*** _sgw <_sgw!~sgw@192.55.54.39> has joined #yocto18:11
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has joined #yocto18:14
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has quit IRC18:16
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto18:17
RParmpit: fixed the 2.4.4 artefact publishing and resent the qa email with help from halstead18:25
RPkergoth: did you want to take 12987?18:26
kergothyeah i can do that18:26
RPkergoth: its yours! (thanks018:26
kergothnp18:27
kergothsorry i havent' had more time to help with core work recently, been busy at work and at home. looking to improve that again soon18:27
RPkergoth: np, I've been having my own sets of challenges too...18:28
* RP is getting frustrated with doing QA stuff all the time18:29
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto18:31
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has joined #yocto18:31
*** sa2ajj <sa2ajj!~quassel@84.248.100.131> has quit IRC18:32
*** sa2ajj <sa2ajj!~quassel@dsl-hkibng21-54f864-131.dhcp.inet.fi> has joined #yocto18:33
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto18:58
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto18:59
kroonHi. I have a layer that I use together with yocto rocko, sumo and to-be thud. In there I have a linux-yocto_4.12.bbappend, but in oe-core thud there is no longer a linux-yocto_4.12 recipe to append to, which results in errors. Is there a way to have a .bbappend apply only if the recipe exists, and not error otherwise ?19:01
kroonmaybe some trickey with the layer.conf ?19:04
*** awe00 <awe00!~awe00@unaffiliated/awe00> has joined #yocto19:08
*** _sgw is now known as sgw19:14
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has quit IRC19:39
*** tprrt <tprrt!~tprrt@ram31-1-82-234-79-177.fbx.proxad.net> has quit IRC19:41
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC19:55
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC20:05
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto20:06
*** varjag <varjag!~user@ti0040a400-6464.bb.online.no> has left #yocto20:12
*** berton <berton!~berton@181.220.65.91> has quit IRC20:16
khemkroon see the concept of dynamic-layers https://github.com/YoeDistro/meta-wpe/tree/master/dynamic-layers20:19
khemlayer.conf https://github.com/YoeDistro/meta-wpe/blob/master/conf/layer.conf20:19
kergothyou should really be using branches20:24
*** tgraydon <tgraydon!~textual@134.134.139.72> has joined #yocto20:27
kergothi'm rather annoyed i had to homeroll checking for shell parameter expansion modifiers because pysh never got around to implementing them..20:35
* kergoth rolls eyes20:35
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has quit IRC20:35
kergothended up pretty easy though: https://github.com/openembedded/bitbake/compare/master...kergoth:yocto-1298720:35
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has joined #yocto20:37
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC20:38
*** lucaceresoli_ <lucaceresoli_!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has joined #yocto20:39
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has joined #yocto20:47
RPkergoth: not bad20:48
RPkergoth: as ever I worry about performance and memory storage size of the objects but I'm paranoid20:48
kergothyep, that was my first thought after doing it as well, we do a hell of a lot of shell and python parsing, any changes to it affect performance. no statistically significant impact on parse time, still need to test a few builds20:50
kergothunexpanded ${} in shell is likely pretty rare to begin with, so the # of times it even has to enter this block is pretty low20:51
kergoththere were 12 instances where modified_expansions was non-empty across all of oe-core and meta-oe20:52
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has quit IRC20:53
RPkergoth: fair enough. A non-obvious issue is that even an empty set() has memory storage size. Where things were rare, I did notice a big difference elsewhere by using hasattr() and leaving the entry missing20:58
kergothhuh, that's interesting, this would be a good candidate20:59
kergothi'll look into t hat, thanks20:59
RPkergoth: http://git.yoctoproject.org/cgit.cgi/poky/commit/?id=a9dc2ac9e00e3bbea872c8d22568e3acfb9ba3d4 - the removes20:59
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has quit IRC21:00
*** vmeson <vmeson!~rmacleod@24-52-238-240.cable.teksavvy.com> has joined #yocto21:02
kergothi'm getting spoiled using f-strings in my other projects, looking forward to the next python 3 version requirement bump :)21:02
*** chandana73 <chandana73!~ckalluri@149.199.62.129> has joined #yocto21:03
*** khem <khem!~khem@unaffiliated/khem> has quit IRC21:12
*** dmoseley <dmoseley!48b86a4a@gateway/web/cgi-irc/kiwiirc.com/ip.72.184.106.74> has joined #yocto21:17
RPkergoth: Is that 3.5? I'm looking forward to getting to that21:25
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto21:25
*** marka <marka!~masselst@128.224.252.2> has quit IRC21:25
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has quit IRC21:33
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has joined #yocto21:34
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has quit IRC21:36
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has joined #yocto21:36
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has joined #yocto21:48
*** andrey_utkin <andrey_utkin!~andrey_ut@gentoo/developer/andrey-utkin> has left #yocto21:59
*** rewitt <rewitt!~rewitt@134.134.139.76> has quit IRC22:00
*** rewitt <rewitt!~rewitt@134.134.139.76> has joined #yocto22:00
*** rcw <rcw!~rcw@104-195-246-183.cpe.teksavvy.com> has quit IRC22:29
*** maudat <maudat!~moda@64.18.88.250> has quit IRC22:42
*** lukma <lukma!~lukma@85-222-111-42.dynamic.chello.pl> has quit IRC23:17
yoctiNew news from stackoverflow: Using PREMIRRORS in Bitbake configuration <https://stackoverflow.com/questions/52940431/using-premirrors-in-bitbake-configuration>23:22
*** georgem_home <georgem_home!uid210681@gateway/web/irccloud.com/x-sljofkpikkxqoinn> has joined #yocto23:25
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has quit IRC23:25
*** awe00 <awe00!~awe00@unaffiliated/awe00> has quit IRC23:29
*** toanju <toanju!~toanju@x5ce7b6bd.dyn.telefonica.de> has quit IRC23:38
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has joined #yocto23:45

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