Re: [OE-core] BitBake changes in the Yocto Project 1.5 cycle

2013-04-23 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Richard Purdie > Sent: den 22 april 2013 16:16 > To: bitbake-devel > Cc: openembedded-core > Subject: [OE-core] BitBake changes in the Yoc

[OE-core] [PATCH 3/4] makedevs: Make the mode number readable in debug messages

2013-05-29 Thread Peter Kjellerstedt
--- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index d58e891..4cfb1d5 100644 --- a/meta/rec

[OE-core] [PATCH 0/4] Fixes for makedevs

2013-05-29 Thread Peter Kjellerstedt
mit efb8a460d2a977dbd481a0650fba8eb637c65bec: package.bbclass: Fix sources contents (2013-05-14 08:52:47 +0300) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/makedevs http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/makedevs Peter Kjellerstedt (4): makedevs: Cre

[OE-core] [PATCH 1/4] makedevs: Create blocks of devices with the correct uid/gid

2013-05-29 Thread Peter Kjellerstedt
When creating a block of devices (i.e., when count > 0), the wrong path was used with the call to chown(), effectively trying to change the owner of some (probably) non-existent file. Thus the created device nodes were always owned by root. --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedev

[OE-core] [PATCH 2/4] makedevs: Correct the device number calculation for blocks of devices

2013-05-29 Thread Peter Kjellerstedt
If the increment > 1 and the start > 0 then the calculation for the minor device number was incorrect. --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/r

[OE-core] [PATCH 4/4] makedevs: Avoid unnecessary timestamp calculation

2013-05-29 Thread Peter Kjellerstedt
--- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index 4cfb1d5..4bb316b 100644 --- a/meta/recipes-devtools/makedevs/

[OE-core] [PATCH v2 2/4] makedevs: Correct the device number calculation for blocks of devices

2013-05-30 Thread Peter Kjellerstedt
If the increment > 1 and the start > 0 then the calculation for the minor device number was incorrect. Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-de

[OE-core] [PATCH v2 4/4] makedevs: Avoid unnecessary timestamp calculation

2013-05-30 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index 4cfb1d5..4bb316b 100644

[OE-core] [PATCH v2 0/4] Fixes for makedevs

2013-05-30 Thread Peter Kjellerstedt
pkj/makedevs Peter Kjellerstedt (4): makedevs: Create blocks of devices with the correct uid/gid makedevs: Correct the device number calculation for blocks of devices makedevs: Make the mode number readable in debug messages makedevs: Avoid unnecessary timestamp calculation .../recipes-devto

[OE-core] [PATCH v2 3/4] makedevs: Make the mode number readable in debug messages

2013-05-30 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index

[OE-core] [PATCH v2 1/4] makedevs: Create blocks of devices with the correct uid/gid

2013-05-30 Thread Peter Kjellerstedt
When creating a block of devices (i.e., when count > 0), the wrong path was used with the call to chown(), effectively trying to change the owner of some (probably) non-existent file. Thus the created device nodes were always owned by root. Signed-off-by: Peter Kjellerstedt --- meta/reci

Re: [OE-core] [PATCH 0/4] Fixes for makedevs

2013-05-30 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > Sent: den 29 maj 2013 23:40 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 0/4] Fixes for makedevs > > On Wed, 2

Re: [OE-core] [PATCH v2 0/4] Fixes for makedevs

2013-05-30 Thread Peter Kjellerstedt
> -Original Message- > From: Bernhard Reutner-Fischer [mailto:rep.dot@gmail.com] > Sent: den 30 maj 2013 11:02 > To: Peter Kjellerstedt; openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH v2 0/4] Fixes for makedevs > > On 30 May 2013 09:19:

[OE-core] [PATCH v3 4/5] makedevs: Avoid unnecessary timestamp calculation

2013-05-30 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index 4cfb1d5..4bb316b 100644

[OE-core] [PATCH v3 5/5] makedevs: Make count actually behave as a count for device blocks

2013-05-30 Thread Peter Kjellerstedt
Previously count actually behaved as end, and did not take start into account. --- meta/files/device_table-minimal.txt | 2 +- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/files/device_tabl

[OE-core] [PATCH v3 3/5] makedevs: Make the mode number readable in debug messages

2013-05-30 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c b/meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c index

[OE-core] [PATCH v3 1/5] makedevs: Create blocks of devices with the correct uid/gid

2013-05-30 Thread Peter Kjellerstedt
When creating a block of devices (i.e., when count > 0), the wrong path was used with the call to chown(), effectively trying to change the owner of some (probably) non-existent file. Thus the created device nodes were always owned by root. Signed-off-by: Peter Kjellerstedt --- meta/reci

[OE-core] [PATCH v3 0/5] Fixes for makedevs

2013-05-30 Thread Peter Kjellerstedt
in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/makedevs http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/makedevs Peter Kjellerstedt (5): makedevs: Create blocks of devices with the correct uid/gid makedevs: Correct the device number calculation for blocks

[OE-core] [PATCH v3 2/5] makedevs: Correct the device number calculation for blocks of devices

2013-05-30 Thread Peter Kjellerstedt
If the increment > 1 and the start > 0 then the calculation for the minor device number was incorrect. Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-de

[OE-core] [PATCH v4 0/5] Fixes for makedevs

2013-05-31 Thread Peter Kjellerstedt
mit efb8a460d2a977dbd481a0650fba8eb637c65bec: package.bbclass: Fix sources contents (2013-05-14 08:52:47 +0300) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/makedevs http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/makedevs Peter Kjellerstedt

[OE-core] [PATCH v4 5/5] makedevs: Make count actually behave as a count for device blocks

2013-05-31 Thread Peter Kjellerstedt
Previously count actually behaved as end, and did not take start into account. Signed-off-by: Peter Kjellerstedt --- meta/files/device_table-minimal.txt | 2 +- meta/recipes-devtools/makedevs/makedevs-1.0.0/makedevs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions

Re: [OE-core] [PATCH v3 5/5] makedevs: Make count actually behave as a count for device blocks

2013-05-31 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > Sent: den 30 maj 2013 21:58 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH v3 5/5] makedevs: Make count actually > behave

[OE-core] [PATCH 2/2] bb-matrix: Make sure local.conf does not interfere

2013-09-06 Thread Peter Kjellerstedt
If any of BB_NUMBER_THREADS, PARALLEL_MAKE or SSTATE_DIR happened to be set in local.conf then the bb-matrix script would not perform as intended. Signed-off-by: Peter Kjellerstedt --- scripts/contrib/bb-perf/bb-matrix.sh | 4 1 file changed, 4 insertions(+) diff --git a/scripts/contrib

[OE-core] [PATCH 0/2] Fixes for bb-matrix

2013-09-06 Thread Peter Kjellerstedt
-matrix_improvements Peter Kjellerstedt (2): bb-matrix: Clean before, rather than after, building bb-matrix: Make sure local.conf does not interfere scripts/contrib/bb-perf/bb-matrix.sh | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) -- 1.8.2.1

[OE-core] [PATCH 1/2] bb-matrix: Clean before, rather than after, building

2013-09-06 Thread Peter Kjellerstedt
This makes sure the the first build starts from a clean state. Otherwise one could have the first build affected by any leftover state from a previous build. This also leaves a working state behind after the final build. Signed-off-by: Peter Kjellerstedt --- scripts/contrib/bb-perf/bb

[OE-core] [PATCH 0/1] Improve bb-matrix graphs

2013-09-10 Thread Peter Kjellerstedt
/cgit.cgi/poky-contrib/log/?h=pkj/bb-matrix-plot Peter Kjellerstedt (1): bb-matrix-plot: Use interpolation for sparse data scripts/contrib/bb-perf/bb-matrix-plot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.8.2.1 ___ Openembedded-core

[OE-core] [PATCH 1/1] bb-matrix-plot: Use interpolation for sparse data

2013-09-10 Thread Peter Kjellerstedt
By using splines to interpolate the missing data the graph looks a lot better. This should not change graphs where all data points are available in any way, only improve sparse graphs. Signed-off-by: Peter Kjellerstedt --- scripts/contrib/bb-perf/bb-matrix-plot.sh | 2 +- 1 file changed, 1 insertion(+),

Re: [OE-core] [PATCH 1/1] bb-matrix-plot: Use interpolation for sparse data

2013-09-11 Thread Peter Kjellerstedt
> -Original Message- > From: Darren Hart [mailto:dvh...@linux.intel.com] > Sent: den 10 september 2013 17:38 > To: Peter Kjellerstedt > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 1/1] bb-matrix-plot: Use interpolation > for sparse data

Re: [OE-core] [PATCH 2/2] bb-matrix: Make sure local.conf does not interfere

2013-09-11 Thread Peter Kjellerstedt
> -Original Message- > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > Sent: den 10 september 2013 17:48 > To: Darren Hart > Cc: Peter Kjellerstedt; openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 2/2] bb-matrix: Make sure loc

[OE-core] Sanitized kernel headers

2013-10-02 Thread Peter Kjellerstedt
In a recent commit (http://cgit.openembedded.org/openembedded-core/commit/?id=c27ac156bcaf3193d52f456480947b0cfaef3c72), Richard added a big warning about not forking the linux-libc-headers recipe to get at specific kernel headers for user space. As a consequence I thought I should remove our

[OE-core] [PATCH 0/1] Add a missing '[' to kernel-yocto.bbclass

2013-10-10 Thread Peter Kjellerstedt
available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/kernel-yocto_typo http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/kernel-yocto_typo Peter Kjellerstedt (1): kernel-yocto: Add a missing '[' meta/classes/kernel-yocto.bbclass | 2 +- 1 f

[OE-core] [PATCH 1/1] kernel-yocto: Add a missing '['

2013-10-10 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- meta/classes/kernel-yocto.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 97a5fa7..8f79932 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta

[OE-core] [PATCH 03/14] pybootchartgui: Set the initial state of "Show more" correctly

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pybootchartgui/pybootchartgui/gui.py b/scripts/pybootchartgui/pybootchartgui/gui.py index 164bdfb..1120701 100644 --- a/scripts/pybootchartgui

[OE-core] [PATCH 04/14] pybootchartgui: Correct the X offset for the chart

2013-11-15 Thread Peter Kjellerstedt
This will make the first bar actually start within the graph. It will also move the graph to the right so the names of the first tasks are more likely to be visible. Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 4 ++-- 1 file changed, 2 insertions(+), 2

[OE-core] [PATCH 10/14] pybootchartgui: Make "Show more" show all processes

2013-11-15 Thread Peter Kjellerstedt
While "Show more" is enabled, all processes are shown, regardless of --mintime. This also has the added benefit of making the first shown bar start at its correct offset from the start time, rather than always starting at 0. Signed-off-by: Peter Kjellerstedt --- scripts/pybo

[OE-core] [PATCH 08/14] pybootchartgui: Disable options that do not make sense

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/main.py.in | 40 +++- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/main.py.in b/scripts/pybootchartgui/pybootchartgui/main.py.in index 265cb18

[OE-core] [PATCH 11/14] pybootchartgui: Make bars without a specified color white

2013-11-15 Thread Peter Kjellerstedt
Previously they were transparent. Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 2aa348b..ea960f9

[OE-core] [PATCH 07/14] pybootchartgui: No need to do a double list comprehension over files

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/parsing.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/parsing.py b/scripts/pybootchartgui/pybootchartgui/parsing.py index c8a6a57..ed61825 100644 --- a

[OE-core] [PATCH 13/14] pybootchartgui: Add a color for the package_write_* tasks

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 8 1 file changed, 8 insertions(+) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 718d95e..2a26160 100644 --- a/scripts

[OE-core] [PATCH 06/14] pybootchartgui: Avoid having overlapping process bars

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index b1ad6e6..6b15d64 100644 --- a/scripts

[OE-core] [PATCH 12/14] pybootchartgui: Reorder the legend to match the task execution order

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index ea960f9..718d95e 100644 --- a

[OE-core] [PATCH 09/14] pybootchartgui: Draw a lot less ticks

2013-11-15 Thread Peter Kjellerstedt
With this, one second ticks are only enabled if the width of a second is five pixels or more. It is also possible to distinguish 1, 5 and 30 second ticks. Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 7 +++ 1 file changed, 7 insertions(+) diff --git

[OE-core] [PATCH 05/14] pybootchartgui: Use correct header height

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 9cbcbc1..b1ad6e6 100644 --- a/scripts

[OE-core] [PATCH 02/14] pybootchartgui: Make the horizontal scaling stay within bounds

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/gui.py b/scripts/pybootchartgui/pybootchartgui/gui.py index ddeb88c..164bdfb 100644 --- a/scripts

[OE-core] [PATCH 14/14] pybootchartgui: Add option --minutes to show time in minutes

2013-11-15 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py| 11 +++ scripts/pybootchartgui/pybootchartgui/main.py.in | 2 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts

[OE-core] [PATCH 00/14] Improvements to pybootchartgui

2013-11-15 Thread Peter Kjellerstedt
11-08 17:31:36 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/pybootchartgui http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/pybootchartgui Peter Kjellerstedt (14): pybootchartgui: Import pybootchartgui 0.14.5 pybootchartgui: Make th

Re: [OE-core] [PATCH 00/14] Improvements to pybootchartgui

2013-11-19 Thread Peter Kjellerstedt
> -Original Message- > From: Burton, Ross [mailto:ross.bur...@intel.com] > Sent: den 16 november 2013 00:25 > To: Peter Kjellerstedt > Cc: OE-core > Subject: Re: [OE-core] [PATCH 00/14] Improvements to pybootchartgui > > Hi, > > On 15 November 2013 17:0

[OE-core] RFC: Maintain backwards compatibility or not for module-base.bbclass

2014-01-16 Thread Peter Kjellerstedt
Background: Back in September, Richard made a commit to linux-libc-headers.inc describing why one should not fork the linux-libc-headers recipe: http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=babbf7a46acaefd9b36031483cafce053f607e66 As a result I created a local bbclass for our layer

Re: [OE-core] RFC: Maintain backwards compatibility or not for module-base.bbclass

2014-01-17 Thread Peter Kjellerstedt
I will aggregate my responses to Koen, Bruce and Phil below. > -Original Message- > From: Koen Kooi [mailto:k...@dominion.thruhere.net] > Sent: den 16 januari 2014 20:19 > To: Peter Kjellerstedt > Cc: OE Core (openembedded-core@lists.openembedded.org); Phil Blundell >

[OE-core] [PATCH 0/5] Fixes for pybootchartgui

2014-01-21 Thread Peter Kjellerstedt
(2014-01-21 10:45:29 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/pybootchartgui2 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/pybootchartgui2 Peter Kjellerstedt (5): pybootchartgui: Make the -s option work again pybootchartgui

[OE-core] [PATCH 5/5] pybootchartgui: Add option -T to allways use the full time

2014-01-21 Thread Peter Kjellerstedt
When --full-time (or -T) is used, the graph allways shows the full time regardless of which processes are currently shown. This is especially useful in combinationm with the -s flag when outputting to multiple files. Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui

[OE-core] [PATCH 4/5] pybootchartgui: Adopt the width of the index in split output files

2014-01-21 Thread Peter Kjellerstedt
Add minimum width zero-padding to the index used in split output files with -s and -o. I.e., if -s 200 is used, then the index will be zero-padded to three digits width. Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/main.py.in | 4 +++- 1 file changed, 3 insertions

[OE-core] [PATCH 3/5] pybootchartgui: Simplify adding processes to the trace

2014-01-21 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/parsing.py | 39 +--- 1 file changed, 14 insertions(+), 25 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/parsing.py b/scripts/pybootchartgui/pybootchartgui/parsing.py index 0600b51

[OE-core] [PATCH 2/5] pybootchartgui: Correct the legend

2014-01-21 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/draw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 299cced..4a2ffd7 100644 --- a/scripts

[OE-core] [PATCH 1/5] pybootchartgui: Make the -s option work again

2014-01-21 Thread Peter Kjellerstedt
[YOCTO #5588] Signed-off-by: Peter Kjellerstedt --- scripts/pybootchartgui/pybootchartgui/parsing.py | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/pybootchartgui/pybootchartgui/parsing.py b/scripts/pybootchartgui/pybootchartgui/parsing.py index daee593

[OE-core] [PATCH 0/3] Fixes for oe-init-build-env

2013-04-05 Thread Peter Kjellerstedt
://git.yoctoproject.org/poky-contrib pkj/oe-init-build-env http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/oe-init-build-env Peter Kjellerstedt (3): oe-setup-builddir: Allow $OECORENOTESCONF to not exist oe-buildenv-internal: Only add to $PATH if needed oe-init-build-env: Make it use the

[OE-core] [PATCH 1/3] oe-setup-builddir: Allow $OECORENOTESCONF to not exist

2013-04-05 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- scripts/oe-setup-builddir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index 76e1778..d5d8d98 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir @@ -118,5 +118,5

[OE-core] [PATCH 3/3] oe-init-build-env: Make it use the correct $OEROOT with zsh

2013-04-05 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- oe-init-build-env | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oe-init-build-env b/oe-init-build-env index 67eddcd..68af7b5 100755 --- a/oe-init-build-env +++ b/oe-init-build-env @@ -30,6 +30,8 @@ if [ -z "$ZSH_NAME" ] && [ "x

[OE-core] [PATCH 2/3] oe-buildenv-internal: Only add to $PATH if needed

2013-04-05 Thread Peter Kjellerstedt
If $PATH already has the needed paths at the beginning, there is no need to add them again. This allows rerunning oe-init-build-env for the same directory without having $PATH increase unnecessarily every time. Signed-off-by: Peter Kjellerstedt --- scripts/oe-buildenv-internal | 5 +++-- 1 file

Re: [OE-core] [PATCH 2/3] oe-buildenv-internal: Only add to $PATH if needed

2013-04-09 Thread Peter Kjellerstedt
lf Of Chris Larson Sent: den 9 april 2013 00:40 To: Paul Eggleton Cc: Trevor Woerner; Peter Kjellerstedt; Patches and discussions about the oe-core layer Subject: Re: [OE-core] [PATCH 2/3] oe-buildenv-internal: Only add to $PATH if needed On Mon, Apr 8, 2013 at 10:48 AM, Paul Eggleton mailto

[OE-core] [PATCH 0/1] Do not grow PATH unnecessarily in oe-buildenv-internal

2013-04-09 Thread Peter Kjellerstedt
-buildenv-internal Peter Kjellerstedt (1): oe-buildenv-internal: Only add to $PATH if needed scripts/oe-buildenv-internal | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) -- 1.7.11.7 ___ Openembedded-core mailing list Openembedded-core

[OE-core] [PATCH 1/1] oe-buildenv-internal: Only add to $PATH if needed

2013-04-09 Thread Peter Kjellerstedt
run. Signed-off-by: Peter Kjellerstedt --- scripts/oe-buildenv-internal | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal index 0a4d324..644df8f 100755 --- a/scripts/oe-buildenv-internal +++ b/scripts/oe-buildenv

[OE-core] Using users/groups from another recipe than the one creating them

2014-05-19 Thread Peter Kjellerstedt
Which assumption is correct: "a recipe A that depends on another recipe B can use users/groups that B creates" or "all recipes must create the users/groups they require themselves"? The problem for us is that we have a lot of recipes that create users and groups, and subsequently a number of ot

Re: [OE-core] Using users/groups from another recipe than the one creating them

2014-05-23 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Peter Kjellerstedt > Sent: den 19 maj 2014 10:15 > To: OE Core (openembedded-core@lists.openembedded.org) > Sub

Re: [OE-core] Using users/groups from another recipe than the one creating them

2014-06-09 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Peter Kjellerstedt > Sent: den 23 maj 2014 12:38 > To: OE Core (openembedded-core@lists.openembedded.org) > Subject

Re: [OE-core] Using users/groups from another recipe than the one creating them

2014-06-09 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Mark Hatle > Sent: den 9 juni 2014 16:47 > To: Peter Kjellerstedt; OE Core (openembedded- > c...@lists.openembedd

Re: [OE-core] Using users/groups from another recipe than the one creating them

2014-06-10 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Mark Hatle > Sent: den 9 juni 2014 19:03 > To: Peter Kjellerstedt; OE Core (openembedded- > c...@lists.openembedd

[OE-core] [PATCH 1/1] libgcrypt: Do not remove m4 files so aggressively

2014-08-13 Thread Peter Kjellerstedt
Removing all m4 files in the m4 directory led to a number of non-fatal errors while running configure when the expected m4 macros could not be found. Signed-off-by: Peter Kjellerstedt --- meta/recipes-support/libgcrypt/libgcrypt.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[OE-core] [PATCH 0/2] Avoid build-deps QA warnings

2014-08-13 Thread Peter Kjellerstedt
at: git://git.yoctoproject.org/poky-contrib pkj/build-deps http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/build-deps Peter Kjellerstedt (2): gdb: Add a dependency on zlib gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev meta/recipes-devtools/gdb/gdb-

[OE-core] [PATCH 3/3] glib-networking: Inherit gettext

2014-08-13 Thread Peter Kjellerstedt
Build fails otherwise if USE_NLS is set to "no". Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/glib-networking/glib-networking_2.38.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/glib-networking/glib-networking_2.38.0.bb b/meta/re

[OE-core] [PATCH 1/3] systemd: Inherit gettext

2014-08-13 Thread Peter Kjellerstedt
Build fails otherwise if USE_NLS is set to "no". Signed-off-by: Peter Kjellerstedt --- meta/recipes-core/systemd/systemd_213.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd_213.bb b/meta/recipes-core/systemd/systemd_213.bb ind

[OE-core] [PATCH 2/3] libsoup-2.4: Inherit gettext

2014-08-13 Thread Peter Kjellerstedt
Build fails otherwise if USE_NLS is set to "no". Signed-off-by: Peter Kjellerstedt --- meta/recipes-support/libsoup/libsoup-2.4_2.46.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.46.0.bb b/meta/recipes-suppo

[OE-core] [PATCH 1/2] gdb: Add a dependency on zlib

2014-08-13 Thread Peter Kjellerstedt
This solves the following warning: WARNING: QA Issue: gdb rdepends on zlib, but it isn't a build dependency? [build-deps] Signed-off-by: Peter Kjellerstedt --- meta/recipes-devtools/gdb/gdb-common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtool

[OE-core] [PATCH 0/1] Allow libgcrypt to configure again

2014-08-13 Thread Peter Kjellerstedt
essentials. (2014-08-12 13:50:32 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/libgcrypt http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/libgcrypt Peter Kjellerstedt (1): libgcrypt: Do not remove m4 files so aggressively me

[OE-core] [PATCH 1/1] python-scons-native: Make it useable if old host install exists

2014-08-13 Thread Peter Kjellerstedt
searching through standard paths. If it finds an old installation it prepends that path to sys.path thereby causing it to ignore the PYTHONPATH. The solution is to instead set SCONS_LIB_PATH which works both if scons is not installed and if an older version is installed. Signed-off-by: Peter

[OE-core] [PATCH 0/3] Fixes for building with USE_NLS=no

2014-08-13 Thread Peter Kjellerstedt
ackage to essentials. (2014-08-12 13:50:32 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/use_nls_no http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/use_nls_no Peter Kjellerstedt (3): systemd: Inherit gettext libsoup-2.4: In

[OE-core] [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev

2014-08-13 Thread Peter Kjellerstedt
build-deps] Signed-off-by: Peter Kjellerstedt --- meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc b/meta/recipes-multimedia/gstreamer/gstreamer1

[OE-core] [PATCH 0/1] Fix for running scons with old host installation present

2014-08-13 Thread Peter Kjellerstedt
ble in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/scons http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/scons Peter Kjellerstedt (1): python-scons-native: Make it useable if old host install exists meta/recipes-devtools/python/python-scons-native_2.3.2.bb

[OE-core] [PATCH 0/1] Update gstreamer1.0-rtsp-server to 1.4.0

2014-08-13 Thread Peter Kjellerstedt
essentials. (2014-08-12 13:50:32 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/gstreamer1.0-rtsp-server http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/gstreamer1.0-rtsp-server Peter Kjellerstedt (1): gstreamer1.0-rtsp-server: Upgrad

[OE-core] [PATCH 1/1] gstreamer1.0-rtsp-server: Upgrade to 1.4.0

2014-08-13 Thread Peter Kjellerstedt
Signed-off-by: Peter Kjellerstedt --- ...r1.0-rtsp-server_1.2.3.bb => gstreamer1.0-rtsp-server_1.4.0.bb} | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-rtsp-server_1.2.3.bb => gstreamer1.0-rtsp-server_1.4.0.bb} (43%)

[OE-core] [PATCH 1/2] lib/oe/utils: Make multiprocess_exec() return anything

2014-08-28 Thread Peter Kjellerstedt
The variable "results" was accidentally used for multiple different things at the same time, which unintentionally discarded anything that was supposed to be returned from the function... Signed-off-by: Peter Kjellerstedt --- meta/lib/oe/utils.py | 4 ++-- 1 file changed, 2 insert

[OE-core] [PATCH 2/2] package: Correct two typos in a comment

2014-08-28 Thread Peter Kjellerstedt
This quite coincidentally invalidates the sstate for do_package which is needed due to the correction of oe.utils.multiprocess_exec(). Signed-off-by: Peter Kjellerstedt --- meta/classes/package.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/classes

[OE-core] [PATCH 0/2] Serious regression in multiprocess_exec()

2014-08-28 Thread Peter Kjellerstedt
12:13:38 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/multiprocess_exec http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/multiprocess_exec Peter Kjellerstedt (2): lib/oe/utils: Make multiprocess_exec() return anything package

[OE-core] [PATCH 0/1] Fix for "useradd --root"

2014-09-12 Thread Peter Kjellerstedt
: classes/populate_sdk_base: enable adding custom commands to SDK install script (2014-09-11 18:02:55 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib pkj/shadow http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/shadow Peter Kjellerstedt (1

[OE-core] [PATCH 1/1] shadow: Make useradd work correctly with --root again

2014-09-12 Thread Peter Kjellerstedt
Even if useradd --root is used it would still read login.defs before doing the chroot() and thus use the one provided by the host rather than the sysroot. Signed-off-by: Peter Kjellerstedt --- ...o-not-read-login.defs-before-doing-chroot.patch | 46 ++ meta/recipes-extended

[OE-core] Why is systemd installed to / (was: [yocto] Export bitbake variables between recipes)

2014-12-02 Thread Peter Kjellerstedt
[ I am moving this discussion to the OE-core list as I believe that is where it belongs. ] > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto- > boun...@yoctoproject.org] On Behalf Of Paul Eggleton > Sent: den 2 december 2014 15:07 > To: Fabrice Coulon > Cc: yo...

Re: [OE-core] Why is systemd installed to / (was: [yocto] Export bitbake variables between recipes)

2014-12-03 Thread Peter Kjellerstedt
-core] Why is systemd installed to / (was: [yocto] > Export bitbake variables between recipes) > > On 12/2/14, 12:27 PM, Peter Kjellerstedt wrote: > > [ I am moving this discussion to the OE-core list as I believe > >that is where it belongs. ] > > > >> -Origin

Re: [OE-core] Why is systemd installed to / (was: [yocto] Export bitbake variables between recipes)

2014-12-04 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Mark Hatle > Sent: den 3 december 2014 16:47 > To: Peter Kjellerstedt; openembedded-core@lists.openembedded.org >

Re: [OE-core] Why is systemd installed to / (was: [yocto] Export bitbake variables between recipes)

2014-12-08 Thread Peter Kjellerstedt
is systemd installed to / (was: [yocto] > Export bitbake variables between recipes) > > On 12/04/2014 09:34 PM, Peter Kjellerstedt wrote: > >> -Original Message- > >> From: openembedded-core-boun...@lists.openembedded.org > >> [mailto:openembedded-core

Re: [OE-core] [PATCH 2/3] systemd: replace the sysusers.d basic configuration

2023-07-25 Thread Peter Kjellerstedt
> -Original Message- > From: Louis Rannou > Sent: den 29 juni 2023 15:04 > To: Peter Kjellerstedt ; openembedded- > c...@lists.openembedded.org > Cc: anuj.mit...@intel.com > Subject: Re: [OE-core] [PATCH 2/3] systemd: replace the sysusers.d basic > configuration &g

Re: [OE-Core][PATCH v2 1/3] rootfs: Add debugfs package db file copy and cleanup

2023-08-07 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Alex Kiernan > Sent: den 20 juli 2023 12:20 > To: openembedded-core@lists.openembedded.org > Cc: Alex Kiernan > Subject: [OE-Core][PATCH v2 1/3] rootfs: Add debugfs package db file copy and > cleanup >

Re: [OE-core] [PATHCH V3 2/4] classes-recipe: add cargo_c.bbclass

2023-08-15 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Frederic Martinsons > Sent: den 15 augusti 2023 17:36 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATHCH V3 2/4] classes-recipe: add cargo_c.bbclass > > From: Frederic Martinsons

[OE-core] [PATCH] bin_package.bbclass: Inhibit the default dependencies

2023-08-18 Thread Peter Kjellerstedt
Nothing is being built so there is no need for the cross-compiler. Signed-off-by: Peter Kjellerstedt --- meta/classes-recipe/bin_package.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes-recipe/bin_package.bbclass b/meta/classes-recipe/bin_package.bbclass index

[OE-core] [PATCH] insane.bbclass: Remove an unused variable

2023-08-23 Thread Peter Kjellerstedt
The use of coremeta_path was removed with commit 61a881fdbe (insane: Improve patch-status layer filtering) when the patch-status QA test was generalized. Signed-off-by: Peter Kjellerstedt --- meta/classes-global/insane.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes

Re: [OE-core] [PATCH v8 3/8] image-combined-dbg: make this the default

2023-11-20 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Adrian Freihofer > Sent: den 15 november 2023 23:33 > To: Christopher Larson > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH v8 3/8] image-combine

[OE-core] [PATCH] oeqa/selftest/tinfoil: Add tests that parse virtual recipes

2023-11-20 Thread Peter Kjellerstedt
tests that exercise these code paths through parseRecipeFile(). Signed-off-by: Peter Kjellerstedt --- meta/lib/oeqa/selftest/cases/tinfoil.py | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/tinfoil.py b/meta/lib/oeqa

Re: [OE-core] [PATCH 02/21] create-spdx-2.2.bbclass: use hardlink as well

2023-11-22 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Martin Jansa > Sent: den 22 november 2023 13:45 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] [PATCH 02/21] create-spdx-2.2.bbclass: use hardlink as well T

Re: [OE-core] [kirkstone][PATCH 2/4] base-passwd: Add PW_SUBDIR

2023-11-26 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Joakim Tjernlund via > lists.openembedded.org > Sent: den 24 november 2023 15:11 > To: openembedded-core@lists.openembedded.org > Cc: Joakim Tjernlund > Subject: [OE-core] [kirkstone][PATCH 2/4] base-pa

Re: [OE-core] [kirkstone][PATCH 3/4] pseudo: Add PW_SUBDIR

2023-11-26 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Joakim Tjernlund via > lists.openembedded.org > Sent: den 24 november 2023 15:11 > To: openembedded-core@lists.openembedded.org > Cc: Joakim Tjernlund > Subject: [OE-core] [kirkstone][PATCH 3/4] pseudo:

Re: [OE-core] [kirkstone][PATCH 4/4] shadow: Add PW_SUBDIR

2023-11-26 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org > On Behalf Of Joakim Tjernlund via > lists.openembedded.org > Sent: den 24 november 2023 15:11 > To: openembedded-core@lists.openembedded.org > Cc: Joakim Tjernlund > Subject: [OE-core] [kirkstone][PATCH 4/4] shadow:

  1   2   3   4   5   6   7   8   9   10   >