*** bboozzoo_ <bboozzoo_!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has joined #yocto | 00:10 | |
*** paulg <paulg!~paul@24-246-6-178.cable.teksavvy.com> has joined #yocto | 00:13 | |
*** RP <RP!~richard@86.188.165.219> has quit IRC | 00:17 | |
*** bboozzoo <bboozzoo!~Maciej_Bo@staticline-31-182-60-238.toya.net.pl> has quit IRC | 00:17 | |
*** RP <RP!~richard@86.188.165.219> has joined #yocto | 00:18 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has quit IRC | 00:19 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:d916:4206:2522:990f> has quit IRC | 00:26 | |
*** prpplague <prpplague!David@nat/intel/x-mhrdxkgtdyhsfzqm> has quit IRC | 00:28 | |
*** alimon1 <alimon1!~alimon@187-176-43-14.dynamic.axtel.net> has joined #yocto | 00:49 | |
*** aehs29 <aehs29!~aehernan@134.134.139.76> has quit IRC | 00:50 | |
*** RP <RP!~richard@86.188.165.219> has quit IRC | 01:03 | |
-YoctoAutoBuilder- build #401 of nightly-arm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/401 | 01:07 | |
*** alimon1 <alimon1!~alimon@187-176-43-14.dynamic.axtel.net> has quit IRC | 01:13 | |
*** darkspike <darkspike!~darkspike@217.110.68.82> has quit IRC | 01:15 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has quit IRC | 01:50 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 02:11 | |
khem` | anyone has set up internal pre-mirrors of public git repos that we use in OE ? | 02:12 |
---|---|---|
kergoth | i keep wanting to do that, but haven't gotten around to it | 02:12 |
kergoth | i'm also curious if anyone has | 02:12 |
khem` | ok | 02:12 |
khem` | I think gerrit wont work | 02:13 |
khem` | since it cant do anonymous git | 02:13 |
khem` | only anonymous http is supported | 02:13 |
khem` | and I think bitbake fetchers default to git protocol | 02:13 |
khem` | if not specified | 02:13 |
khem` | so say if repo is git://git.code.sf.net/p/jamvm/code | 02:15 |
khem` | and I have PRE_MIRRORS set to use PREMIRRORS ?= "\git://.*/.* http://my.mirror.com/pub/ | 02:15 |
khem` | does it look for git://my.mirror.com/pub/code ? | 02:16 |
khem` | or git://my.mirror.com/pub/jamvm/code | 02:16 |
khem` | or git://my.mirror.com/pub/p/jamvm/code | 02:16 |
khem` | secondly will it still expect anon git access or switch to http since my mirror is served over http | 02:17 |
*** paulg <paulg!~paul@24-246-6-178.cable.teksavvy.com> has quit IRC | 02:18 | |
kergoth | i think that might end up trying to use wget to get the git repository | 02:19 |
kergoth | i think you'd need git:// on the right, but somehow get ;protocol=http into it | 02:19 |
kergoth | hmm | 02:19 |
khem` | ok if say it can do anon git protocol is ok too | 02:23 |
khem` | then we dont need protocol= right ? | 02:23 |
khem` | is PRE_MIRRORS a regexp ? | 02:24 |
kergoth | the first .* of the pattern should match the domain, the second the entire path, so afaik git://my.mirror.com/pub/ would make it try to clone git://my.mirror.com/pub/code | 02:24 |
kergoth | keeping the last component | 02:24 |
khem` | how is URU replacement done by fetcher ? | 02:24 |
kergoth | it's actually *multiple* regexes | 02:24 |
kergoth | first the url is separate dinto components | 02:24 |
kergoth | then each component is a regex tha tmatches / replaces the corresponding component on the right hand side | 02:24 |
kergoth | e.g. you can use ^ and $ within a component | 02:24 |
kergoth | i.e. https?$:// | 02:25 |
kergoth | if a component isn't included, it's left alone. so e.g. git://.* git://my.mirror.com would leave the /p/jamvm as the subdir of code | 02:25 |
kergoth | afaik anyway | 02:25 |
khem` | this may cause conflicts | 02:27 |
khem` | since pub/code is very generic | 02:27 |
khem` | so may be just replacing the server url is better | 02:28 |
khem` | and put the mirrors in same subdir as the master repo | 02:28 |
khem` | even that can conflict | 02:28 |
kergoth | we have a PATH magic string which resolves to the path when used on the right side. lperhaps we could add a similar field for the HOST, so you could include the host + path in a subdir of your mirror | 02:29 |
khem` | say another component is git://git.debian.org/p/khemvm/code | 02:29 |
kergoth | e.g. git://my.mirror.com/git.code.sf.net/p/jamvm/code or something | 02:29 |
khem` | yeah that would be ideal | 02:30 |
kergoth | i'd check the _try_premirrors and uri_replace (iirc) functions in bb.fetch(2) to examine the current implementation | 02:30 |
kergoth | khem`: https://github.com/openembedded/bitbake/blob/master/lib/bb/fetch2/__init__.py#L850-L859 | 02:31 |
kergoth | looks like those replacements already exist | 02:31 |
kergoth | so should be doable | 02:31 |
kergoth | looks like MIRRORNAME is for this sort of case, but for a flat layout | 02:32 |
* nerdboy made a new webkit-gtk ebuild for gentoo arm | 02:33 | |
nerdboy | https://github.com/gentoo/arm/tree/master/net-libs/webkit-gtk | 02:33 |
nerdboy | one "config" patch from upstream bug and some of mine (to actual config files? | 02:34 |
nerdboy | s/?/)/ | 02:34 |
nerdboy | enables the Good Stuff for egl/gles2 vs opengl/glx in 2.8.4 | 02:35 |
nerdboy | that version does not build X and wayland support together anymore, so i haven't tested wayland yet | 02:36 |
nerdboy | should work In Theory of course... | 02:37 |
khem` | kergoth: interesting but it seems its only looking for this nomanculature from local dl_dir | 02:39 |
khem` | not when doing a fresh clone as I understand | 02:39 |
nerdboy | needs some cairo adjustments but that should be the only dep that's "different" | 02:39 |
* nerdboy goes back to fixing stuff until dinner | 02:40 | |
khem` | kergoth: so if I have a repo called git.code.sf.net.p.jamvm.code containing a bare clone | 02:40 |
khem` | and put it under http://my.mirror.com/pub/ | 02:40 |
khem` | that wont work out of box I think | 02:40 |
*** dv__ <dv__!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 02:41 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 02:42 | |
*** nemunaire <nemunaire!~nemunaire@2a01:e35:8bb7:3c60:2ca2:67ff:fe35:cd43> has quit IRC | 03:14 | |
*** nemunaire <nemunaire!~nemunaire@2a01:e35:8bb7:3c60:2ca2:67ff:fe35:cd43> has joined #yocto | 03:15 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 03:34 | |
*** miandonmenmian_ <miandonmenmian_!~miandonme@210.22.153.182> has joined #yocto | 03:48 | |
*** miandonmenmian__ <miandonmenmian__!~miandonme@210.22.153.182> has joined #yocto | 03:48 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 04:18 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 04:25 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 04:32 | |
*** T0mW`coding <T0mW`coding!~Tom@70.15.161.110.res-cmts.t132.ptd.net> has quit IRC | 04:39 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 04:44 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 04:51 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 04:52 | |
*** marek__ <marek__!~marek@81.89.61.168.vnet.sk> has joined #yocto | 05:16 | |
*** felipealmeida <felipealmeida!~felipealm@186.205.32.78> has quit IRC | 05:32 | |
*** ambrosius <ambrosius!~textual@c-76-21-79-185.hsd1.ca.comcast.net> has joined #yocto | 05:33 | |
*** RP <RP!~richard@86.188.165.219> has joined #yocto | 05:34 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 05:39 | |
*** felipealmeida <felipealmeida!~felipealm@189-25-70-3.user.veloxzone.com.br> has joined #yocto | 05:40 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 05:40 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 05:52 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 05:52 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 05:53 | |
*** grma <grma!~gruberm@chello213047201250.tirol.surfer.at> has joined #yocto | 06:01 | |
*** zerus <zerus!~epetmab@81-229-90-163-no67.tbcn.telia.com> has joined #yocto | 06:04 | |
*** khem <khem!~khem@unaffiliated/khem> has quit IRC | 06:11 | |
*** ddalex1 <ddalex1!~ddalex@83.217.123.106> has joined #yocto | 06:12 | |
*** khem <khem!~khem@unaffiliated/khem> has joined #yocto | 06:13 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 06:14 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 06:14 | |
*** LukasW <LukasW!c39196a2@gateway/web/freenode/ip.195.145.150.162> has joined #yocto | 06:18 | |
LukasW | Hello together. I have a question about yocto: Iam working on a yocto-linux for a TI OMAP-L138, which is a ARM9+DSP in one package. The Linux is running fine, and does everything i want. I have implemented a kernel driver to start the DSP-Core from the Linux on the ARM9-Core, but now i need to generate the Firmware for the DSP with the Yocto buid system. Main problem is, that i need a compiler from TI to compile the Code for the DSP | 06:22 |
*** ddalex1 <ddalex1!~ddalex@83.217.123.106> has quit IRC | 06:22 | |
*** RP <RP!~richard@86.188.165.219> has quit IRC | 06:23 | |
LukasW | How do i write a recipe to download an place the compiler from TI-Website to my yocto build environment, and NOT to my target? | 06:23 |
LukasW | ... so i can use that compiler in another recipe to generate the firmware for the DSP from my sources? | 06:24 |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 06:25 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 06:25 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has quit IRC | 06:26 | |
*** dlan <dlan!~dennis@gentoo/developer/dlan> has joined #yocto | 06:29 | |
*** wadim_ <wadim_!~egorov@mail.visioncatalog.com> has joined #yocto | 06:30 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has joined #yocto | 06:33 | |
*** Noor <Noor!~quassel@110.93.212.98> has joined #yocto | 06:42 | |
*** dieter_ <dieter_!~quassel@p5795C37F.dip0.t-ipconnect.de> has joined #yocto | 06:50 | |
*** RP <RP!~richard@83.217.123.106> has joined #yocto | 06:52 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-aeacomkkxictnkdu> has joined #yocto | 06:52 | |
*** jbrianceau_away is now known as jbrianceau | 06:53 | |
*** ambrosius <ambrosius!~textual@c-76-21-79-185.hsd1.ca.comcast.net> has quit IRC | 06:55 | |
*** topik <topik!topik@kapsi.fi> has quit IRC | 06:56 | |
*** topik <topik!topik@kapsi.fi> has joined #yocto | 06:56 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto | 06:59 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto | 07:03 | |
Ox4 | hey guys | 07:16 |
Ox4 | how to remove LDFLAGS for the particular package? | 07:17 |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has joined #yocto | 07:29 | |
-YoctoAutoBuilder- build #398 of nightly-qa-pam is complete: Failure [failed BuildImages Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-pam/builds/398 | 07:30 | |
-YoctoAutoBuilder- build #53 of ptest-x86 is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/ptest-x86/builds/53 | 07:30 | |
-YoctoAutoBuilder- build #404 of nightly-ppc is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1 Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/404 | 07:37 | |
-YoctoAutoBuilder- build #403 of nightly-x86 is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1 Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/403 | 07:38 | |
*** btooth <btooth!~daniel@217.110.68.82> has joined #yocto | 07:39 | |
btooth | good morning | 07:41 |
btooth | have a vmdk image.. but this only boots until "EXT3-fs (hda2): mounted filesystem with ordered data mode" .. booting the iso image it | 07:41 |
btooth | will boot further into systemd. do you have any idea? | 07:41 |
*** ftonello <ftonello!~felipe@81.145.202.106> has quit IRC | 07:47 | |
*** ftonello <ftonello!~felipe@81.145.202.106> has joined #yocto | 07:48 | |
-YoctoAutoBuilder- build #392 of nightly-intel-gpl is complete: Failure [failed BuildImages BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-intel-gpl/builds/392 | 07:55 | |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 08:02 | |
*** zerus <zerus!~epetmab@81-229-90-163-no67.tbcn.telia.com> has quit IRC | 08:11 | |
*** sameo <sameo!~samuel@192.55.55.41> has joined #yocto | 08:16 | |
*** belen <belen!Adium@nat/intel/x-etxcdiatujshnang> has joined #yocto | 08:31 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-cirbeudnvbhvjxsm> has joined #yocto | 08:46 | |
*** abelal <abelal!~abelal@110.93.212.98> has joined #yocto | 08:51 | |
abelal | Hi guys | 08:51 |
-YoctoAutoBuilder- build #398 of nightly-qa-skeleton is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-skeleton/builds/398 | 08:52 | |
abelal | the linux kernel development manual suggests that the preempt-rt config inherits from standard | 08:52 |
abelal | i am building for x86_64 | 08:52 |
abelal | but the configuration (.config) i end up with is way too different from the standard branch final .config | 08:53 |
abelal | can anybody please guide me how I can debug the configuration process to root cause the issue | 08:53 |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 08:57 | |
*** dv__ is now known as dv_ | 09:08 | |
*** loggerbo1 <loggerbo1!~todor@134.134.137.75> has quit IRC | 09:09 | |
Ox4 | kergoth: hey | 09:17 |
Ox4 | kergoth: I have responded you on github | 09:17 |
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC | 09:28 | |
-YoctoAutoBuilder- build #394 of nightly-qa-extras is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-extras/builds/394 | 09:29 | |
*** rburton <rburton!~Adium@81.2.106.35> has joined #yocto | 09:36 | |
-YoctoAutoBuilder- build #397 of nightly-qa-logrotate is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-logrotate/builds/397 | 09:42 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 09:42 | |
*** btooth <btooth!~daniel@217.110.68.82> has quit IRC | 09:45 | |
-YoctoAutoBuilder- build #399 of nightly-x32 is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x32/builds/399 | 09:50 | |
Ox4 | also where can I find d.getVar definition? | 09:54 |
*** bboozzoo_ is now known as bboozzoo | 09:55 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 09:57 | |
*** belen <belen!Adium@nat/intel/x-etxcdiatujshnang> has quit IRC | 10:00 | |
*** belen <belen!Adium@nat/intel/x-auwegjvumoittpvi> has joined #yocto | 10:05 | |
*** jku <jku!~jku@d-lltyxzqsj--98wl3k-3.rev.dnainternet.fi> has joined #yocto | 10:07 | |
*** ddalex1 <ddalex1!~ddalex@83.217.123.106> has joined #yocto | 10:11 | |
*** drix <drix!c32a382b@gateway/web/freenode/ip.195.42.56.43> has joined #yocto | 10:14 | |
drix | hi guys | 10:15 |
drix | i've got a issue that i'm not able to get rid off, could someone help me plz ? | 10:15 |
drix | here's the trace: http://paste2.org/WwgB23D1 | 10:15 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 10:18 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 10:18 | |
AzaToth_ | Looking through http://git.yoctoproject.org/cgit/cgit.cgi/yocto-autobuilder/commit/?id=ab0b9dd35d31a59918408558c62d35dd3e649d83 I can't figure out how this commit could add a button | 10:24 |
*** jku <jku!~jku@d-lltyxzqsj--98wl3k-3.rev.dnainternet.fi> has quit IRC | 10:28 | |
-YoctoAutoBuilder- build #398 of nightly-qa-systemd is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1 Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-systemd/builds/398 | 10:28 | |
*** arfoll <arfoll!arfoll@nat/intel/x-ddxbuvknfmoeazhj> has joined #yocto | 10:36 | |
*** ][Sno][ is now known as [Sno] | 10:38 | |
*** belen <belen!Adium@nat/intel/x-auwegjvumoittpvi> has quit IRC | 10:45 | |
*** belen <belen!Adium@nat/intel/x-hfjlvfgkccmbrait> has joined #yocto | 10:45 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 10:49 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 10:49 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has joined #yocto | 10:52 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 10:53 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC | 10:55 | |
*** timsche <timsche!~quassel@port-92-192-58-119.dynamic.qsc.de> has joined #yocto | 10:57 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 10:58 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 10:59 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC | 11:01 | |
*** belen <belen!Adium@nat/intel/x-hfjlvfgkccmbrait> has quit IRC | 11:04 | |
*** belen <belen!Adium@nat/intel/x-ylsjlvlsmeqjfqhv> has joined #yocto | 11:05 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC | 11:14 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto | 11:14 | |
*** nuil <nuil!5f587c85@gateway/web/freenode/ip.95.88.124.133> has joined #yocto | 11:19 | |
nuil | somebody already tried to get a working openjdk-8 working_ | 11:20 |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 11:21 | |
rink_ | get a working X working ... | 11:22 |
nuil | done | 11:22 |
*** root___ <root___!~root@saturn.3bx.de> has joined #yocto | 11:23 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has quit IRC | 11:23 | |
*** sebastian <sebastian!~sebastian@saturn.3bx.de> has joined #yocto | 11:24 | |
*** sebastian is now known as Guest34264 | 11:24 | |
*** diego_ <diego_!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has joined #yocto | 11:24 | |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC | 11:24 | |
*** diego_ is now known as diego_r | 11:24 | |
*** Guest34264 <Guest34264!~sebastian@saturn.3bx.de> has quit IRC | 11:24 | |
*** belen <belen!Adium@nat/intel/x-ylsjlvlsmeqjfqhv> has quit IRC | 11:25 | |
*** belen <belen!Adium@nat/intel/x-puoxuxcusikocpsp> has joined #yocto | 11:25 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:d916:4206:2522:990f> has joined #yocto | 11:31 | |
*** Net147 <Net147!~Net147@unaffiliated/net147> has joined #yocto | 11:31 | |
-YoctoAutoBuilder- build #393 of nightly-ipk is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1 Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ipk/builds/393 | 11:34 | |
*** drix <drix!c32a382b@gateway/web/freenode/ip.195.42.56.43> has quit IRC | 11:35 | |
*** LukasW <LukasW!c39196a2@gateway/web/freenode/ip.195.145.150.162> has left #yocto | 11:38 | |
*** btooth <btooth!~daniel@217.110.68.82> has joined #yocto | 11:38 | |
*** belen <belen!Adium@nat/intel/x-puoxuxcusikocpsp> has quit IRC | 11:38 | |
*** btooth <btooth!~daniel@217.110.68.82> has quit IRC | 11:42 | |
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-amkpigookiaqjwet> has joined #yocto | 11:47 | |
*** davis <davis!~davis@rrcs-96-10-245-18.midsouth.biz.rr.com> has joined #yocto | 11:47 | |
davis | hello | 11:48 |
*** miandonmenmian__ <miandonmenmian__!~miandonme@210.22.153.182> has quit IRC | 11:48 | |
*** miandonmenmian_ <miandonmenmian_!~miandonme@210.22.153.182> has quit IRC | 11:48 | |
davis | ls | 11:49 |
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto | 11:50 | |
davis | I'm new to yocto and beaglebone | 11:54 |
davis | I've downloaded poky and the beaglebone bsp. I've also downloaded the tools and built/run the qemu santos image. | 11:54 |
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC | 11:55 | |
davis | i would like to build the beaglebone image now. Am I supposed to move the beaglebone bsp into the poky dir and replace/supplement the meta dirs there with the beaglebone version? | 11:55 |
raykinsella78 | Its fishy really | 11:56 |
AzaToth_ | Atm i have one recipe building a rootfs, and another recipe making an installable image; and I need to manually build the rootfs recipe before building the iso recipe; I've tried to add the rooffs recipe as a DEPENDS to no avail. Anyone got a clue what I might do wrong? | 11:57 |
AzaToth_ | ±spelling | 11:57 |
*** AzaToth_ <AzaToth_!~AzaToth__@www3.mikrolund.ideon.se> has quit IRC | 11:58 | |
*** AzaToth_ <AzaToth_!~AzaToth__@wikipedia/AzaToth> has joined #yocto | 11:58 | |
*** tsramos <tsramos!tsramos@nat/intel/x-jahqyrndobljmnbu> has joined #yocto | 11:59 | |
-YoctoAutoBuilder- build #60 of nightly-rpm-non-rpm is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-rpm-non-rpm/builds/60 | 12:00 | |
bboozzoo | davis: beaglebone-bsp as in meta-ti? | 12:07 |
-YoctoAutoBuilder- build #387 of nightly-deb is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1 Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-deb/builds/387 | 12:09 | |
davis | bboozzoo: im not sure about meta-ti. I pulled the bsp from git://git.yoctoproject.org/meta-yocto -b daisy as listed https://www.yoctoproject.org/downloads/bsps/daisy16/beaglebone | 12:18 |
kido | hi, I wonder if I can put the same FEATURES in IMAGE_FEATURES and DISTRO_FEATURES or if there is a list of possible FEATURES that can be set on each ? | 12:19 |
bboozzoo | davis: you should be fine with fido or master | 12:20 |
bboozzoo | then just set your MACHINE="beaglebone" in local conf and to the build | 12:20 |
davis | bboozzoo: for the build system, I pulled git clone -b fido git://git.yoctoproject.org/poky.git | 12:21 |
davis | perhaps I should have pulled the third one there which was daisy? | 12:21 |
bboozzoo | davis: all files are already there, you just clone poky, then source oe-init-build-env, set MACHINE="beaglebone" in local.conf and run bitbake core-image-minimal, once that finishes, you can just prep a SD card image with wic (wic create -e core-image-minimal sdimage-bootpart) and skip the fdisk part of the manual | 12:23 |
davis | bboozzoo: sounds good. i'll try that. | 12:24 |
davis | bboozzoo: I apprecaite your help. Thank you! | 12:24 |
davis | btw, can I keep the qemu and the beaglebone simultaneously and swith back and forth as needed without rebuilding everything? | 12:25 |
AzaToth_ | wonder if EXTRA_IMAGEDEPENDS is what I'm looking for... | 12:27 |
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-darlrfmbhmupghrx> has joined #yocto | 12:30 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-cirbeudnvbhvjxsm> has quit IRC | 12:33 | |
-YoctoAutoBuilder- build #61 of nightly-deb-non-deb is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1 Running Sanity Tests_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-deb-non-deb/builds/61 | 12:43 | |
*** belen <belen!Adium@nat/intel/x-aocichjxgqswfqsw> has joined #yocto | 12:56 | |
mcfrisk | does bitbake have timeouts for do_fetch? I have wget stuck on a misbehaving svn repo with -t 2 and -T 360 but the download seems to be stuck somewhere else for more than 10 minutes | 12:58 |
AzaToth_ | so, what might be the best solution if I want to include a rootfs.tar.gz in an other rootfs which is gonna be an iso? | 13:01 |
*** staylor <staylor!~staylor@mail.au-zone.com> has joined #yocto | 13:05 | |
-YoctoAutoBuilder- build #403 of nightly-world is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/403 | 13:06 | |
*** WarheadsSE <WarheadsSE!~WarheadsS@c-174-54-190-115.hsd1.pa.comcast.net> has joined #yocto | 13:10 | |
*** rburton1 <rburton1!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 13:15 | |
WarheadsSE | anmyone recognize this issue? pseudo: uh-oh! '/proc/XXXX/fd/3' seems to be a symlink, but I can't read it. Ignoring. Can't open /proc/XXXX/fd/3: Is a directory | 13:15 |
bluelightning | mcfrisk: wget stuck on an svn repo? wget shouldn't be fetching from svn... | 13:17 |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 13:17 | |
-YoctoAutoBuilder- build #400 of nightly-multilib is complete: Failure [failed Running Sanity Tests Running Sanity Tests_1 Running Sanity Tests_2 Running Sanity Tests_3] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/400 | 13:20 | |
AzaToth_ | i.e. I want to make take foo-${MACHINE}.tar.gz and place it in foo-installer-${MACHINE}.iso etc.. | 13:21 |
mcfrisk | bluelightning: we're using wget to https svn repo to avoid credential crap with svn, .netrc is enough, but timeouts are not working somehow.. | 13:21 |
AzaToth_ | as a separate file | 13:21 |
*** acidfu <acidfu!~nib@24.37.17.210> has quit IRC | 13:22 | |
*** acidfu <acidfu!~nib@unaffiliated/acidmen> has joined #yocto | 13:22 | |
*** abelal <abelal!~abelal@110.93.212.98> has left #yocto | 13:23 | |
*** davis <davis!~davis@rrcs-96-10-245-18.midsouth.biz.rr.com> has quit IRC | 13:23 | |
AzaToth_ | anyone? | 13:25 |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-ekzyvhaymgximaln> has joined #yocto | 13:28 | |
bluelightning | AzaToth_: EXTRA_IMAGEDEPENDS just says that the do_populate_sysroot task for the items listed needs to have been run before the image is built | 13:28 |
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-darlrfmbhmupghrx> has quit IRC | 13:29 | |
bluelightning | I don't think that's really what you want | 13:29 |
*** staylor <staylor!~staylor@mail.au-zone.com> has quit IRC | 13:30 | |
bluelightning | you could try looking at our live image support and maybe do something like what it does | 13:30 |
AzaToth_ | bluelightning, ok | 13:31 |
bluelightning | meta/classes/image-live.bbclass (which uses bootimg.bbclass) | 13:31 |
WarheadsSE | bluelightning: any input on the problem on of my devs is having with all instances of bitbake he is trying to use ? | 13:31 |
bluelightning | WarheadsSE: none I'm afraid, never seen that error before | 13:31 |
*** belen <belen!Adium@nat/intel/x-aocichjxgqswfqsw> has quit IRC | 13:32 | |
*** belen <belen!Adium@nat/intel/x-xkycamjpwawodofe> has joined #yocto | 13:33 | |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC | 13:39 | |
*** jwessel <jwessel!~jwessel@128.224.252.2> has quit IRC | 13:39 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-ekzyvhaymgximaln> has left #yocto | 13:41 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-mbnzocoogbckbcmv> has joined #yocto | 13:43 | |
*** jwessel <jwessel!~jwessel@128.224.252.2> has joined #yocto | 13:51 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 13:56 | |
*** rburton1 <rburton1!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 13:57 | |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has joined #yocto | 14:02 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 14:06 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto | 14:14 | |
*** hugovs <hugovs!~hugo@177.159.144.73> has joined #yocto | 14:26 | |
*** belen <belen!Adium@nat/intel/x-xkycamjpwawodofe> has quit IRC | 14:32 | |
*** belen <belen!Adium@nat/intel/x-eifrnchnjhywfxlv> has joined #yocto | 14:32 | |
-YoctoAutoBuilder- build #394 of nightly-fsl-ppc is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/builds/394 | 14:32 | |
*** nuil <nuil!5f587c85@gateway/web/freenode/ip.95.88.124.133> has quit IRC | 14:32 | |
*** belen <belen!Adium@nat/intel/x-eifrnchnjhywfxlv> has quit IRC | 14:38 | |
*** belen <belen!Adium@nat/intel/x-qqpiyclwirseksat> has joined #yocto | 14:40 | |
*** wadim_ <wadim_!~egorov@mail.visioncatalog.com> has quit IRC | 14:48 | |
*** belen <belen!Adium@nat/intel/x-qqpiyclwirseksat> has quit IRC | 14:49 | |
*** belen <belen!Adium@nat/intel/x-lembqbragksdyeeu> has joined #yocto | 14:49 | |
-YoctoAutoBuilder- build #405 of nightly-mips is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/405 | 14:53 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has quit IRC | 14:55 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 14:56 | |
WarheadsSE | bluelightning: might be hitting an oddity in apparmor all of a sudden. | 14:56 |
WarheadsSE | we're looking into it | 14:56 |
bluelightning | WarheadsSE: it may be worth noting that dora is now nearly two versions out of support | 14:57 |
WarheadsSE | Yes, we know. this last release will be the last we use with dora. | 14:57 |
*** lamego <lamego!~lamego@134.134.137.73> has joined #yocto | 14:58 | |
WarheadsSE | (out the door in about a week), then we're moving all the way up | 14:58 |
-YoctoAutoBuilder- build #54 of ptest-x86 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/ptest-x86/builds/54 | 14:58 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-jeoymdagzldontks> has joined #yocto | 15:07 | |
*** Biliogadafr <Biliogadafr!~User@port-35-adslby-pool45.infonet.by> has quit IRC | 15:08 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-abnmhqtibwwqqgju> has joined #yocto | 15:10 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-bmnjuugfjtoshjci> has joined #yocto | 15:17 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 15:21 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has joined #yocto | 15:22 | |
*** ddalex1 <ddalex1!~ddalex@83.217.123.106> has quit IRC | 15:23 | |
-YoctoAutoBuilder- build #59 of nightly-arm64 is complete: Failure [failed Running Sanity Tests] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/59 | 15:27 | |
rburton | joshuagl: the mesa sed patch on the list from yesterday is for fido, btw | 15:30 |
*** diego_r <diego_r!~diego@host65-246-static.10-188-b.business.telecomitalia.it> has quit IRC | 15:38 | |
-YoctoAutoBuilder- build #403 of nightly-fsl-arm-lsb is complete: Failure [failed BuildImages_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm-lsb/builds/403 | 15:38 | |
*** belen <belen!Adium@nat/intel/x-lembqbragksdyeeu> has quit IRC | 15:41 | |
*** belen <belen!Adium@nat/intel/x-ghvtfnleragfwfkl> has joined #yocto | 15:42 | |
*** freanux <freanux!~freanux@unaffiliated/freanux> has quit IRC | 15:45 | |
*** dfaught <dfaught!~dfaught@cpe-70-119-105-90.tx.res.rr.com> has joined #yocto | 15:49 | |
*** harisokanovic <harisokanovic!~harisokan@130.164.62.243> has quit IRC | 16:00 | |
*** harisokanovic <harisokanovic!~harisokan@130.164.62.243> has joined #yocto | 16:03 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 16:03 | |
joshuagl | rburton: ack, have the mail open on my busy desktop :-) | 16:04 |
*** RP <RP!~richard@83.217.123.106> has quit IRC | 16:06 | |
*** SoylentYellow <SoylentYellow!~SoylentYe@209-234-137-234.static.twtelecom.net> has joined #yocto | 16:07 | |
*** fl0v0 <fl0v0!54af4961@gateway/web/freenode/ip.84.175.73.97> has joined #yocto | 16:12 | |
*** afxez0r <afxez0r!~afxez0r@134.134.139.76> has joined #yocto | 16:17 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 16:24 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC | 16:26 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 16:30 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 16:32 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 16:32 | |
*** dfaught <dfaught!~dfaught@cpe-70-119-105-90.tx.res.rr.com> has quit IRC | 16:32 | |
*** fl0v0 <fl0v0!54af4961@gateway/web/freenode/ip.84.175.73.97> has quit IRC | 16:34 | |
*** jbrianceau is now known as jbrianceau_away | 16:39 | |
*** RP <RP!~richard@83.217.123.106> has joined #yocto | 16:40 | |
*** marek__ <marek__!~marek@81.89.61.168.vnet.sk> has quit IRC | 16:52 | |
*** kspr <kspr!~Kasper@193.104.83.223> has quit IRC | 16:53 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 16:53 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has quit IRC | 16:55 | |
*** [Sno] <[Sno]!~sno@p578b540c.dip0.t-ipconnect.de> has joined #yocto | 16:56 | |
*** sjolley <sjolley!~sjolley@134.134.139.76> has joined #yocto | 16:56 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has joined #yocto | 16:56 | |
*** berton <berton!~fabio@177.220.212.62> has joined #yocto | 16:57 | |
*** tsramos_ <tsramos_!tsramos@nat/intel/x-aapwjtevjdmarwsh> has joined #yocto | 17:00 | |
*** tsramos_ <tsramos_!tsramos@nat/intel/x-aapwjtevjdmarwsh> has quit IRC | 17:00 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has quit IRC | 17:01 | |
*** tsramos_ <tsramos_!~tsramos@192.55.54.36> has joined #yocto | 17:01 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has joined #yocto | 17:02 | |
*** tsramos <tsramos!tsramos@nat/intel/x-jahqyrndobljmnbu> has quit IRC | 17:03 | |
*** RP1 <RP1!~richard@192.198.151.62> has joined #yocto | 17:09 | |
*** RP1 <RP1!~richard@192.198.151.62> has quit IRC | 17:11 | |
*** cference_ <cference_!~cference@64.187.189.2> has joined #yocto | 17:12 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-jeoymdagzldontks> has quit IRC | 17:12 | |
*** RP <RP!~richard@83.217.123.106> has quit IRC | 17:12 | |
*** paulg <paulg!~paulg@72.1.195.9> has joined #yocto | 17:13 | |
*** staylor <staylor!~staylor@184.68.113.94> has joined #yocto | 17:20 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto | 17:25 | |
*** varibull <varibull!~varibull@ta.tainstruments.com> has joined #yocto | 17:26 | |
Crofton|work | zeddii, any idea what this means? | 17:39 |
*** sameo <sameo!~samuel@192.55.55.41> has quit IRC | 17:39 | |
Crofton|work | ERROR. Could not locate meta series for zynq | 17:39 |
Crofton|work | from a kernel do_patch | 17:39 |
zeddii | it means that the BSP description + configuration wasn't found so the series that controls the patch phase wasn't generated. is this with current master ? If I can poke at it, I can be more specific. | 17:41 |
Crofton|work | yeah current master | 17:41 |
-YoctoAutoBuilder- build #393 of nightly-intel-gpl is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-intel-gpl/builds/393 | 17:41 | |
Crofton|work | something similar worked | 17:41 |
Crofton|work | a few days ago | 17:41 |
Crofton|work | I'm looking for stupid typos atm | 17:42 |
zeddii | interesting. nothing should have merged to impact that. My new series I sent could do that .. but it isn;t merged. | 17:42 |
zeddii | Crofton|work, I feel your pain. I built, booted and stress tested qemuarm on 4.1 | 17:42 |
Crofton|work | I'm pretty sure it worked at least :) | 17:42 |
zeddii | and then when I go back to it today .. nothing, boot hang. | 17:42 |
zeddii | and now I can't get it too boot on any kernel, any config. | 17:42 |
Crofton|work | so of course I blame you | 17:43 |
* zeddii is used to it. | 17:43 | |
zeddii | :) | 17:43 |
Crofton|work | the error reporting doesn't help me solve problems | 17:43 |
Crofton|work | while you are here, do al .cfg files need to be called out in an scc file | 17:44 |
zeddii | can you pastebin the layers ? | 17:44 |
Crofton|work | It appears just addingthe cfg file works | 17:44 |
zeddii | Crofton|work. nope. they can just be right on the SRC_URI. or in a .scc file. either works. | 17:44 |
Crofton|work | ok | 17:44 |
* zeddii wonders if gcc 5.1 is his pain source. | 17:45 | |
Crofton|work | heh | 17:47 |
Crofton|work | blame someone else | 17:47 |
zeddii | buy myself some time. smashing my head into my desk isn't helping. | 17:48 |
Crofton|work | let me stash changes and see if old one builds | 17:48 |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 17:50 | |
-YoctoAutoBuilder- build #395 of nightly-qa-extras is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-extras/builds/395 | 17:55 | |
Crofton|work | zeddii, the recipe works, only broke after I tried updating with new patches from the developer | 17:55 |
Crofton|work | you are likely off the hook | 17:56 |
Crofton|work | except for the not so helpful error messages | 17:56 |
Crofton|work | any kind of ordering needed with scc cfg and patch files | 17:56 |
zeddii | agreed. I have some changes there. but I did actually take a note. | 17:56 |
zeddii | Crofton|work, nope. you can mix and match. with obvious patch ordering implications. | 17:57 |
Crofton|work | but a problem there would lead to a patch fail in the log | 17:57 |
zeddii | yep. | 17:57 |
zeddii | there were some missed return codes back in the day .. but they are caught now. | 17:57 |
zeddii | gah. | 17:58 |
zeddii | perf. | 17:58 |
* zeddii dives into a perf failure now. | 17:58 | |
*** WarheadsSE <WarheadsSE!~WarheadsS@c-174-54-190-115.hsd1.pa.comcast.net> has left #yocto | 18:06 | |
*** belen <belen!Adium@nat/intel/x-ghvtfnleragfwfkl> has quit IRC | 18:07 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 18:07 | |
*** belen <belen!Adium@nat/intel/x-abejebhliuhrlygt> has joined #yocto | 18:08 | |
Crofton|work | zeddii, one char error in a file name, between scc and SRC_URI | 18:10 |
zeddii | ok. I can make that same error here, and craft a better debug message. | 18:10 |
*** dholland <dholland!~quassel@vpn.pelagicore.de> has quit IRC | 18:11 | |
Crofton|work | that would be helpful | 18:12 |
Crofton|work | you shoudl certainly be able to dupe it | 18:12 |
*** dholland <dholland!~quassel@vpn.pelagicore.de> has joined #yocto | 18:12 | |
*** psnsilva <psnsilva!~psnsilva@94.60.92.31> has joined #yocto | 18:14 | |
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMbcc81006f6ee.cpe.net.cable.rogers.com> has quit IRC | 18:16 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 18:17 | |
*** Daemon404 <Daemon404!~who_knows@pdpc/supporter/student/Daemon404> has joined #yocto | 18:22 | |
-YoctoAutoBuilder- build #399 of nightly-qa-skeleton is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-skeleton/builds/399 | 18:23 | |
-YoctoAutoBuilder- build #400 of nightly-qa-pam is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-pam/builds/400 | 18:23 | |
*** r22s <r22s!d0b90c36@gateway/web/freenode/ip.208.185.12.54> has joined #yocto | 18:25 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has quit IRC | 18:26 | |
r22s | Hi all, I'm trying to install elasticsearch and am running into a dependency issue. I bet it's a simple fix but haven't found the answer yet. | 18:28 |
r22s | *not install, trying to build an image that includes elasticsearch | 18:28 |
r22s | During do_rootfs, I see the following error: | 18:28 |
r22s | ERROR: Unable to install packages. Command '...' returned 1: | 18:29 |
r22s | error: elasticsearch-1.7.0-r0 requires libc.so.6(GLIBC_2.0) | 18:29 |
r22s | error: elasticsearch-1.7.0-r0 requires libc.so.6(GLIBC_2.1) | 18:29 |
r22s | error: elasticsearch-1.7.0-r0 requires libc.so.6 | 18:29 |
r22s | I'm including glibc 2.20 as part of the build, and the .so.6 symlink is there as well. | 18:30 |
r22s | Any ideas? | 18:30 |
*** pidge <pidge!~pidge@2a02:8084:0:3000:d916:4206:2522:990f> has quit IRC | 18:32 | |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 18:37 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:d916:4206:2522:990f> has joined #yocto | 18:40 | |
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has quit IRC | 18:42 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-aeacomkkxictnkdu> has quit IRC | 18:46 | |
*** berton <berton!~fabio@177.220.212.62> has quit IRC | 18:49 | |
*** berton <berton!~fabio@177.220.212.62> has joined #yocto | 18:50 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 18:56 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 18:57 | |
*** ulf`_ is now known as ulf` | 18:58 | |
-YoctoAutoBuilder- build #398 of nightly-qa-logrotate is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-qa-logrotate/builds/398 | 19:01 | |
*** roric <roric!~roric@157-157-241-105.dsl.dynamic.simnet.is> has joined #yocto | 19:07 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 19:14 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 19:16 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 19:17 | |
*** sjolley1 <sjolley1!~sjolley@134.134.137.73> has joined #yocto | 19:21 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-bmnjuugfjtoshjci> has quit IRC | 19:23 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 19:24 | |
*** sjolley <sjolley!~sjolley@134.134.139.76> has quit IRC | 19:24 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 19:26 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 19:32 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 19:33 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 19:34 | |
*** roric <roric!~roric@157-157-241-105.dsl.dynamic.simnet.is> has quit IRC | 19:38 | |
*** pohly <pohly!~pohly@88.128.80.234> has joined #yocto | 19:39 | |
-YoctoAutoBuilder- build #400 of nightly-x32 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x32/builds/400 | 19:39 | |
*** ambrosius <ambrosius!~textual@38.111.148.194> has joined #yocto | 19:41 | |
khem` | r22s: is elasticsearch precompiled | 19:41 |
*** tlwoerner <tlwoerner!~trevor@unaffiliated/tlwoerner> has joined #yocto | 19:47 | |
*** nighty^ <nighty^!~nighty@static-68-179-124-161.ptr.terago.net> has quit IRC | 19:49 | |
r22s | khem`: It's a few bash scripts that call into java .jars | 19:49 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 19:50 | |
*** nighty^ <nighty^!~nighty@static-68-179-124-161.ptr.terago.net> has joined #yocto | 19:57 | |
*** dvhart <dvhart!~dvhart@134.134.139.76> has quit IRC | 20:02 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 20:04 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-tzxitzzwieaebmfn> has joined #yocto | 20:04 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 20:05 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-tzxitzzwieaebmfn> has quit IRC | 20:09 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-bxeqzkesdqmuoiom> has joined #yocto | 20:10 | |
*** lamego <lamego!~lamego@134.134.137.73> has quit IRC | 20:11 | |
*** paulg <paulg!~paulg@72.1.195.9> has quit IRC | 20:11 | |
*** lexano <lexano!~lexano@CPEa021b7ac59c9-CMbcc81006f6ee.cpe.net.cable.rogers.com> has joined #yocto | 20:11 | |
abelloni | is there some yocto dev day planned before/after elce ? | 20:11 |
*** khem` <khem`!~khem@unaffiliated/khem> has quit IRC | 20:16 | |
*** ddalex1 <ddalex1!~ddalex@0.169.90.146.dyn.plus.net> has joined #yocto | 20:18 | |
*** roric <roric!~roric@157-157-241-105.dsl.dynamic.simnet.is> has joined #yocto | 20:19 | |
*** zerus_ <zerus_!~epetmab@host-95-197-14-162.mobileonline.telia.com> has joined #yocto | 20:21 | |
*** ddalex1 <ddalex1!~ddalex@0.169.90.146.dyn.plus.net> has quit IRC | 20:23 | |
*** lamego <lamego!~lamego@134.134.139.74> has joined #yocto | 20:27 | |
acidfu | abelloni, what is elce | 20:27 |
acidfu | ? | 20:28 |
abelloni | embedded linux conference europe | 20:31 |
*** lamego <lamego!~lamego@134.134.139.74> has quit IRC | 20:31 | |
acidfu | ah ;) | 20:31 |
*** jimBaxter <jimBaxter!~jbaxter@jimbax.plus.com> has quit IRC | 20:31 | |
-YoctoAutoBuilder- build #394 of nightly-ipk is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ipk/builds/394 | 20:31 | |
*** lamego <lamego!~lamego@134.134.137.73> has joined #yocto | 20:35 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC | 20:38 | |
-YoctoAutoBuilder- build #62 of nightly-deb-non-deb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-deb-non-deb/builds/62 | 20:42 | |
*** roric <roric!~roric@157-157-241-105.dsl.dynamic.simnet.is> has quit IRC | 20:43 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 20:43 | |
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CMbcc810032faf.cpe.net.cable.rogers.com> has quit IRC | 20:49 | |
*** cference_ <cference_!~cference@64.187.189.2> has quit IRC | 20:52 | |
*** pohly <pohly!~pohly@88.128.80.234> has quit IRC | 20:57 | |
-YoctoAutoBuilder- build #61 of nightly-rpm-non-rpm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-rpm-non-rpm/builds/61 | 20:57 | |
*** zeddii_home <zeddii_home!~zeddii_ho@CPEe8de27b71faa-CMbcc810032faf.cpe.net.cable.rogers.com> has joined #yocto | 20:58 | |
*** lamego <lamego!~lamego@134.134.137.73> has quit IRC | 21:00 | |
*** Crofton|work <Crofton|work!~balister@pool-71-171-10-162.ronkva.east.verizon.net> has quit IRC | 21:04 | |
*** ddalex1 <ddalex1!~ddalex@0.169.90.146.dyn.plus.net> has joined #yocto | 21:07 | |
*** nighty-_ <nighty-_!~nighty@hokuriku.rural-networks.com> has quit IRC | 21:08 | |
*** tsramos_ <tsramos_!~tsramos@192.55.54.36> has quit IRC | 21:15 | |
*** lamego <lamego!lamego@nat/intel/x-zvpplysfnieriegb> has joined #yocto | 21:18 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 21:32 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 21:33 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 21:34 | |
-YoctoAutoBuilder- build #388 of nightly-deb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-deb/builds/388 | 21:35 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 21:35 | |
*** ddalex2 <ddalex2!~ddalex@233.128.113.87.dyn.plus.net> has joined #yocto | 21:36 | |
*** ddalex1 <ddalex1!~ddalex@0.169.90.146.dyn.plus.net> has quit IRC | 21:36 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 21:36 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 21:36 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-bxeqzkesdqmuoiom> has quit IRC | 21:37 | |
*** aehs291 <aehs291!~aehernan@134.134.139.76> has joined #yocto | 21:37 | |
*** zerus_ <zerus_!~epetmab@host-95-197-14-162.mobileonline.telia.com> has quit IRC | 21:38 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 21:42 | |
-YoctoAutoBuilder- build #393 of nightly-rpm is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-rpm/builds/393 | 21:45 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has joined #yocto | 21:47 | |
*** alimon <alimon!alimon@nat/intel/x-gnneymyqpexanntb> has quit IRC | 21:49 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 21:49 | |
*** melio_cc <melio_cc!~melio_cc@static-194-113-26-69.axsne.net> has quit IRC | 21:49 | |
*** belen2 <belen2!~Adium@17.114.2.81.in-addr.arpa> has quit IRC | 21:56 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 22:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 22:01 | |
-YoctoAutoBuilder- build #404 of nightly-x86 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/404 | 22:04 | |
*** berton <berton!~fabio@177.220.212.62> has quit IRC | 22:05 | |
*** berton <berton!~fabio@177.220.212.62> has joined #yocto | 22:05 | |
*** aehs29 <aehs29!~aehernan@134.134.139.72> has joined #yocto | 22:12 | |
*** nickpongratz <nickpongratz!~Adium@12.148.210.9> has left #yocto | 22:13 | |
*** aehs291 <aehs291!~aehernan@134.134.139.76> has quit IRC | 22:14 | |
*** anselmolsm <anselmolsm!anselmolsm@nat/intel/x-amkpigookiaqjwet> has quit IRC | 22:14 | |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has joined #yocto | 22:15 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 22:18 | |
*** paulg <paulg!~paul@24-246-6-178.cable.teksavvy.com> has joined #yocto | 22:23 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has joined #yocto | 22:24 | |
*** alimon <alimon!~alimon@134.134.139.72> has joined #yocto | 22:26 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 22:26 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 22:33 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 22:34 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 22:36 | |
*** aehs29 <aehs29!~aehernan@134.134.139.72> has quit IRC | 22:37 | |
*** aehs29 <aehs29!~aehernan@134.134.139.72> has joined #yocto | 22:38 | |
*** alimon <alimon!~alimon@134.134.139.72> has quit IRC | 22:42 | |
*** alimon <alimon!alimon@nat/intel/x-vctwrmpqwrykufbe> has joined #yocto | 22:42 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-abnmhqtibwwqqgju> has quit IRC | 22:47 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 22:48 | |
-YoctoAutoBuilder- build #60 of nightly-arm64 is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/60 | 22:50 | |
*** loggerbox <loggerbox!todor@nat/intel/x-uevenabrmvqxrxfp> has joined #yocto | 22:54 | |
*** mchehab` <mchehab`!~mchehab@177.18.21.249.dynamic.adsl.gvt.net.br> has joined #yocto | 23:00 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 23:01 | |
*** mchehab <mchehab!~mchehab@179.186.102.232.dynamic.adsl.gvt.net.br> has quit IRC | 23:04 | |
*** mchehab` is now known as mchehab | 23:04 | |
*** staylor <staylor!~staylor@184.68.113.94> has quit IRC | 23:08 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 23:09 | |
*** Crofton|work <Crofton|work!~balister@pool-71-171-10-162.ronkva.east.verizon.net> has joined #yocto | 23:14 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 23:15 | |
*** aehs29 <aehs29!~aehernan@134.134.139.72> has left #yocto | 23:15 | |
*** paulg <paulg!~paul@24-246-6-178.cable.teksavvy.com> has quit IRC | 23:15 | |
-YoctoAutoBuilder- build #404 of nightly-fsl-arm-lsb is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm-lsb/builds/404 | 23:17 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has joined #yocto | 23:17 | |
-YoctoAutoBuilder- build #401 of nightly-multilib is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/401 | 23:18 | |
*** madisox <madisox!~madison@64-71-1-115.static.wiline.com> has quit IRC | 23:19 | |
*** berton <berton!~fabio@177.220.212.62> has quit IRC | 23:21 | |
-YoctoAutoBuilder- build #406 of nightly-mips is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/406 | 23:24 | |
*** sameo <sameo!~samuel@192.55.54.38> has joined #yocto | 23:25 | |
*** lamego <lamego!lamego@nat/intel/x-zvpplysfnieriegb> has quit IRC | 23:28 | |
*** dvhart <dvhart!~dvhart@134.134.139.72> has quit IRC | 23:29 | |
*** ryansturmer <ryansturmer!~textual@cpe-71-70-216-0.nc.res.rr.com> has quit IRC | 23:29 | |
-YoctoAutoBuilder- build #404 of nightly-world is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/404 | 23:35 | |
*** timsche <timsche!~quassel@port-92-192-58-119.dynamic.qsc.de> has quit IRC | 23:37 | |
*** tsramos <tsramos!~tsramos@134.134.139.74> has joined #yocto | 23:38 | |
*** Happycat <Happycat!58a9fd86@gateway/web/freenode/ip.88.169.253.134> has joined #yocto | 23:38 | |
Happycat | Hi ! | 23:38 |
*** Happycat <Happycat!58a9fd86@gateway/web/freenode/ip.88.169.253.134> has quit IRC | 23:42 | |
*** psnsilva <psnsilva!~psnsilva@94.60.92.31> has quit IRC | 23:49 | |
*** tsramos <tsramos!~tsramos@134.134.139.74> has quit IRC | 23:51 | |
-YoctoAutoBuilder- build #401 of nightly-x32 is complete: Failure [failed Running Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x32/builds/401 | 23:51 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!