Re: [yocto] Storing Sstate in S3 success stories?

2019-02-25 Thread Chuck Wolber
Have you done any wireshark analysis on the traffic? My guess is that the round trip with network latency is bumping your build time by a factor of at least 100x. The state-cache is hammered on continuously, so have probably introduced a significant bottleneck. ..Ch:W.. On Mon, Feb 25, 2019 at

[yocto] Storing Sstate in S3 success stories?

2019-02-25 Thread Timothy Froehlich
I've been spending a bit too long this past week trying to build up a reproducable build infrastructure in AWS and I've got very little experience with cloud infrastucture and I'm wondering if I'm going in the wrong direction. I'm attempting to host my sstate_cache as a mirror in a private S3

[linux-yocto] [PATCH 2/3] qemuriscv64: Enable graphics support

2019-02-25 Thread Alistair Francis
Signed-off-by: Alistair Francis --- bsp/qemuriscv64/qemuriscv64.scc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/qemuriscv64/qemuriscv64.scc b/bsp/qemuriscv64/qemuriscv64.scc index 527a2878..8694a3b3 100644 --- a/bsp/qemuriscv64/qemuriscv64.scc +++ b/bsp/qemuriscv64/qemuriscv64.scc

[linux-yocto] [PATCH 3/3] qemursicv32: Enable graphics support

2019-02-25 Thread Alistair Francis
Signed-off-by: Alistair Francis --- bsp/qemuriscv32/qemuriscv32.scc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsp/qemuriscv32/qemuriscv32.scc b/bsp/qemuriscv32/qemuriscv32.scc index e2548274..0b125dfd 100644 --- a/bsp/qemuriscv32/qemuriscv32.scc +++ b/bsp/qemuriscv32/qemuriscv32.scc

[linux-yocto] [PATCH 1/3] features: Add the drm-bochs feature

2019-02-25 Thread Alistair Francis
Signed-off-by: Alistair Francis --- features/drm-bochs/drm-bochs.cfg | 44 features/drm-bochs/drm-bochs.scc | 1 + 2 files changed, 45 insertions(+) create mode 100644 features/drm-bochs/drm-bochs.cfg create mode 100644 features/drm-bochs/drm-bochs.scc diff

[yocto] [meta-java] Illegal instruction (core dumped) when compiling jaxp1.3-native-1.4.01-r0

2019-02-25 Thread Belisko Marek
Hi, I'm using meta-java sumo branch and on ubuntu 18.04 I have this issue (building for beaglebone-yocto machine): ERROR: jaxp1.3-native-1.4.01-r0 do_compile: Function failed: do_compile (log file is located at

Re: [yocto] Review request 0/13: Contribute meta-tensorflow to Yocto

2019-02-25 Thread Stephen Lawrence
> -Original Message- > From: Khem Raj > Sent: 23 February 2019 17:05 > To: Richard Purdie > Cc: Manjukumar Harthikote Matha ; Stephen Lawrence > ; Hongxu Jia ; > mhalst...@linuxfoundation.org; ross.bur...@intel.com; > paul.eggle...@linux.intel.com; yocto@yoctoproject.org; lpd-cdc-core-

[yocto] Yocto Project Unassigned Bugs - Help Needed

2019-02-25 Thread sjolley.yp.pm
All, The triage team meets weekly and does its best to handle the bugs reported into the Bugzilla. The number of people attending that meeting has fallen, as have the number of people available to help fix bugs. One of the things we hear users report is they don't know how to help. We (the

[linux-yocto] v4.18.x - stable updates comprising v4.18.28

2019-02-25 Thread Paul Gortmaker
Bruce, Yocto kernel folks: Here is the next 4.18.x stable update "extension" primarily created for the Yocto project, continuing from the previous v4.18.27 release. There are about 140 commits here, based on commits chosen from what were used in the existing 4.19.19 --> 4.19.20 stable releases.

[yocto] [psplash][PATCH 1/3] add recovered bar.png

2019-02-25 Thread Stefan Agner
From: Stefan Agner While the source files for the main splash image is present in the source folder base-image, the progress bar isn't. This patch adds the bar.png recovered from the RLE data in the bar header file. The tool make-image-header.sh allows to translate this png back the the header

[yocto] [psplash][PATCH 2/3] use /run for communication FIFO

2019-02-25 Thread Stefan Agner
From: Stefan Agner Use /run for communication FIFO which is typically preserved between initramfs and regular root file system. Introduce a new environment variable PSPLASH_FIFO_DIR which allows to pass /tmp for the old behavior or another directory. Signed-off-by: Stefan Agner ---

[yocto] [psplash][PATCH 3/3] process consecutive commands

2019-02-25 Thread Stefan Agner
From: Stefan Agner Process consecutive commands separated by null-termations. Since it is a FIFO, in theory, two commands can be queued from two independent calls to psplash-write. This also makes the command parser more robust. With this code, sequences like this get parsed just fine: echo -e

Re: [yocto] How to Install Third party rpm packages

2019-02-25 Thread Burton, Ross
On Mon, 25 Feb 2019 at 12:14, chaitanya cherukuri wrote: >> If I understand correctly, you want to me copy what script is doing in >> do_install(). I was thinking to add the script has startup to a YOCTO >> Image, so that I don't need to copy anything manually and let the script to >> its

Re: [yocto] How to Install Third party rpm packages

2019-02-25 Thread chaitanya cherukuri
On Mon, Feb 25, 2019 at 5:09 AM Burton, Ross wrote: > On Mon, 25 Feb 2019 at 00:45, chaitanya cherukuri > wrote: > > Thank you for the clarification. > > In do_install(), I used rpm2cpio.sh to extract the rpm and then copied > the rpm contents in the right place. > > $rpm2cpio.sh *.rpm

Re: [yocto] How to Install Third party rpm packages

2019-02-25 Thread Burton, Ross
On Mon, 25 Feb 2019 at 00:45, chaitanya cherukuri wrote: > Thank you for the clarification. > In do_install(), I used rpm2cpio.sh to extract the rpm and then copied the > rpm contents in the right place. > $rpm2cpio.sh *.rpm | cpio -idmv > I hope this is the right way to handle RPM