Re: [OE-core] [PATCHv2 2/2] insane.bbclass: Add a check for directories that are expected to be empty

2021-10-28 Thread Martyn Welch
On Thu, 2021-10-28 at 09:22 +0100, Martyn Welch wrote: > On Wed, 2021-10-27 at 20:05 +0200, Peter Kjellerstedt wrote: > > The empty-dirs QA check verifies that all directories specified in > > QA_EMPTY_DIRS are empty. It is possible to specify why a directory is > > ex

Re: [OE-core] [PATCHv2 2/2] insane.bbclass: Add a check for directories that are expected to be empty

2021-10-28 Thread Martyn Welch
On Wed, 2021-10-27 at 20:05 +0200, Peter Kjellerstedt wrote: > The empty-dirs QA check verifies that all directories specified in > QA_EMPTY_DIRS are empty. It is possible to specify why a directory is > expected to be empty by defining QA_EMPTY_DIRS_RECOMMENDATION:, > which will then be included i

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-27 Thread Martyn Welch
On Wed, 2021-10-27 at 16:43 +, Peter Kjellerstedt wrote: > > -Original Message- > > From: Martyn Welch > > Sent: den 26 oktober 2021 17:32 > > To: Peter Kjellerstedt ; Konrad > > Weihmann > > ; OE-core > c...@lists.openembedded.org> >

Re: [OE-core] [PATCH 1/2] systemd: Do not install anything in /var/log

2021-10-27 Thread Martyn Welch
On Wed, 2021-10-27 at 18:37 +0200, Peter Kjellerstedt wrote: > /var/log is typically a symbolic link to inside /var/volatile, which > is expected to be empty. > > Signed-off-by: Peter Kjellerstedt > --- >  meta/recipes-core/systemd/systemd_249.5.bb | 11 --- >  1 file changed, 4 insertions

Re: [OE-core] [PATCH V2] archiver: Configurable tarball compression

2021-10-27 Thread Martyn Welch
> > So, here the claim that zstd (with default options) is almost as good as > xz in compressed size is not confirmed. However, zstd is a clear winner > in terms of compression speed, and anyway better than gzip. This is > worth switching. > That claim doesn't seem to be confirmed with any of th

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
On Tue, 2021-10-26 at 14:59 +, Peter Kjellerstedt wrote: > > -Original Message- > > From: openembedded-core@lists.openembedded.org  > c...@lists.openembedded.org> On Behalf Of Konrad Weihmann > > Sent: den 26 oktober 2021 13:24 > > To: M

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
On Tue, 2021-10-26 at 13:01 +0200, Alexander Kanavin wrote: > On Tue, 26 Oct 2021 at 12:56, Konrad Weihmann > wrote: > > > Suggested-by: Alexander Kanavin > > > > > > That can't be true - or the initial idea is very very old :-) pls > > use > > Alex's gmail instead > > I don't remember anythin

Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
Note to self - remember to reply to list... Forwarded Message From: Martyn Welch To: Konrad Weihmann Subject: Re: [OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable Date: Tue, 26 Oct 2021 12:12:11 +0100 On Tue, 2021-10-26 at 12:56 +0200

[OE-core] [PATCH v6 1/2] image.bbclass: add prohibited-paths QA test

2021-10-26 Thread Martyn Welch
by: Fabien Lahoudere Signed-off-by: Martyn Welch --- This patch series was submitted many years ago (2017!!!), but did not at the time get applied. Finally submitting again. Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package lev

[OE-core] [PATCH v6 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2021-10-26 Thread Martyn Welch
From: Martyn Welch Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin Signed-off-by: Martyn Welch --- Changes since v3

Re: [OE-core] [PATCH v5 1/2] image.bbclass: add prohibited-paths QA test

2017-12-18 Thread Martyn Welch
This doesn't seem to be applied yet. Is there something else that is needed? Martyn On Mon, 2017-11-27 at 19:28 +0000, Martyn Welch wrote: > Sometimes we wish to ensure that files or directories are not installed > somewhere that may prove detrimental to the operation of the

[OE-core] [PATCH v5 1/2] image.bbclass: add prohibited-paths QA test

2017-11-27 Thread Martyn Welch
by: Fabien Lahoudere Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package level QA test. - Changed variable from PROHIBITED_PATH to PROHIBITED_PATHS to better reflect its use. Changes since v3: - Renam

[OE-core] [PATCH v5 2/2] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2017-11-27 Thread Martyn Welch
Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin Signed-off-by: Martyn Welch --- Changes since v3: - This patch added

Re: [OE-core] [yocto] [PATCH v4 1/3] image.bbclass: add prohibited-paths QA test

2017-11-17 Thread Martyn Welch
lass seemed like a reasonable place to put the image QA test. If the consensus is that it should be in insane.bbclass, I'm more than happy to move it though. > > On Thu, 16 Nov 2017 15:05:56 + > Martyn Welch wrote: > > > Sometimes we wish to ensure that files or dire

Re: [OE-core] [PATCH v4 1/3] image.bbclass: add prohibited-paths QA test

2017-11-17 Thread Martyn Welch
On Thu, 2017-11-16 at 15:58 -0200, Otavio Salvador wrote: > On Thu, Nov 16, 2017 at 1:05 PM, Martyn Welch > wrote: > > Sometimes we wish to ensure that files or directories are not installed > > somewhere that may prove detrimental to the operation of the system. For > >

[OE-core] [PATCH v4 3/3] ref-manual: Add documentation for prohibited-path QA test

2017-11-16 Thread Martyn Welch
Add documentation for the IMAGE_QA_PROHIBITED_PATHS variable and associated prohibited-path QA test Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package level QA test, altering documentation to suit

[OE-core] [PATCH v4 1/3] image.bbclass: add prohibited-paths QA test

2017-11-16 Thread Martyn Welch
by: Fabien Lahoudere Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package level QA test. - Changed variable from PROHIBITED_PATH to PROHIBITED_PATHS to better reflect its use. Changes since v3: - Renam

[OE-core] [PATCH v4 2/3] core-image.bbclass: add default IMAGE_QA_PROHIBIT_PATHS variable

2017-11-16 Thread Martyn Welch
Add a default IMAGE_QA_PROHIBIT_PATHS variable containing paths known to be mounted in the default fstab, which are known mount points or directories which should be populated at runtime. Suggested-by: Alexander Kanavin Signed-off-by: Martyn Welch --- Changes since v3: - This patch added

Re: [OE-core] [PATCH v3 1/2] image.bbclass: add prohibited-paths QA test

2017-11-16 Thread Martyn Welch
On Wed, 2017-11-15 at 18:46 -0200, Otavio Salvador wrote: > On Wed, Nov 15, 2017 at 1:10 PM, Martyn Welch > wrote: > > Sometimes we wish to ensure that files or directories are not installed > > somewhere that may prove detrimental to the operation of the system. For > >

Re: [OE-core] [PATCH v3 1/2] image.bbclass: add prohibited-paths QA test

2017-11-16 Thread Martyn Welch
On Wed, 2017-11-15 at 18:46 -0200, Otavio Salvador wrote: > On Wed, Nov 15, 2017 at 1:10 PM, Martyn Welch > wrote: > > Sometimes we wish to ensure that files or directories are not installed > > somewhere that may prove detrimental to the operation of the system. For > >

[OE-core] [PATCH v3 2/2] ref-manual: Add documentation for prohibited-path QA test

2017-11-15 Thread Martyn Welch
Add documentation for the PROHIBITED_PATHS variable and associated prohibited-path QA test Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package level QA test, altering documentation to suit. - Changed

[OE-core] [PATCH v3 1/2] image.bbclass: add prohibited-paths QA test

2017-11-15 Thread Martyn Welch
Lahoudere Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. Changes since v2: - Reimplemented as image rather than package level QA test. - Changed variable from PROHIBITED_PATH to PROHIBITED_PATHS to better reflect its use. meta/classes/image.bb

[OE-core] [PATCH v2 2/2] ref-manual: Add documentation for prohibited-path QA test

2017-11-13 Thread Martyn Welch
Add documentation for the prohibited-path QA test and associated PROHIBITED_PATH variable. Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. documentation/ref-manual/ref-classes.xml | 5 + documentation/ref-manual/ref-variables.xml | 25

[OE-core] [PATCH v2 1/2] package.bbclass: add prohibited-path qa test

2017-11-13 Thread Martyn Welch
ould a match be found, or in the case of a wildcard, for any files added below the specificed location(s). Signed-off-by: Fabien Lahoudere Signed-off-by: Martyn Welch --- Changes since v1: - Correcting author and SOB. meta/classes/insane.bbclass | 2 +- meta/classes/package.bbclass | 11 +

[OE-core] [PATCH][jethro] glew: Correct version in autotooling patches

2016-04-27 Thread Martyn Welch
tes the version number used in the patches to match that of the version being built. Signed-off-by: Martyn Welch --- meta/recipes-graphics/glew/glew/autotools.patch | 4 ++-- meta/recipes-graphics/glew/glew/fix-glew.pc-install.patch | 2 +- 2 files changed, 3 insertions(+), 3 deleti

Re: [OE-core] Wiki seems dead. is openembedded wiki still active?

2011-08-24 Thread Martyn Welch
ase see this page: > > http://wiki.openembedded.org/index.php/OpenEmbedded-Core > The link to the Layer Index is broken on that page. I'd correct it, but that page is locked down to be only editable by admin. -- Martyn Welch (Principal Software Engineer) | Registered in Engla

Re: [OE-core] [PATCH 2/7] shadow: add a -native recipe with customized utilities

2011-06-01 Thread Martyn Welch
--root ${STAGING_DIR_TARGET} ... > > ? > You'd need root privileges to use chroot wouldn't you? I'm assuming you wouldn't with the existing. Martyn -- Martyn Welch (Principal Software Engineer) | Registered in England and GE Intelligent Platforms