Re: [yocto] help with meta-java

2019-11-05 Thread Richard Leitner
zeus compatible yet. I'm trying to contact layer maintainers for several weeks, i don't know if information is obsolete or if people are too busy/away? Main layer maintainers: Henning Heinold Maxin John Otavio Salvador Richard Leitner For now, I just use master-next, and

Re: [yocto] [meta-java][PATCH 3/3] openjdk-8: use ca-certificates-java

2018-06-15 Thread Richard Leitner
Hi, this commit of yours breaks the build on meta-java's current mater-next branch (when building an image containing openjre-8 or openjdk-8) with following message: ERROR: openjre-8-test-image-1.0-r0 do_rootfs: [log_check] openjre-8-test-image: found 1 error message in the logfile: [log_check] E

Re: [yocto] multiple, different kernel images in one rootfs

2017-03-29 Thread Richard Leitner
On 03/28/2017 08:17 PM, Khem Raj wrote: > On 3/28/17 2:53 AM, Richard Leitner wrote: >> Hi, >> I'm currently using Jethro and like to include multiple, different >> kernel (fit)images (with different source branches/versions) in one >> RootFS. When booting such

[yocto] multiple, different kernel images in one rootfs

2017-03-28 Thread Richard Leitner
Hi, I'm currently using Jethro and like to include multiple, different kernel (fit)images (with different source branches/versions) in one RootFS. When booting such a system the bootloader (U-Boot) will decide which kernel to load. I've already done some searches on the Internet, but found only Bu

Re: [yocto] suggestions for version controlling multi-layer reproducible builds?

2016-12-12 Thread Richard Leitner
Hi, On 12/12/2016 05:03 PM, Bryan Evenson wrote: > > For my setup I have a separate package that is the distribution > version number. Whenever we release an update, the distribution > version number is updated. We then tag all our layers with the > distribution version number for proper record

Re: [yocto] [psplash][PATCH] psplash: add option to read startup message from file

2016-08-18 Thread Richard Leitner
Any comments/news on that patch from APRIL? On 04/15/2016 10:49 AM, Richard Leitner wrote: > This patch adds an option to read the displayed message from a file. > Additionally the maximum length for the read string can be defined. > If both, a message (STARTUP_MSG) and a file (STARTUP

Re: [yocto] Mounting USB drives on a "read-only-rootfs" based system

2016-06-13 Thread Richard Leitner
Hi, you can adjust the mount behaviour for example in your udev mount script (if you use udev). If you have a fixed name/mountpoint for your media you can pre-create that folder (for example /media/data-logging) and let udev's mount.sh mount media which matches your criteria to that path. kind re

Re: [yocto] [psplash][PATCH] Add fbdev option to set the proper /dev/fbX.

2016-05-31 Thread Richard Leitner
Hi Julien, On 05/30/2016 11:55 PM, Julien Gueytat wrote: > > For FBDEV, I have been told on #yocto that the FBENV variable is kind of > useless at least for the startup as the environment is not read yet. > This why I replaced it. But I will let it available in the next patch if > this is what sh

Re: [yocto] [psplash][PATCH] psplash: add option to read startup message from file

2016-05-25 Thread Richard Leitner
Any comments/updates on that patch of mine? On 04/15/2016 10:49 AM, Richard Leitner wrote: > This patch adds an option to read the displayed message from a file. > Additionally the maximum length for the read string can be defined. > If both, a message (STARTUP_MSG) and a file (STARTUP

Re: [yocto] [psplash][PATCH] Add fbdev option to set the proper /dev/fbX.

2016-05-25 Thread Richard Leitner
Hi Julien, comments on the code are below. On 05/22/2016 07:46 PM, Julien Gueytat wrote: > It works exactly the same way than the angle parameter: > * --angle <-> /etc/rotation file > * --fbdev <-> /etc/fbdev file > > Signed-off-by: Julien Gueytat > --- > psplash-fb.c | 16 ++-- >

Re: [yocto] [psplash][PATCH] psplash: add option to read startup message from file

2016-04-22 Thread Richard Leitner
Hi, are any comments or possible improvements? On 04/15/2016 10:49 AM, Richard Leitner wrote: > This patch adds an option to read the displayed message from a file. > Additionally the maximum length for the read string can be defined. > If both, a message (STARTUP_MSG) and a file (STARTUP

[yocto] [psplash][PATCH] psplash: add option to read startup message from file

2016-04-15 Thread Richard Leitner
after the given maximum number of chars. For these changes the following defines were introduced: PSPLASH_STARTUP_MSG_MAX_LEN ... maximum lenght of the complete message PSPLASH_STARTUP_MSG_FILE .. path to the file to read Signed-off-by: Richard Leitner --- psplash-config.h | 5

[yocto] [psplash][PATCH 3/5] psplash-fb: remove unused parameter from psplash_fb_text_size

2016-04-14 Thread Richard Leitner
This fixes following unused-parameter warning: psplash-fb.c: In function 'psplash_fb_text_size': psplash-fb.c:464:43: warning: unused parameter 'fb' [-Wunused-parameter] Signed-off-by: Richard Leitner --- psplash-fb.c | 3 +-- psplash-fb.h | 3 +-- psplash.c| 2 +-

[yocto] [psplash][PATCH 4/5] psplash: remove unused parameter length from parse_command

2016-04-14 Thread Richard Leitner
This fixes following unused-parameter warning: psplash.c: In function 'parse_command': psplash.c:105:49: warning: unused parameter 'length' [-Wunused-parameter] Signed-off-by: Richard Leitner --- psplash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff

[yocto] [psplash][PATCH 5/5] psplash: fix remaining unused-parameter warnings

2016-04-14 Thread Richard Leitner
psplash.c:36:19: warning: unused parameter 'signum' [-Wunused-parameter] psplash-console.c: In function 'vt_request': psplash-console.c:27:17: warning: unused parameter 'sig' [-Wunused-parameter] Signed-off-by: Richard Leitner --- psplash-console.c | 2 +- psplash.c

[yocto] [psplash][PATCH 1/5] configure: add -Wextra GCC flag

2016-04-14 Thread Richard Leitner
Enable extra warnings when using GCC. Signed-off-by: Richard Leitner --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bf00e91..1c4d919 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_PROG_CC AC_STDC_HEADERS

[yocto] [psplash][PATCH 0/5] fix -Wextra GCC warnings

2016-04-14 Thread Richard Leitner
This series adds the -Wextra GCC flag and fixes the found warnings. Richard Leitner (5): configure: add -Wextra GCC flag psplash-fb: fix sign-compare warning psplash-fb: remove unused parameter from psplash_fb_text_size psplash: remove unused parameter length from parse_command psplash

[yocto] [psplash][PATCH 2/5] psplash-fb: fix sign-compare warning

2016-04-14 Thread Richard Leitner
Cast font->index[i] to wchar_t for the comparison. This fixes following sign-compare warning: psplash-fb.c: In function 'psplash_font_glyph': psplash-fb.c:452:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] Signed-off-by: Richard Leitner

Re: [yocto] [psplash][PATCH 3/3] README: add "Contributing" guideline

2016-04-14 Thread Richard Leitner
Hi Philip, On 04/13/2016 09:42 PM, Philip Balister wrote: >> + >> > +Contributing >> > + >> > +To contribute to this layer you should submit the patches for review to >> > the >> > +mailing list (yocto@yoctoproject.org). >> > + >> > +Please refer to >> > +http://openembedded.org/w

[yocto] [psplash][PATCH 2/3] add initial .gitignore

2016-04-13 Thread Richard Leitner
This initial version of .gitignore contains all files created during a build. Signed-off-by: Richard Leitner --- .gitignore | 20 1 file changed, 20 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000

[yocto] [psplash][PATCH 3/3] README: add "Contributing" guideline

2016-04-13 Thread Richard Leitner
The "Contributing" guideline section should help people sending their patches correctly. A similar section is available in nearly all layers/repositories hosted on yoctoproject.org. Therefore add it also the the psplash repository. Signed-off-by: Richard Leitner --- R

[yocto] [psplash][PATCH 1/3] AUTHORS: add list of git commit authors

2016-04-13 Thread Richard Leitner
Added an initial AUTHORS list in alphabetical order, created with following commandline: git log --format='%aN <%aE>' | sort -u Signed-off-by: Richard Leitner --- AUTHORS | 13 + 1 file changed, 13 insertions(+) diff --git a/AUTHORS b/AUTHORS index e69de29

Re: [yocto] Building own kernel instead of taking from git

2014-09-08 Thread Richard Leitner
Hi, On Mon, 8 Sep 2014 09:51:28 +0530 jags gediya wrote: > I want to build my kernel source code in yocto. For that i have > modified the required linux-imx.inc file. > > Inside that i have given kernel source directory in SRC_URI and S variable. > > Is this approach fine, or is there any bett

Re: [yocto] Force recipe to provide specific file

2014-08-27 Thread Richard Leitner
On Fri, 22 Aug 2014 11:07:41 +0200 Anders Darander wrote: > > > What happens for example if do_install_append is already defined in the > > recipe? > > > No issue at all. The do_install_append's will just be appended one after > each other. Thanks you for this info! Maybe it would be a goo

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hi, On Tue, 12 Aug 2014 15:04:46 +0200 Nicolas Dechesne wrote: > On Tue, Aug 12, 2014 at 2:58 PM, Richard Leitner > wrote: > > > > I've also tried the following in my ghostscript bbappend, but it does not > > work. Shouldn't [1] work this way? > > >

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hi, thanks for your answer! On Tue, 12 Aug 2014 08:27:46 -0400 "Robert P. J. Day" wrote: > On Tue, 12 Aug 2014, Richard Leitner wrote: > > > > > WARNING: The recipe ghostscript is trying to install files into a shared > > area > > when those files alrea

[yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hello folks, is there a possibility to force a recipe to provide a specific file? My problem is that my own recipe is providing a file which is already provided by another recipe. I don't want to change that other recipe and the rootfs should include both package but only the specified file from m

[yocto] missing udev permissions.rules in daisy

2014-07-16 Thread Richard Leitner
Hi folks, I've currently ran into following problem when updating my image from 1.4 to 1.6.1: Most files under /dev (especially tty's and USB devices) have invalid permissions (crw--- 1 root root 4, 65 Jan 1 1970 /dev/ttyS1). I figured out that the /etc/udev/rules.d/permissions.rules is mi

Re: [yocto] How to install .deb file in Yocto on Intel Galileo

2014-07-14 Thread Richard Leitner
Hi, do you want to install the .deb package during the bitbake build or in the running system? During the bitbake build you can use something like the following in your image recipe. install_my_deb() { ${STAGING_BINDIR_NATIVE

[yocto] [PATCH] bitbake: fetch/git: fix head refs in git ls-remote call

2014-07-07 Thread Richard Leitner
Use the branch in refs/head instead of the tag. This allows a given tag name to differ from the branch name. Signed-off-by: Richard Leitner --- bitbake/lib/bb/fetch2/git.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb

[yocto] Fetcher failure for git repository using tag name in SRCREV

2014-07-07 Thread Richard Leitner
Hi folks, I've ran into a problem using tag names in SRCREV for git repositories after migrating from 1.4 to 1.6.1 "daisy". Before (1.4) the following worked fine: SRCREV = "v${PV}" SRC_URI = "git://github.com/rleitner/psplash.git;protocol=https" When using 1.6.1 the following er

[yocto] nscd: missing configuration and initscript

2014-07-01 Thread Richard Leitner
Hello folks, currently I'm trying to add nscd to my image. This works quite fine using IMAGE_INSTALL += "nscd". The problem is that the nscd package lacks a configuration and a initscript. I've searched through the recipes and the web but I can't find any hints on it. Is there a way to add a "co

Re: [yocto] Errors with update-rc.d: /etc/init.d/XXX exists during rc.d purge (use -f to force)

2014-06-13 Thread Richard Leitner - SKIDATA
postrm function in my own meta-layer with some kind of bbclassappend? regards, Richard > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] > On > Behalf Of Richard Leitner - SKIDATA > Sent: Thursday, November 28, 2013 3:02

Re: [yocto] Binary {deb,rpm} package install without repackaging

2014-04-29 Thread Richard Leitner - SKIDATA
p://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#var-ROOTFS_POSTPROCESS_COMMAND > From: Gaurang Shastri [mailto:gmshas...@gmail.com] > Sent: Monday, April 28, 2014 11:45 AM > To: Richard Leitner - SKIDATA > Subject: Re: [yocto] Binary {deb,rpm} package install witho

[yocto] Binary {deb,rpm} package install without repackaging

2014-04-28 Thread Richard Leitner - SKIDATA
Hi everybody, I've got a question regarding the binary deb/rpm packages in yocto. Is there any possibility to install a binary deb/rpm package in the rootfs build without repackaging it? Naively I'm for example thinking of an option in the image recipe like: ADDITIONAL_PACKAGES += "/path/to/packa

Re: [yocto] Problem with own kernel recipe on Dora

2014-04-22 Thread Richard Leitner - SKIDATA
> -Original Message- > From: Nicolas Dechesne [mailto:nicolas.deche...@linaro.org] > Sent: Tuesday, April 22, 2014 1:35 PM > To: Richard Leitner - SKIDATA > Cc: Yocto Project Discussion ML (yocto@yoctoproject.org) > Subject: Re: [yocto] Problem with own kernel recipe o

Re: [yocto] Problem with own kernel recipe on Dora

2014-04-22 Thread Richard Leitner - SKIDATA
Hi Richard, thanks for your quick response. > -Original Message- > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > Sent: Tuesday, April 22, 2014 10:23 AM > To: Richard Leitner - SKIDATA > Cc: Yocto Project Discussion ML (yocto@yoctoproject.org) > S

[yocto] Problem with own kernel recipe on Dora

2014-04-22 Thread Richard Leitner - SKIDATA
Hi Yocto-Community, as the subject already says I've a problem with my kernel recipe after the "migration" from the Dylan to the Dora (10.0.1) branch. I've tried the 10.0.1 release tag as well as the current dora master (50e9ccb2aff7b9f9dca4fda99a6832c60f64de3b). The kernel recipe I'm using is d

Re: [yocto] SRCREV for BBLAYERS

2014-02-03 Thread Richard Leitner - SKIDATA
hould this request go? To the bitbake-devel list? best regards, Richard > -Original Message- > From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] > Sent: Monday, February 03, 2014 3:46 PM > To: Richard Leitner - SKIDATA > Cc: yocto@yoctoproject.org > Subject: Re:

[yocto] SRCREV for BBLAYERS

2014-02-03 Thread Richard Leitner - SKIDATA
Hi, I've a question regarding the BBLAYERS variable. Is it possible to set some kind of a SRCREV (=> git tag/branch/commit-id) for a path listed in BBLAYERS? I came to this question because I've two different branches in my meta layer: one for development and one for 'stable' releases. Therefore

Re: [yocto] Errors with update-rc.d: /etc/init.d/XXX exists during rc.d purge (use -f to force)

2013-11-28 Thread Richard Leitner - SKIDATA
to solve this problem? regards, Richard > -Original Message- > From: Stath, Paul [mailto:pst...@axxcelera.com] > Sent: Wednesday, November 27, 2013 5:40 PM > To: Richard Leitner - SKIDATA > Cc: Yocto Project Discussion ML (yocto@yoctoproject.org) > Subject: RE: Err

Re: [yocto] Errors with update-rc.d: /etc/init.d/XXX exists during rc.d purge (use -f to force)

2013-11-27 Thread Richard Leitner - SKIDATA
is is a really dirty workaround, but it's the only "solution" I found. Have you discovered any other workarounds, Paul? regards Richard >-Original Message- >From: Stath, Paul [mailto:pst...@axxcelera.com] >Sent: Wednesday, November 27, 2013 4:49 PM >To: Richard Lei

Re: [yocto] [psplash][PATCH] Add option to read message from file

2013-10-22 Thread Richard Leitner - SKIDATA
plied :-) Thanks and best regards, Richard Leitner > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] > On > Behalf Of Richard Leitner - SKIDATA > Sent: Tuesday, October 01, 2013 2:51 PM > To: Yocto Project Discussion ML

Re: [yocto] [psplash][PATCH] Add option to read message from file

2013-10-01 Thread Richard Leitner - SKIDATA
Hi everybody, I recently sent a patch for psplash to add the ability to read the displayed message from a file. I'd appreciate any comments on it! Thanks and best regards, Richard Leitner > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yocto

[yocto] [psplash][PATCH] Add option to read message from file

2013-10-01 Thread Richard Leitner - SKIDATA
: Richard Leitner --- psplash.c | 41 - 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/psplash.c b/psplash.c index 09cf0d0..093a99a 100644 --- a/psplash.c +++ b/psplash.c @@ -23,6 +23,20 @@ #include "psplash-bar-img.h" #include &quo

[yocto] Errors with update-rc.d: /etc/init.d/XXX exists during rc.d purge (use -f to force)

2013-09-10 Thread Richard Leitner - SKIDATA
Hi, I have problems with the update-rc.d class in my recipes. When I want to update a package which inherits update-rc.d (in my case samba) using dpkg -i I get the following error: >root@host:~# dpkg -i /media/USBSTICK/samba-ads_3.5.22-r4_armel.deb >(Reading database ... 11931 files and director