Friday, 2019-12-13

*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto00:00
*** armpit <armpit!~armpit@2601:202:4180:a5c0:61a6:377d:99d6:41b5> has joined #yocto00:13
*** vineela <vineela!~vtummala@134.134.137.77> has quit IRC00:19
*** bluca <bluca!~bluca@88.98.246.218> has quit IRC00:21
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has quit IRC00:30
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has joined #yocto00:44
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has quit IRC00:54
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC01:00
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto01:02
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC01:20
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC01:59
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto02:02
*** anujm <anujm!~anujm@134.134.139.76> has joined #yocto02:28
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC03:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto04:01
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto04:06
*** anujm <anujm!~anujm@134.134.139.76> has quit IRC04:19
*** camus <camus!~Instantbi@124.77.81.26> has joined #yocto04:41
*** kaspter <kaspter!~Instantbi@101.93.194.160> has quit IRC04:41
*** kaspter <kaspter!~Instantbi@222.67.188.181> has joined #yocto04:41
*** camus <camus!~Instantbi@124.77.81.26> has quit IRC04:45
*** ericch <ericch!~ericch@pool-108-34-251-214.prvdri.fios.verizon.net> has quit IRC04:55
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC05:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto06:01
*** Sandrita <Sandrita!d0586e2e@gateway/web/cgi-irc/kiwiirc.com/ip.208.88.110.46> has quit IRC06:14
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has joined #yocto06:20
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has quit IRC06:22
*** mrc3 <mrc3!~mrc3@linaro/mrc3> has joined #yocto06:36
*** rostam <rostam!~rostam@c-69-181-80-193.hsd1.ca.comcast.net> has quit IRC06:49
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC07:00
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto07:03
*** pohly <pohly!~pohly@p54BD581F.dip0.t-ipconnect.de> has joined #yocto07:10
*** iceaway <iceaway!~pelle@37.233.78.69> has quit IRC07:32
*** agust <agust!~agust@pD95F104D.dip0.t-ipconnect.de> has joined #yocto07:35
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has joined #yocto07:40
*** Domin1k <Domin1k!c1669b04@193.102.155.4> has joined #yocto07:48
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC07:56
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto07:58
*** frsc <frsc!~frsc@2003:a:e7a:6200:a427:c148:e286:fbe7> has joined #yocto08:02
Domin1kI would like two build a cmake project with CMAKE_BUILD_TYPE either set to Debug or Release depending on the Image i build. I've tried something like APP_BUILDTYPE = "Debug" set in debug-image.bb and in the Recipe i set EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=${APP_BUILDTYPE}". This does not work CMAKE_BUILD_TYPE was not set as i can see using cmake08:02
Domin1kmessage. What is the bitbake way to achieve this?08:02
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC08:04
*** lfa <lfa!~lfa@217.19.35.51> has joined #yocto08:06
*** iceaway <iceaway!~pelle@37.233.78.69> has joined #yocto08:09
erboDomin1k: you cannot affect how a package is built depending on image recipe08:19
erboWhen the package is built, it knows nothing about the image(s) it might end up at a later stage.08:21
LetoThe2ndDomin1k: what you are taking about is something to be set in DISTRO08:21
erboAnd depending on your usecase, maybe RelWithDebInfo will be enough and they you'll add the -dbg package to the image where you want debug08:23
erboBut if you really want a debug build look into what LetoThe2nd said08:24
*** guerinoni <guerinoni!~guerinoni@internet.micro-systems.it> has joined #yocto08:24
*** mckoan|away is now known as mckoan08:25
*** jmiehe <jmiehe!~Thunderbi@p578c106e.dip0.t-ipconnect.de> has joined #yocto08:28
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has quit IRC08:31
Domin1kLetoThe2nd: so you mean defining a debug.distro with  DISTRO_FEATURES_append = " app_debug" in debug_distro.conf and setting EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'app_debug', 'DEBUG', 'RELEASE', d)}" within my recipe ?08:32
LetoThe2ndDomin1k: bingo08:32
LetoThe2ndDomin1k: congrats, you're the first who ever had that use case and understood on first try instead of ranting "but i just want to"08:33
Domin1kNo in my usecase the "Debug" Buildtype is more than a Release with debug info. It's more a Dev-Version of the app08:34
Domin1kLetoThe2nd: Thanks! :]08:34
LetoThe2ndyeah, i totally understand. and yes, its a common usecase. people just fail to see that this is actually a distro switch (even philosophically correct, as it changes the image ABI/API), and keep on complaining "i just want that it works the way i want it to."08:35
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto08:37
*** Chrusel <Chrusel!c1669b04@193.102.155.4> has joined #yocto08:37
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has quit IRC08:42
wertigonletothe2nd: Hmm, interesting. We have that use case too, but we create two separate images from it instead08:43
wertigonOf course, our "dev" image is more like production + a bunch of extra packets and kernel trace options :P08:44
wertigonLearn new things every day! ^^08:44
LetoThe2ndwertigon: it depends certainly on the specific use case. generally, its like this: if you just want extra stuff installed, derived image. if you want to change/add debug flags to various bits and pieces, then distro. often its a combination of both.08:44
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has joined #yocto08:45
wertigonYeah, makes sense. So far we have a single unified distro but this might change soon as the product lineup that use spark grows08:45
wertigonspark is our project name for the Linux distro08:46
LetoThe2ndguessed that much08:48
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC08:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto09:00
*** frsc <frsc!~frsc@2003:a:e7a:6200:a427:c148:e286:fbe7> has quit IRC09:05
*** AndersD <AndersD!~AndersD@h-98-128-162-82.NA.cust.bahnhof.se> has quit IRC09:10
*** frsc <frsc!~frsc@2003:a:e7a:6200:c01e:b8a2:2404:9513> has joined #yocto09:17
*** JaMa <JaMa!~martin@109.238.218.228> has joined #yocto09:21
*** lfa_ <lfa_!~lfa@217.19.35.51> has joined #yocto09:30
*** lfa <lfa!~lfa@217.19.35.51> has quit IRC09:34
*** BobPungartnik <BobPungartnik!~BobPungar@187.113.145.34> has joined #yocto09:49
*** BobPungartnik <BobPungartnik!~BobPungar@187.113.145.34> has quit IRC09:50
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has joined #yocto09:54
*** BobPungartnik <BobPungartnik!~BobPungar@187.113.145.34> has joined #yocto09:54
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto09:55
*** BobPungartnik <BobPungartnik!~BobPungar@187.113.145.34> has quit IRC09:56
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC09:57
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-ynuwukqkpfozloit> has joined #yocto09:57
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto10:01
*** leon-anavi <leon-anavi!~Leon@lan.nucleusys.com> has joined #yocto10:03
*** bjobjo <bjobjo!~bjobjo@2a01:79d:3e81:5208::9e6> has quit IRC10:07
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto10:38
*** bluelightning_ <bluelightning_!~paul@pdpc/supporter/professional/bluelightning> has quit IRC10:42
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC10:57
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC10:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto11:00
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto11:05
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has quit IRC11:07
*** mckoan <mckoan!~marco@unaffiliated/mckoan> has joined #yocto11:07
mckoanhow do you replace busybox shell with bash? Is there a note about that?11:09
LetoThe2ndmckoan: there was some discussion lately about how to get rid of busybox altogether. or do you want to keep it, and just use bash the terminal itself?11:18
mckoanLetoThe2nd: both may be interesting, however ATM I need to use bash only11:20
mckoanLetoThe2nd: do you have any link abot such discussions?11:20
LetoThe2ndmckoan: and just adding it to the image doesn't do the trick? for us that works nicely.11:20
mckoanLetoThe2nd: I try11:20
*** rburton <rburton!51026a23@35.106.2.81.in-addr.arpa> has joined #yocto11:33
rburtonRP: erm, pseudo-native won't build for me11:33
milloniis http://downloads.yoctoproject.org/releases/opkg/ down?11:35
rburtonhttps://downforeveryoneorjustme.com/downloads.yoctoproject.org11:36
millonioops11:37
rburtonhalstead: downloads.yp appears to be down11:37
mckoanLetoThe2nd: yep, sorry for the noise11:38
millonican anyone recommend a mirror i could use?11:38
LetoThe2ndmckoan: np. easy problems are the best problems :)11:38
halsteadrburton: on it.11:39
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has quit IRC11:39
halsteadrburton, It appears that whole data center is offline at the moment. Trying to find out more.11:46
rburtonmilloni: what halstead said.  curious how you've been using yocto a while but don't have a copy of opkg.tar.gz in your DL_DIR!11:47
rburtonoe probably has another mirror11:47
rburtonhttp://sources.openembedded.org but doesn't have 0.4.1 if that's what you're after11:48
millonirburton: i dont know if you want to know: our CI builds everything from scratch every time because we couldn't get caching working11:49
rburtonmilloni: you couldn't get it to have a persistant DL_DIR? that must be very boring11:50
rburtonsome of the clones are sooooo sloooowww11:50
millonii wasnt around at the time, and now everything is on fire so we've got more important things to do11:50
halsteadmilloni, You can grab it from http://mirrors.kernel.org/yocto/opkg/ for now.11:50
millonithanks11:51
rburtonkanavin: so i just sucked up your entire branch and picked up a few broken bits.  what branch corresponds to the latest patchbomb?11:51
kanavinrburton, akanavin/package-version-updates11:51
rburtonright11:52
kanavinrburton, this branch is frequently forced pushed to, beware11:52
rburtonfwiw,     acl/attr wip breaks pseudo-native11:52
kanavinrburton, I think I have a later version of that?11:53
kanavinand no breakages observed here :-/11:53
rburtonprobably host specific?11:54
kanavinprobably, I am on ubuntu 18.0411:55
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC11:56
*** berton <berton!~berton@189.103.49.163> has joined #yocto11:56
*** rburton_ <rburton_!~rburton@35.106.2.81.in-addr.arpa> has joined #yocto11:59
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto11:59
*** rburton <rburton!51026a23@35.106.2.81.in-addr.arpa> has quit IRC12:00
*** rburton_ is now known as rburton12:00
*** berton <berton!~berton@189.103.49.163> has quit IRC12:01
*** berton <berton!~berton@189.103.49.163> has joined #yocto12:02
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has joined #yocto12:04
*** opennandra <opennandra!~marek@bband-dyn8.178-40-240.t-com.sk> has joined #yocto12:17
opennandrahello I have read presentation when external toolchain can be used to build yocto packages, I have such aarch64 toolchain from vendor of SoC12:18
opennandraquestion is how to integrate it to yocto? I think I need to create something like meta-linaro with toolchain stuff?12:18
opennandraI cannot use yocto toolchain as atf + kernrl won't boot when compiled with zeus 9.2 gcc12:18
opennandraany other ideas?12:18
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto12:19
grmahi, is there a way to add extra disk space to only the ext4 image and not to all other images ?12:20
rburtonyou can easily add more space to just a specific image name, but not type12:21
grmarburton: thx, ok, but not from yocto direct12:22
rburtonjust set IMAGE_ROOTFS_EXTRA_SPACE in the right place12:23
grmaok, thx12:23
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC12:24
*** lfa_ <lfa_!~lfa@217.19.35.51> has quit IRC12:27
*** TobSnyder <TobSnyder!~schneider@ip5f5aa32f.dynamic.kabel-deutschland.de> has quit IRC12:29
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC12:31
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto12:32
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has joined #yocto12:54
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC12:59
RPrburton: did you get it working?13:03
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto13:03
LetoThe2ndndec: ping - can you maybe put the announce on twitter?13:09
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has joined #yocto13:18
ndechi LetoThe2nd, ouch.. i thought it was done after you sent your email.. i will do it!13:24
LetoThe2ndndec: thanks.13:25
LetoThe2ndndec: sidenote, we have accumulated way over 6k view on YT alone by now.13:26
ndecnice!13:26
ndecLetoThe2nd: is it 4PM or 5PM?13:28
ndecyour email says 4PM, but it is usually at 5Pm, no?13:28
LetoThe2ndndec: even more ouch. please announce 4:30pm berlin time.13:29
LetoThe2ndi have to shuffle around a bit, as my usual streaming place is not available currently13:29
ndecah, ok.13:29
LetoThe2ndndec: thanks a lot!13:32
*** iceaway <iceaway!~pelle@37.233.78.69> has quit IRC13:33
ndecLetoThe2nd: np!13:35
RPkanavin: doesn't blacklisting nss on armv7 cause a lot of fallout?13:42
*** PaowZ <PaowZ!~Vince@193.252.149.222> has joined #yocto13:44
*** PaowZ_ <PaowZ_!~Vince@193.252.149.222> has quit IRC13:46
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has quit IRC13:48
*** radsquirrel <radsquirrel!~bradleyb@mail.fuzziesquirrel.com> has joined #yocto13:49
*** opennandra <opennandra!~marek@bband-dyn8.178-40-240.t-com.sk> has quit IRC13:50
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC13:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto14:00
*** kukela_cd <kukela_cd!ae63deca@174.99.222.202> has joined #yocto14:09
kukela_cdHey does anyone know if http://downloads.yoctoproject.org/releases/ id down. My build is failing when attempting to fetch opkg-0.4.1.tar.gz.14:10
kukela_cdsorry is down14:10
RPkukela_cd: yes, we're trying to get it sorted14:11
halsteadkukela_cd, Yes the data center has a router down.14:11
kukela_cdOkay thanks. I just wanted to be sure before i started digging into things14:11
halsteadkukela_cd, That file is also available at http://mirrors.kernel.org/yocto/opkg/14:12
*** jmiehe <jmiehe!~Thunderbi@p578c106e.dip0.t-ipconnect.de> has quit IRC14:14
rburtonkukela_cd: top tip is to ensure that your DL_DIR is shared and cached locally14:18
*** vineela <vineela!~vtummala@134.134.137.77> has joined #yocto14:18
kukela_cdyeah that is true14:20
millonihow do i use the mirror at http://mirrors.kernel.org/yocto/ for everything?14:21
rburtonthats not a full mirror14:21
milloniyeah but i hope it will at least have the things that originally come from downloads.yp14:21
milloniit seems to mirror downloads.yp/releases14:22
rburtonlook up MIRRORS in the manual14:22
*** Sandrita <Sandrita!d0586e2e@gateway/web/cgi-irc/kiwiirc.com/ip.208.88.110.46> has joined #yocto14:22
millonitrying that now14:23
milloniif i just add http://mirrors.kernel.org/yocto/ will it go into each subdirectory looking for packages?14:23
rburtonnote how MIRRORS is pairs of urls14:25
rburtonmap one to the other14:25
rburtondv_: am i imagining it, or did you have patches to move gstreamer to meson?14:27
dv_yep14:27
millonii'm trying this14:27
millonihttp://.*/.* http://mirrors.kernel.org/yocto/ \n \14:27
milloniand a similar pattern for https, ftp ,etc14:27
millonibut that's where my understanding of the syntax ends14:28
*** hpsy <hpsy!~hpsy@217.66.60.5> has joined #yocto14:28
milloniso for example, opkg needs14:28
milloniSRC_URI = "http://downloads.yoctoproject.org/releases/${BPN}/${BPN}-${PV}.tar.gz14:28
rburtontry 'http://downloads.yoctoproject.org/ https://mirrors.kernel.org/yocto/'14:29
rburtonoh, /releases/ on the first bit14:29
milloniok thanks14:29
*** farnerup <farnerup!~farnerup@h-254-84-175.A137.corp.bahnhof.se> has quit IRC14:39
dv_rburton: I'll try to rebase them tomorrow14:50
dv_and send them to the mailing list14:50
rburtondv_: awesome14:50
dv_there are some leftover unclear issues though14:50
rburtondv_: wrote a little qa test to tell me when recipes use autotools but have a meson file, and gstreamer was the big obvious one14:50
dv_rburton: for the todos, see https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg129383.html14:52
dv_yeah, I can imagine14:52
rburtonok14:55
rburtonwell rebase and post as a WIP and we can discuss further14:55
rburtonthanks!14:55
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC14:56
*** wertigon <wertigon!8addfa13@138.221.250.19> has quit IRC14:59
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto15:00
*** pharaon2502 <pharaon2502!~manjaro-u@cpe-188-129-102-66.dynamic.amis.hr> has joined #yocto15:02
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC15:06
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has joined #yocto15:07
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC15:08
*** ericch <ericch!~ericch@50-205-235-218-static.hfc.comcastbusiness.net> has joined #yocto15:09
*** hpsy <hpsy!~hpsy@217.66.60.5> has quit IRC15:12
*** yates <yates!~user@rrcs-96-10-234-158.midsouth.biz.rr.com> has joined #yocto15:14
yatesif i give bitbake a list of recipes, bitbake r1 r2 r3 ... RN, does it build them in order?15:14
mckoanyates: no15:14
kergothundefined order unless there are dependencies amongst them15:15
yatesi see. ok thank you15:16
kanavinRP: rpm will no longer build, or mozjs. I don't think there's much else?15:16
mckoankergoth: probably he means on command line15:16
kergothi know, but he didn't specify if any of those specified on the commandline depend on one another. probably not, but unless he read the recipes..15:17
kergoth:)15:17
RPkanavin: rpm is probably kind of important though :(15:17
kanavinRP: rburton has a patch to switch rpm to gnutls15:17
RPkanavin: which has issues iirc :)15:21
RPbut seriously, that would be a good move15:21
kanavinRP: also, armv7a only needs the disabling. qemuarm for instance still works fine.15:21
* RP thinks he's found a way to fix the performance issue when rehashing15:21
RPkanavin: it does sound rather like there is a bug in rpm15:21
*** vineela <vineela!~vtummala@134.134.137.77> has quit IRC15:30
kanavinRP: rpm also has an option use openssl, I think that should work just as well15:37
kanavinthere are no other users of nss in core at least15:37
RPkanavin: right, I'm fine with removing nss15:37
kanavinRP: but if we want polkit in core, it needs mozjs, which needs nss :-/15:38
RPkanavin: gah! :)15:38
kanavin(also mozjs needs python2-native !)15:39
kergothugh15:39
RPkanavin: well, python2 isn't coming back...15:39
*** sveinse <sveinse!~sveinse@7.92-221-150.customer.lyse.net> has joined #yocto15:39
kanavinRP, yes, I have a patch to remove the recipes. Just waiting for some kind of action on copying them to a different layer.15:40
RPkanavin: I'm just trying to get M1 sorted before I think about that :)15:40
RPwe've done the hard part for core15:40
kanavinRP, for sure15:41
*** frsc <frsc!~frsc@2003:a:e7a:6200:c01e:b8a2:2404:9513> has quit IRC15:42
sveinseIs downloads.yoctoprojects.org down for the counts?15:43
sveinsedownloads.yoctoproject.org15:43
RPsveinse: yes, its being worked on15:46
sveinseRP, ok thanks. Will there come a notification here when it is complete?15:47
RPsveinse: when I say worked on, I mean people are aware of the problem and working to fix it, it wasn't scheduled15:47
RPsveinse: I'm sure halstead will mention something, yes15:48
sveinseRP: ok, best of luck getting it up15:48
*** lucaceresoli <lucaceresoli!~lucaceres@45.11.168.109.cust.ip.kpnqwest.it> has quit IRC15:52
kergothnice, pydeps (https://github.com/thebjorn/pydeps) works with graph-easy, figured it'd be easy enough. https://gist.github.com/5a6e8e85fa53097a01e886a677b0bfb715:56
kergothshows the cycles between our bitbake modules in an ascii graph15:56
kergothoh right, forgot it can use unicode boxart instead. https://gist.github.com/385fc98d3e9a8018d56d6003307da3b615:57
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC15:58
opellohi, i'm trying to backport some go recipes and there's a helper python function (go_map_arm) that seems to be failing, and when i print out the value of the arguments in that function i get things like  "go_map_arm a=${TUNE_ARCH} f=${TUNE_FEATURES_tune-${DEFAULTTUNE}}" but not an expanded form16:02
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto16:02
RPkergoth: all a bit circular :/16:03
kergothyeah, i suspected as much :)'16:03
kergothnot a huge deal, just something to think about refactoring someday..16:03
RPkergoth: sadly so did I16:03
kergothi'd really like the parsing to provide a nicer api at some point. it should be easy to parse an arbitrary string, not just files, for example16:03
kergothwould have to have a break from fighting fires to do something like that htough :)16:04
kergothguido's articles on PEG parsing lately are rather interseting16:05
Piratyhi folks, i want to install a bunch of *ipk into another dir, like "opkg -o /myNewRootfs install *.ipk" but that fails if a package in the set of ipk is already installed in / (because resolution of -o seems to leak to / as well)... maybe i use it wrong?16:05
RPkergoth: right. My big worry is performance too :/ We have some real problems in various parts of the code16:05
Piratyidea is to install a whole second installation into /NewRootfs16:06
kergothPiraty: you should really turn it into a package feed with opkg-utils, add it to your opkg.conf, and install them by name16:06
kergoththen it'd also use the dependencies16:06
kergothopkg can use local package feeds16:06
kergoththat'd be my suggestion, anyway16:07
*** pharaon2502 <pharaon2502!~manjaro-u@cpe-188-129-102-66.dynamic.amis.hr> has quit IRC16:07
Piratythe conflict arises because package foo is to be installed which matches the same version of foo that is already installed in / (which is expected)16:08
kergothright, and if it's a package feed installing by name, it won't reinstall it. it assumes a local file is something you really want installed as is16:09
kergothafaict anyway16:09
kergothusing a feed should sidestep the errors and just not install those16:09
Piratybut i don't want to set --force-reinstall16:09
Piratyyou assume a feed solves my problem and will instal foo into /newRoot anyway?16:09
Piratythat'd be ideal16:09
kergothhmmm16:10
kergothnot sure, actually, just a random idea. it's odd that -o is leaking that way to begin with16:10
kergothit should be using a separate package database16:10
Piratyadelcast: ^ can you provide info?16:10
kergothshould probably start by investigating that further if possible16:10
kergothhmm, i guess it depends on the original purpose of offline root16:11
kergothusing a separate rootfs or just installing a subset of packages to external media16:11
kergothnot sure, actually16:11
Piraty--force-reinstall indeed does the thing i intended16:11
kergothah, good16:11
*** leon-anavi <leon-anavi!~Leon@lan.nucleusys.com> has quit IRC16:11
kergothnevermind then :)16:11
Piratyi gotta double check still16:12
Piratymight leak even more16:12
Piratydespite there's no actual reinstall16:12
Piratyhmm i hope it doesn't write to /var but /newRoot/var for opkg db instead16:12
*** jeff_dagenais <jeff_dagenais!~jeff.dage@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has joined #yocto16:26
Piratywhat does -o differ from -d then??16:27
RPJPEW: hoping these tweaks to siggen and runqueue sort the performance issue (on list)16:30
JPEWRP: Ok, I'll take a look16:31
RPJPEW: they're kind of obvious in hindsight16:31
*** Bunio_FH <Bunio_FH!~bunio@81-18-201-214.static.chello.pl> has quit IRC16:34
jeff_dagenaisHi guys! I've found a nice one I think... meta-xilinx-tools/conf/layer.conf has "INHERIT += xsct-tc" and in this bbclass, they mess with PATH. This has the effect that random recipes discover binaries in these XSCT paths that were obviously not mentionned in their DEPENDS. The fix appeared quite simple as changing the INHERIT to "INHERIT += xsct-tarball" which actually contains the eventHandler for16:37
jeff_dagenaisBuildStarted, the reason for all this. It does fix the unwanted discovery of binaries, but unfortunately, I have to force build these recipes. It appears that PATH's value is not part of sstate hashes! Any clues how to fix this?16:37
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has quit IRC16:46
*** tgamblin <tgamblin!~tgamblin@128.224.252.2> has quit IRC16:49
RPJPEW: logic isn't quite right, seeing errors. Working on that...16:52
*** fitzsim <fitzsim!~user@69-165-165-189.dsl.teksavvy.com> has quit IRC16:53
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC16:57
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto16:59
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto16:59
*** vineela <vineela!~vtummala@134.134.137.77> has joined #yocto17:10
*** nslu2-log <nslu2-log!~nslu2-log@milla.nas-admin.org> has quit IRC17:13
*** tgamblin <tgamblin!~tgamblin@CPE64777de11593-CM64777de11590.cpe.net.cable.rogers.com> has joined #yocto17:18
RPJPEW: fixed the code, performance issue is back :(17:24
JPEWRP: Hmm. OK. I haven't had a chance to look at it just yet. Do you know if its the same reason for the slow down?17:25
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC17:26
RPJPEW: I know its all in process_possible_migrations :/17:26
armpitI noticed if the hashserve.sock exits, the server times out. Is there cleanup for this ?17:27
jeff_dagenaisCome to think of it, it is perfectly normal that PATH is not part of any sstate... anyone's build dir location would change the hashes.17:27
RPJPEW: just realised the oecore part for the function is a performance problem too17:29
*** Domin1k <Domin1k!c1669b04@193.102.155.4> has quit IRC17:33
*** nslu2-log <nslu2-log!~nslu2-log@milla.nas-admin.org> has joined #yocto17:33
*** guerinoni <guerinoni!~guerinoni@internet.micro-systems.it> has quit IRC17:37
*** khem <khem!~khem@unaffiliated/khem> has quit IRC17:38
*** micka <micka!~micka@reverse-75.fdn.fr> has quit IRC17:47
*** vineela <vineela!~vtummala@134.134.137.77> has quit IRC17:48
*** mckoan is now known as mckoan|away17:49
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto17:52
*** rcw <rcw!~rcw@128.224.252.2> has joined #yocto17:54
*** kukela_cd <kukela_cd!ae63deca@174.99.222.202> has quit IRC17:57
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC18:00
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto18:02
*** T_UNIX <T_UNIX!uid218288@gateway/web/irccloud.com/x-ynuwukqkpfozloit> has quit IRC18:04
*** Bunio_FH <Bunio_FH!~bunio@clj-165.netdrive.pl> has joined #yocto18:14
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC18:14
*** vineela <vineela!vtummala@nat/intel/x-knldvicxacxyxuly> has joined #yocto18:20
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto18:22
*** Sandrita <Sandrita!d0586e2e@gateway/web/cgi-irc/kiwiirc.com/ip.208.88.110.46> has quit IRC18:24
*** jeff_dagenais <jeff_dagenais!~jeff.dage@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC18:34
*** rcrudo <rcrudo!~rcrudo@i5387F440.versanet.de> has quit IRC18:39
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has joined #yocto18:46
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC18:58
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto19:01
*** kapare <kapare!~kapare@38.127.66.236> has joined #yocto19:02
*** florian_kc <florian_kc!~florian_k@Maemo/community/contributor/florian> has joined #yocto19:10
*** kapare <kapare!~kapare@38.127.66.236> has quit IRC19:16
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has joined #yocto19:38
*** jessecureton_ <jessecureton_!d863d0fa@216.99.208.250> has joined #yocto20:05
*** jessecureton_ is now known as jessecureton20:06
jessecuretonSeeing failures hitting `downloads.yoctoproject.org` - known outage? downforeveryoneorjustme agrees with me20:08
jessecuretonsorry - i just checked the IRC logs. my bad20:09
*** florian_kc is now known as florian20:16
*** dreyna <dreyna!~dreyna@c-24-5-28-247.hsd1.ca.comcast.net> has quit IRC20:18
*** zwelch <zwelch!~zwelch@fluffy.superlucidity.net> has joined #yocto20:20
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto20:22
*** rcw <rcw!~rcw@128.224.252.2> has quit IRC20:30
*** alicef <alicef!~none@gentoo/developer/alicef> has quit IRC20:38
halsteaddownloads.yoctoproject.org is back online.20:39
*** alicef <alicef!~none@gentoo/developer/alicef> has joined #yocto20:39
*** armpit <armpit!~armpit@2601:202:4180:a5c0:61a6:377d:99d6:41b5> has quit IRC20:44
denixhalstead: thank you, Michael, for your support and updates!20:46
*** jessecureton <jessecureton!d863d0fa@216.99.208.250> has quit IRC20:46
*** armpit <armpit!~armpit@2601:202:4180:a5c0:dd29:b8d2:59d6:df97> has joined #yocto20:47
halsteadThanks denix.20:55
halsteadWill need to put some thought into which resources on downloads.yoctoproject.org have to stay available to keep builds running and which don't. Split into highly available bits and archives.20:56
JPEWhalstead: Is there any mechanism (e.g. rsync) we could use to mirror the whole thing internally?20:58
denixhalstead, JPEW: aren't the builds and downloads not on the same subnet?20:59
*** jklare <jklare!~jklare@157.97.76.18> has quit IRC20:59
halsteadJPEW, The "whole thing" is 80TB. We can certainly have a discussion about mirrors.21:01
JPEWhalstead: Ah, well... though I would ask :)21:01
halsteaddenix, Different internal subnets. The same public IP range.21:02
halsteadJPEW, The important bits are much much smaller. I think mirroring those would be great. Like we do to mirrors.kernel.org.21:02
JPEWhalstead: Hence the discussion about splitting it up?21:03
* halstead nods.21:03
JPEWhalstead: Make sense21:03
JPEWhalstead: Whats all in there now?21:04
halsteadJPEW, All the previous release artefacts. Lots of sstate. Nightly builds.21:05
*** jklare <jklare!~jklare@157.97.76.18> has joined #yocto21:05
JPEWhalstead: I suppose the main one that causes people issues is the source code that is mirrored?21:06
halsteadJPEW, I would guess so. As well as uninative and opkg releases.21:07
*** berton <berton!~berton@189.103.49.163> has quit IRC21:16
*** WillMiles <WillMiles!~Will@static-209-87-231-80.storm.ca> has quit IRC21:22
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has quit IRC21:33
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC21:43
*** tgamblin <tgamblin!~tgamblin@CPE64777de11593-CM64777de11590.cpe.net.cable.rogers.com> has quit IRC21:54
*** khem <khem!~khem@unaffiliated/khem> has quit IRC22:02
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto22:02
*** dv_ <dv_!~dv@62.178.50.190> has quit IRC22:08
*** dv_ <dv_!~dv@62.178.50.190> has joined #yocto22:22
*** fury <fury!uid193779@gateway/web/irccloud.com/x-gprnwwwtbbbtpbbn> has quit IRC22:28
*** fury <fury!uid193779@gateway/web/irccloud.com/x-mwrlwsampidhfccx> has joined #yocto22:30
*** goliath <goliath!~goliath@clnet-p04-043.ikbnet.co.at> has joined #yocto22:40
*** pohly <pohly!~pohly@p54BD581F.dip0.t-ipconnect.de> has quit IRC22:48
*** JaMa <JaMa!~martin@109.238.218.228> has quit IRC22:50
*** roussinm <roussinm!~mroussin@ipagstaticip-d73c7528-4de5-0861-800b-03d8b15e3869.sdsl.bell.ca> has quit IRC22:58
millonihalstead: thanks for fixing downloads.yp!22:59
halsteadmilloni: you're welcome. Apologies for the extended downtime. There were many problems the provider should have been prepared for and weren't.23:00
*** vineela <vineela!vtummala@nat/intel/x-knldvicxacxyxuly> has quit IRC23:01
*** agust <agust!~agust@pD95F104D.dip0.t-ipconnect.de> has quit IRC23:03
*** Pharaoh_Atem <Pharaoh_Atem!~neal@fedora/ngompa> has joined #yocto23:04
*** tlwoerner <tlwoerner!~Trevor@unaffiliated/tlwoerner> has quit IRC23:11
rburtonJPEW, RP: pod fix rfc posted23:23
*** rburton <rburton!~rburton@35.106.2.81.in-addr.arpa> has quit IRC23:29
*** florian <florian!~florian_k@Maemo/community/contributor/florian> has quit IRC23:37
*** hpsy <hpsy!~hpsy@85.203.15.119> has joined #yocto23:46

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