*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving) | 00:12 | |
*** otavio <otavio!~otavio@201-34-65-230.user3p.brasiltelecom.net.br> has quit IRC (Remote host closed the connection) | 00:23 | |
*** otavio <otavio!~otavio@201-34-65-230.user3p.brasiltelecom.net.br> has joined #yocto | 00:45 | |
moto-timo | JPEW: happiness is a green zuul build | 00:46 |
---|---|---|
moto-timo | JPEW: I forget where I got with usbguard… I was intending to drop that before I generated a PR. No harm, but non functional? | 00:47 |
JPEW | Not sure... I suppose you're getting all the github notifications. Sorry about that | 00:49 |
moto-timo | JPEW: nah, I was just looking at the PR intentionally | 00:49 |
JPEW | moto-timo: Cool | 00:50 |
JPEW | If you check the buildset in zuul (https://zuul.wattissoftware.com/t/wattissoftware-zuul/buildsets) you can download the images from the "deploy" item in the "artifact" tab to flash to a device | 00:52 |
moto_timo[m] | Ooohhhh | 00:53 |
JPEW | Those one only stick around for 24 hours though, since I don't have unlimited disk space | 00:53 |
JPEW | (they are passed to the labgrid tests when gating) | 00:53 |
moto_timo[m] | Still a cool feature | 00:53 |
JPEW | Eventually I'll make the daily builds publish when they are done | 00:53 |
JPEW | And maybe start a package feed or something... need a prserv first | 00:54 |
moto_timo[m] | That’s been my plan too | 00:55 |
moto-timo | Lol. As I randomly switch from irccloud to matrix… depending on which app notification won | 00:56 |
moto-timo | When did it become the 19th? 🤦 | 00:57 |
moto-timo | 🏎✈️🚀🛸 | 00:58 |
*** florian <florian!~florian@dynamic-093-131-011-213.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 268 seconds) | 01:11 | |
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has quit IRC (Quit: ZNC 1.8.2 - https://znc.in) | 01:24 | |
*** marka <marka!~marka@198-84-181-245.cpe.teksavvy.com> has joined #yocto | 01:24 | |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has quit IRC (Quit: ZNC - http://znc.in) | 02:20 | |
*** Emantor <Emantor!~Emantor@magratgarlick.emantor.de> has joined #yocto | 02:20 | |
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has quit IRC (Quit: Leaving.) | 02:20 | |
Tokamak | quite confused on bitbake variable expansion. I found a recipe that defines `local VAR=foo'. Is this similar to `export VAR=foo`, expect the context is local to the recipe? | 02:22 |
moto-timo | Tokamak: that’s not Yocto specific, it’s bash https://tldp.org/LDP/abs/html/localvar.html | 02:28 |
Tokamak | right, but where i'm going insane is yocto's shell syntax isn't actually bash, but inspired by? | 02:29 |
Tokamak | reading through this: https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#variable-expansion | 02:29 |
Tokamak | `VAR=foo` would be stored not in the shell environment, but in a bitbake var db, if i'm not going completely insane? | 02:30 |
Tokamak | i was only caught off guard by this by realizing that ${VAR} is not the same as $VAR | 02:32 |
*** lexano <lexano!~lexano@cpe00e06722f0e4-cm98524a70e35e.cpe.net.cable.rogers.com> has quit IRC (Read error: Connection reset by peer) | 02:32 | |
moto-timo | That’s also not unique to Yocto. | 02:34 |
Tokamak | this is a more relevant link: https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#exporting-variables-to-the-environment | 02:35 |
moto-timo | What you are looking at is a shell task. It’s not the same as bitbake variables. | 02:35 |
Tokamak | this was non-obvious to me until about 1 hour ago | 02:35 |
moto-timo | So in this case, that variable is only in the scope of that shell function or shell task. | 02:36 |
Tokamak | so where i'm really darn confused is.. bitbake shell tasks are not actually executed by bash? | 02:36 |
Tokamak | the syntax of local makes sense (coming from a bash background) but where i'm really struggling is a somewhat formal definition of the shell task environment. | 02:38 |
Tokamak | ${FOO} expands from yocto var db | 02:39 |
Tokamak | $FOO expands from environment | 02:39 |
Tokamak | FOO="stuff" sets in yocto var db?export FOO="stuff" exports to shell? | 02:39 |
Tokamak | local FOO="suff" creates a local shell variable (to processing context of recipe)? | 02:39 |
Tokamak | (sorry, copy paste in my irc client really failed here) | 02:40 |
moto-timo | local would only be in the scope of the shell task or shell function | 02:40 |
Tokamak | I elaborated the above examples i've seen thus far, are these remotely correct? | 02:42 |
moto-timo | ${} is immediate expansion | 02:42 |
moto-timo | export makes it available outside the specific task | 02:43 |
moto-timo | Try not to make it a black box. It’s all shell and python underneath. | 02:44 |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds) | 02:46 | |
Tokamak | how do i look to make it less of a black box? e.g. I tried to do $((var1 + var2)), which resulted in an error | 02:46 |
moto-timo | I can't see your code, so I can only go on what you've asked | 02:47 |
moto-timo | what was the error? etc. | 02:47 |
Tokamak | i just worked around it by piping through bc. but i'll revert here in a bit for a test | 02:48 |
moto-timo | what are you trying to accomplish by adding the variables? | 02:48 |
moto-timo | most things in the bitbake context are strings, and most commonly the lists are space delimited (so variables which are a list are space delimited) | 02:49 |
moto-timo | so you could do: | 02:49 |
Tokamak | ultimately i messaged trying to understand how this all works as the links earlier really don't capture the mechanics of variable expansion | 02:49 |
moto-timo | FOO = "bar" | 02:49 |
moto-timo | FOO += "baz" | 02:49 |
moto-timo | echo ${FOO} | 02:50 |
moto-timo | barbaz | 02:50 |
moto-timo | or using override syntax | 02:50 |
moto-timo | FOO = "bar" | 02:50 |
moto-timo | FOO:append = "baz" | 02:50 |
Tokamak | oh, i wanted to do the bash arithmetic addition. $((var1 + var2)) where | 02:50 |
moto-timo | same result (although normally you are appending to a space delimited variable so you want FOO:append = " baz" | 02:51 |
Tokamak | i'm calculating image byte offsets for dm-verity | 02:51 |
*** vd <vd!~vd@bras-base-mtrlpq2848w-grc-41-70-53-240-121.dsl.bell.ca> has quit IRC (Quit: Client closed) | 02:51 | |
*** vd <vd!~vd@bras-base-mtrlpq2848w-grc-41-70-53-240-121.dsl.bell.ca> has joined #yocto | 02:51 | |
Tokamak | yea the special syntax for variable appends / overrides makes sense. i'm just struggling inside the task's shell context | 02:51 |
moto-timo | we frequently move to python for more complicated tasks, shell has it's limitations and the syntax gets ugly very very fast | 02:52 |
moto-timo | but without looking at exactly what you've tried, I can't really say much more | 02:53 |
Tokamak | trying to give you an example here in a second | 02:53 |
moto-timo | (and I should be shutting down and idling my brain a bit) | 02:53 |
Tokamak | well that fine if you want to shutdown - i appreciate the help you've given | 02:54 |
moto-timo | if you have something, give it a shot | 02:54 |
moto-timo | no promises | 02:54 |
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has joined #yocto | 02:57 | |
Tokamak | man, i'm used to the ease of gentoo's wgetpaste. do you happen to know of a similar tool to upload a file? | 02:58 |
moto-timo | you can use pastebin (or use irccloud which allows both pasting snippets and uploading files) | 02:59 |
moto-timo | or a GitHub gist | 02:59 |
moto-timo | or put it in a git repo somewhere and paste the link | 03:00 |
Tokamak | manual copy-paste is really awkward in my environment, unfortunately | 03:00 |
moto-timo | so is reading your mind ;? | 03:00 |
moto-timo | :) | 03:00 |
moto-timo | j/k | 03:00 |
Tokamak | haha, fair. | 03:01 |
Tokamak | (struggling over here) | 03:01 |
moto-timo | poor attempt at Friday night humor | 03:01 |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 256 seconds) | 03:01 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 03:01 | |
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto | 03:02 | |
*** alimon <alimon!~alimon@ec2-54-225-101-41.compute-1.amazonaws.com> has quit IRC (Quit: The Lounge - https://thelounge.chat) | 03:03 | |
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has quit IRC (Quit: Client closed) | 03:03 | |
moto-timo | you might need to do $(( var1 = var1 + var2)) | 03:06 |
moto-timo | http://faculty.salina.k-state.edu/tim/unix_sg/bash/math.html#bash-arithmetic | 03:07 |
moto-timo | I don't remember trying to do that in a shell task, so YMMV | 03:09 |
Tokamak | https://dpaste.org/FpnS | 03:09 |
Tokamak | look at lines 60 and 61. 61 is what gets syntax errors by bitbake's shell parser | 03:10 |
Tokamak | i mimicked the style of the original recipe. but haven't tested all changes yet | 03:11 |
moto-timo | this might be relevant, or not: https://stackoverflow.com/questions/64641596/how-to-calculate-file-size-to-pad-in-bitbake | 03:12 |
moto-timo | ah, I'm not sure you can pipe within a shell task | 03:12 |
moto-timo | anyway, my eyelids are telling me time to move away from screens | 03:13 |
moto-timo | good luck! | 03:13 |
Tokamak | this is what i mean about being very confused about bitbake's shell being not bash | 03:13 |
Tokamak | and thanks. about to try to verify what i have now, with the ugly work arounds | 03:13 |
moto-timo | I was trying to search the bitbake code for where the shell tasks are called, but my tired brain didn't find it | 03:14 |
Tokamak | thanks for trying! | 03:14 |
moto-timo | when the EU/UK folks are on-line you might get more help | 03:14 |
Tokamak | i certainly hope i'm not up that late :P | 03:14 |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 240 seconds) | 03:16 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 03:34 | |
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV) | 03:56 | |
*** jmiehe1 <jmiehe1!~Thunderbi@user/jmiehe> has joined #yocto | 04:12 | |
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Ping timeout: 268 seconds) | 04:14 | |
*** jmiehe1 is now known as jmiehe | 04:14 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 268 seconds) | 04:29 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 04:32 | |
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has quit IRC (Quit: Leaving.) | 04:43 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds) | 04:46 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 04:49 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 264 seconds) | 05:12 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 05:28 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 260 seconds) | 05:39 | |
*** Vonter <Vonter!~Vonter@user/vonter> has joined #yocto | 05:45 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 05:55 | |
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has quit IRC (Ping timeout: 260 seconds) | 06:05 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 264 seconds) | 06:27 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 06:30 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto | 07:08 | |
*** davidinux <davidinux!~davidinux@84.17.59.176> has joined #yocto | 07:24 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving) | 07:26 | |
*** camus1 <camus1!~Instantbi@58.246.136.202> has joined #yocto | 07:29 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto | 07:29 | |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 256 seconds) | 07:29 | |
*** camus1 is now known as camus | 07:29 | |
*** pgowda_ <pgowda_!uid516182@ilkley.irccloud.com> has joined #yocto | 07:44 | |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 240 seconds) | 07:48 | |
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto | 07:48 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds) | 08:28 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 08:32 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 260 seconds) | 08:51 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 08:54 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto | 09:05 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 240 seconds) | 09:20 | |
*** adrian__ <adrian__!~F_Adrian@62.32.0.69> has joined #yocto | 10:08 | |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 240 seconds) | 10:33 | |
*** camus <camus!~Instantbi@58.246.136.202> has joined #yocto | 10:33 | |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto | 10:44 | |
*** zyga <zyga!~zyga@31.0.173.147> has joined #yocto | 10:47 | |
RP | Tokamak: Firstly, bitbake uses sh syntax, not bash, we don't support bashisms. Secondly, bitbake performs variable expansion on the shell tasks before running them. This means ${XXX} will be expanded if XXX is set in the datastore | 10:52 |
RP | Tokamak: finally, we do have to parse the shell to get some dependency information. Our parser doesn't understand some shell expressions so you will see errors if you use syntax our parser doesn't understand | 10:53 |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 260 seconds) | 11:10 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds) | 11:16 | |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto | 11:17 | |
*** dtometzki <dtometzki!~dtometzki@fedora/dtometzki> has quit IRC (Quit: ZNC 1.8.2 - https://znc.in) | 11:28 | |
*** dtometzki <dtometzki!~dtometzki@fedora/dtometzki> has joined #yocto | 11:29 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 11:30 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving) | 11:32 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 268 seconds) | 12:18 | |
*** camus1 <camus1!~Instantbi@58.246.136.202> has joined #yocto | 12:19 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 12:21 | |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Ping timeout: 265 seconds) | 12:21 | |
*** camus1 is now known as camus | 12:21 | |
*** bps <bps!~bps@80.71.142.18.ipv4.parknet.dk> has joined #yocto | 12:29 | |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Read error: Connection reset by peer) | 12:32 | |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto | 12:32 | |
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has joined #yocto | 12:40 | |
*** camus <camus!~Instantbi@58.246.136.202> has quit IRC (Quit: camus) | 13:02 | |
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 264 seconds) | 13:02 | |
*** florian_kc <florian_kc!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Read error: Connection reset by peer) | 13:03 | |
*** florian__ <florian__!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has joined #yocto | 13:03 | |
*** bps <bps!~bps@80.71.142.18.ipv4.parknet.dk> has joined #yocto | 13:08 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto | 13:12 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 260 seconds) | 13:14 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 13:18 | |
*** kanavin <kanavin!~Alexander@2a02:2454:29b:3b00:d35d:e3cf:58b5:748b> has quit IRC (Ping timeout: 265 seconds) | 13:22 | |
*** prabhakarlad <prabhakarlad!~prabhakar@pc.renesas.eu> has joined #yocto | 13:26 | |
*** pgowda_ <pgowda_!uid516182@ilkley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity) | 13:41 | |
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 250 seconds) | 14:23 | |
*** lexano <lexano!~lexano@cpe00e06722f0e4-cm98524a70e35e.cpe.net.cable.rogers.com> has joined #yocto | 14:23 | |
*** nad <nad!~nad@pr-svc-em1-115.emea.corpinter.net> has joined #yocto | 14:30 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 240 seconds) | 14:44 | |
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has joined #yocto | 15:13 | |
*** bps <bps!~bps@cpe.ge-7-1-9-436.noenqe10.dk.customer.tdc.net> has joined #yocto | 15:19 | |
*** nad <nad!~nad@pr-svc-em1-115.emea.corpinter.net> has quit IRC (Quit: Client closed) | 15:42 | |
*** sakoman <sakoman!~steve@rrcs-66-91-142-162.west.biz.rr.com> has joined #yocto | 15:48 | |
*** florian__ <florian__!~florian@dynamic-093-131-146-094.93.131.pool.telefonica.de> has quit IRC (Ping timeout: 264 seconds) | 15:54 | |
*** tgamblin_ <tgamblin_!~tgamblin@2607:fea8:c29d:d7c0::e120> has joined #yocto | 15:56 | |
*** tgamblin <tgamblin!~tgamblin@2607:fea8:c29d:d7c0::e120> has quit IRC (Ping timeout: 264 seconds) | 15:57 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has joined #yocto | 16:06 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 240 seconds) | 16:15 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 16:19 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 256 seconds) | 17:12 | |
*** goliath <goliath!~goliath@user/goliath> has joined #yocto | 17:13 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 17:15 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 268 seconds) | 17:21 | |
*** kroon <kroon!~kroon@37-247-29-68.customers.ownit.se> has quit IRC (Quit: Leaving) | 17:35 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 17:35 | |
*** nerdboy <nerdboy!~nerdboy@gentoo/developer/nerdboy> has quit IRC (Ping timeout: 250 seconds) | 17:42 | |
*** Vonter <Vonter!~Vonter@user/vonter> has quit IRC (Quit: WeeChat 3.3) | 17:45 | |
*** nerdboy <nerdboy!~nerdboy@47.143.129.189> has joined #yocto | 17:54 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 265 seconds) | 17:58 | |
*** bps <bps!~bps@user/bps> has quit IRC (Ping timeout: 240 seconds) | 17:59 | |
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has quit IRC (Quit: Connection closed for inactivity) | 17:59 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 18:01 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 240 seconds) | 18:07 | |
khem | RP sent couple of patches to get ptest images going on pi4. Trying to up the CI loop a bit here with more serious testing | 18:15 |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 18:22 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:22 | |
Guest66 | Hi, does anybody know which package/config is creating /usr/lib/opkg/alternatives/ ? | 18:24 |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit) | 18:25 | |
*** fleg <fleg!64bf4386e9@user/fleg> has quit IRC (Remote host closed the connection) | 18:26 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:27 | |
vmeson | Try: $ oe-pkgdata-util find-path "/usr/lib/opkg/alternatives*" -- Guest66 | 18:27 |
Guest66 | Ma Problem is that the path is available within morty but Not in dunfell… | 18:28 |
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has joined #yocto | 18:31 | |
Guest66 | So it is returning „unable to find any package producing path…“ | 18:32 |
vmeson | Guest66: odd, I don't think we would have changed anything related to alternatives | 18:34 |
* vmeson checks email logs... | 18:34 | |
Guest66 | Opkg was updated between morty and dunfell. But could yet Not find why the path is not there. | 18:36 |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed) | 18:36 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:37 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit) | 18:38 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:38 | |
vmeson | Guest66: here as an email [OE-core] [PATCH v4] opkg-utils: Change alternatives lib path from /usr/lib/opkg to /var/lib/opkg -- 2017-10-30, 10:12 p.m. | 18:39 |
vmeson | but I don't think that was merged. | 18:39 |
Guest66 | Either I dont have it under var | 18:41 |
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Ping timeout: 268 seconds) | 18:42 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed) | 18:43 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:44 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed) | 18:51 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:51 | |
Tokamak | Thanks for the context RP. | 18:56 |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Quit: Client closed) | 18:57 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 18:57 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit) | 19:01 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has joined #yocto | 19:05 | |
*** Guest66 <Guest66!~Guest66@2a02:6d40:2451:fd01:6044:4b44:77d7:5dd> has quit IRC (Client Quit) | 19:08 | |
*** manuel1985 <manuel1985!~manuel198@2a02:1748:dd5c:f290:1973:4823:d0a6:d227> has quit IRC (Remote host closed the connection) | 19:30 | |
*** manuel1985 <manuel1985!~manuel198@2a02:1748:dd5c:f290:84db:d6a1:a0be:9d57> has joined #yocto | 19:31 | |
*** Guest10 <Guest10!~Guest10@89.205.130.155> has joined #yocto | 19:32 | |
*** Guest10 <Guest10!~Guest10@89.205.130.155> has quit IRC (Client Quit) | 19:33 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds) | 19:54 | |
*** goliath <goliath!~goliath@user/goliath> has quit IRC (Quit: SIGSEGV) | 19:58 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 19:58 | |
*** amitk_ <amitk_!~amit@103.208.69.54> has joined #yocto | 20:17 | |
*** amitk <amitk!~amit@103.59.74.21> has quit IRC (Ping timeout: 264 seconds) | 20:20 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds) | 20:32 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 20:35 | |
*** goliath <goliath!~goliath@user/goliath> has joined #yocto | 20:35 | |
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has quit IRC (Quit: ZZZzzz…) | 20:37 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 264 seconds) | 21:03 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 21:07 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has joined #yocto | 21:13 | |
*** eloi1 <eloi1!~eloi@2a01cb089000af0066e10f1f946ec5ec.ipv6.abo.wanadoo.fr> has quit IRC (Ping timeout: 250 seconds) | 21:22 | |
*** adrian__ <adrian__!~F_Adrian@62.32.0.69> has quit IRC (Ping timeout: 268 seconds) | 21:26 | |
*** zenstoic <zenstoic!uid461840@hampstead.irccloud.com> has quit IRC (Quit: Connection closed for inactivity) | 21:29 | |
*** xmn <xmn!~xmn@cpe-72-225-198-203.nyc.res.rr.com> has joined #yocto | 21:35 | |
*** chep <chep!~chep@88.168.197.200> has quit IRC (Ping timeout: 256 seconds) | 21:39 | |
*** chep <chep!~chep@88.168.197.200> has joined #yocto | 21:43 | |
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has joined #yocto | 22:30 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has quit IRC (Ping timeout: 260 seconds) | 22:45 | |
*** jmiehe <jmiehe!~Thunderbi@user/jmiehe> has quit IRC (Quit: jmiehe) | 22:50 | |
*** troth <troth!~troth@c-24-8-35-226.hsd1.co.comcast.net> has joined #yocto | 23:00 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!