All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption
@ 2019-12-19 22:17 Alex Kiernan
  2019-12-19 22:17 ` [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated Alex Kiernan
  2020-01-09  2:30 ` [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
  0 siblings, 2 replies; 12+ messages in thread
From: Alex Kiernan @ 2019-12-19 22:17 UTC (permalink / raw)
  To: openembedded-core

When running mandb we end up with files owned by the build user, correct
this. Also pick up non-default locales and relocate their index.db files
to /var/cache.

Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
---

 meta/classes/manpages.bbclass | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/meta/classes/manpages.bbclass b/meta/classes/manpages.bbclass
index 50c254763e89..1e66780646ea 100644
--- a/meta/classes/manpages.bbclass
+++ b/meta/classes/manpages.bbclass
@@ -18,8 +18,15 @@ pkg_postinst_append_${MAN_PKG} () {
 		if test -n "$D"; then
 			if ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'true','false', d)}; then
 				sed "s:\(\s\)/:\1$D/:g" $D${sysconfdir}/man_db.conf | ${@qemu_run_binary(d, '$D', '${bindir}/mandb')} -C - -u -q $D${mandir}
+				chown -R root:root $D${mandir}
 				mkdir -p $D${localstatedir}/cache/man
-				mv $D${mandir}/index.db $D${localstatedir}/cache/man
+				cd $D${mandir}
+				find . -name index.db | while read index; do
+					mkdir -p $D${localstatedir}/cache/man/$(dirname ${index})
+					mv ${index} $D${localstatedir}/cache/man/${index}
+					chown man:man $D${localstatedir}/cache/man/${index}
+				done
+				cd -
 			else
 				$INTERCEPT_DIR/postinst_intercept delay_to_first_boot ${PKG} mlprefix=${MLPREFIX}
 			fi
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2019-12-19 22:17 [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
@ 2019-12-19 22:17 ` Alex Kiernan
  2020-01-02 23:20   ` Ross Burton
  2020-01-09  2:30 ` [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
  1 sibling, 1 reply; 12+ messages in thread
From: Alex Kiernan @ 2019-12-19 22:17 UTC (permalink / raw)
  To: openembedded-core

Enable rootfs_check_host_user_contaminated by default

Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
---

 meta/classes/rootfs-postcommands.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index 2f171836fa0c..2c0f16cebd4c 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -37,7 +37,7 @@ POSTINST_LOGFILE ?= "${localstatedir}/log/postinstall.log"
 SYSTEMD_DEFAULT_TARGET ?= '${@bb.utils.contains("IMAGE_FEATURES", "x11-base", "graphical.target", "multi-user.target", d)}'
 ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd", "set_systemd_default_target; systemd_create_users;", "", d)}'
 
-ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
+ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile; rootfs_check_host_user_contaminated;'
 
 # Sort the user and group entries in /etc by ID in order to make the content
 # deterministic. Package installs are not deterministic, causing the ordering
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2019-12-19 22:17 ` [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated Alex Kiernan
@ 2020-01-02 23:20   ` Ross Burton
  2020-05-21 14:14     ` [OE-core] [OE-Core][PATCH " Alex Kiernan
       [not found]     ` <161110ADA6F0224D.21901@lists.openembedded.org>
  0 siblings, 2 replies; 12+ messages in thread
From: Ross Burton @ 2020-01-02 23:20 UTC (permalink / raw)
  To: Alex Kiernan, openembedded-core

On 19/12/2019 22:17, Alex Kiernan wrote:
> Enable rootfs_check_host_user_contaminated by default

Useful check!

WARNING: Paths in the rootfs are owned by the same user or group as the 
user running bitbake. See the logfile for the specific paths.
 
/data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/.uuid
 
/data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid

(patch incoming)

Ross


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption
  2019-12-19 22:17 [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
  2019-12-19 22:17 ` [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated Alex Kiernan
@ 2020-01-09  2:30 ` Alex Kiernan
  2020-01-09 13:36   ` Ross Burton
  1 sibling, 1 reply; 12+ messages in thread
From: Alex Kiernan @ 2020-01-09  2:30 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Thu, Dec 19, 2019 at 10:17 PM Alex Kiernan <alex.kiernan@gmail.com> wrote:
>
> When running mandb we end up with files owned by the build user, correct
> this. Also pick up non-default locales and relocate their index.db files
> to /var/cache.
>
> Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
> ---

Ping?

>
>  meta/classes/manpages.bbclass | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/meta/classes/manpages.bbclass b/meta/classes/manpages.bbclass
> index 50c254763e89..1e66780646ea 100644
> --- a/meta/classes/manpages.bbclass
> +++ b/meta/classes/manpages.bbclass
> @@ -18,8 +18,15 @@ pkg_postinst_append_${MAN_PKG} () {
>                 if test -n "$D"; then
>                         if ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'true','false', d)}; then
>                                 sed "s:\(\s\)/:\1$D/:g" $D${sysconfdir}/man_db.conf | ${@qemu_run_binary(d, '$D', '${bindir}/mandb')} -C - -u -q $D${mandir}
> +                               chown -R root:root $D${mandir}
>                                 mkdir -p $D${localstatedir}/cache/man
> -                               mv $D${mandir}/index.db $D${localstatedir}/cache/man
> +                               cd $D${mandir}
> +                               find . -name index.db | while read index; do
> +                                       mkdir -p $D${localstatedir}/cache/man/$(dirname ${index})
> +                                       mv ${index} $D${localstatedir}/cache/man/${index}
> +                                       chown man:man $D${localstatedir}/cache/man/${index}
> +                               done
> +                               cd -
>                         else
>                                 $INTERCEPT_DIR/postinst_intercept delay_to_first_boot ${PKG} mlprefix=${MLPREFIX}
>                         fi
> --
> 2.17.1
>


-- 
Alex Kiernan


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption
  2020-01-09  2:30 ` [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
@ 2020-01-09 13:36   ` Ross Burton
  2020-01-09 14:43     ` Alex Kiernan
  0 siblings, 1 reply; 12+ messages in thread
From: Ross Burton @ 2020-01-09 13:36 UTC (permalink / raw)
  To: openembedded-core

On 09/01/2020 02:30, Alex Kiernan wrote:
> On Thu, Dec 19, 2019 at 10:17 PM Alex Kiernan <alex.kiernan@gmail.com> wrote:
>>
>> When running mandb we end up with files owned by the build user, correct
>> this. Also pick up non-default locales and relocate their index.db files
>> to /var/cache.
>>
>> Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
>> ---
> 
> Ping?

I never saw this on the list can you repost please?

Ross


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption
  2020-01-09 13:36   ` Ross Burton
@ 2020-01-09 14:43     ` Alex Kiernan
  0 siblings, 0 replies; 12+ messages in thread
From: Alex Kiernan @ 2020-01-09 14:43 UTC (permalink / raw)
  To: Ross Burton; +Cc: Patches and discussions about the oe-core layer

On Thu, Jan 9, 2020 at 1:36 PM Ross Burton <ross.burton@intel.com> wrote:
>
> On 09/01/2020 02:30, Alex Kiernan wrote:
> > On Thu, Dec 19, 2019 at 10:17 PM Alex Kiernan <alex.kiernan@gmail.com> wrote:
> >>
> >> When running mandb we end up with files owned by the build user, correct
> >> this. Also pick up non-default locales and relocate their index.db files
> >> to /var/cache.
> >>
> >> Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
> >> ---
> >
> > Ping?
>
> I never saw this on the list can you repost please?
>

Sure - it's the companion to the one I think you'd started to look at
("Enable rootfs_check_host_user_contaminated"); I was fixing up
manpages leakage, but you found some of the font stuff leaking host
users into the image.

--
Alex Kiernan


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2020-01-02 23:20   ` Ross Burton
@ 2020-05-21 14:14     ` Alex Kiernan
       [not found]     ` <161110ADA6F0224D.21901@lists.openembedded.org>
  1 sibling, 0 replies; 12+ messages in thread
From: Alex Kiernan @ 2020-05-21 14:14 UTC (permalink / raw)
  To: Ross Burton; +Cc: Patches and discussions about the oe-core layer

Hi Ross

On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <ross.burton@intel.com> wrote:
>
> On 19/12/2019 22:17, Alex Kiernan wrote:
> > Enable rootfs_check_host_user_contaminated by default
>
> Useful check!
>
> WARNING: Paths in the rootfs are owned by the same user or group as the
> user running bitbake. See the logfile for the specific paths.
>
> /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/.uuid
>
> /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
>
> (patch incoming)
>

Did you manage to get a patch for this out? I've had a couple of goes
at reproducing it and failed, but I suspect I'm not including the
right things. It would be good to get this check enabled early in the
release cycle, if we can?


-- 
Alex Kiernan

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
       [not found]     ` <161110ADA6F0224D.21901@lists.openembedded.org>
@ 2020-06-09 15:08       ` Alex Kiernan
  2020-06-20 12:45         ` Richard Purdie
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Kiernan @ 2020-06-09 15:08 UTC (permalink / raw)
  To: Ross Burton, Patches and discussions about the oe-core layer

On Thu, May 21, 2020 at 3:14 PM Alex Kiernan via
lists.openembedded.org <alex.kiernan=gmail.com@lists.openembedded.org>
wrote:
>
> Hi Ross
>
> On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <ross.burton@intel.com> wrote:
> >
> > On 19/12/2019 22:17, Alex Kiernan wrote:
> > > Enable rootfs_check_host_user_contaminated by default
> >
> > Useful check!
> >
> > WARNING: Paths in the rootfs are owned by the same user or group as the
> > user running bitbake. See the logfile for the specific paths.
> >
> > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/.uuid
> >
> > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
> >
> > (patch incoming)
> >
>
> Did you manage to get a patch for this out? I've had a couple of goes
> at reproducing it and failed, but I suspect I'm not including the
> right things. It would be good to get this check enabled early in the
> release cycle, if we can?
>

Ping?

--
Alex Kiernan

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2020-06-09 15:08       ` Alex Kiernan
@ 2020-06-20 12:45         ` Richard Purdie
  2020-06-21 15:24           ` Alex Kiernan
  0 siblings, 1 reply; 12+ messages in thread
From: Richard Purdie @ 2020-06-20 12:45 UTC (permalink / raw)
  To: Alex Kiernan, Ross Burton,
	Patches and discussions about the oe-core layer

On Tue, 2020-06-09 at 16:08 +0100, Alex Kiernan wrote:
> On Thu, May 21, 2020 at 3:14 PM Alex Kiernan via
> lists.openembedded.org <alex.kiernan=gmail.com@lists.openembedded.org
> >
> wrote:
> > Hi Ross
> > 
> > On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <ross.burton@intel.com>
> > wrote:
> > > On 19/12/2019 22:17, Alex Kiernan wrote:
> > > > Enable rootfs_check_host_user_contaminated by default
> > > 
> > > Useful check!
> > > 
> > > WARNING: Paths in the rootfs are owned by the same user or group
> > > as the
> > > user running bitbake. See the logfile for the specific paths.
> > > 
> > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-
> > > sato/1.0-r0/rootfs/usr/share/fonts/.uuid
> > > 
> > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-
> > > sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
> > > 
> > > (patch incoming)
> > > 
> > 
> > Did you manage to get a patch for this out? I've had a couple of
> > goes
> > at reproducing it and failed, but I suspect I'm not including the
> > right things. It would be good to get this check enabled early in
> > the
> > release cycle, if we can?
> > 
> 
> Ping?

I'm trying to enable this but its triggering warnings on the
autobuilder:

https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/2037

Unfortunately the logs are totally useless. I think we'll have to
improve the logging before this can be debugged and fixed which blocks
this merging.

Cheers,

Richard


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2020-06-20 12:45         ` Richard Purdie
@ 2020-06-21 15:24           ` Alex Kiernan
  2020-06-21 16:00             ` Richard Purdie
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Kiernan @ 2020-06-21 15:24 UTC (permalink / raw)
  To: Richard Purdie
  Cc: Ross Burton, Patches and discussions about the oe-core layer

Hi Richard

On Sat, Jun 20, 2020 at 1:45 PM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Tue, 2020-06-09 at 16:08 +0100, Alex Kiernan wrote:
> > On Thu, May 21, 2020 at 3:14 PM Alex Kiernan via
> > lists.openembedded.org <alex.kiernan=gmail.com@lists.openembedded.org
> > >
> > wrote:
> > > Hi Ross
> > >
> > > On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <ross.burton@intel.com>
> > > wrote:
> > > > On 19/12/2019 22:17, Alex Kiernan wrote:
> > > > > Enable rootfs_check_host_user_contaminated by default
> > > >
> > > > Useful check!
> > > >
> > > > WARNING: Paths in the rootfs are owned by the same user or group
> > > > as the
> > > > user running bitbake. See the logfile for the specific paths.
> > > >
> > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-
> > > > sato/1.0-r0/rootfs/usr/share/fonts/.uuid
> > > >
> > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-image-
> > > > sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
> > > >
> > > > (patch incoming)
> > > >
> > >
> > > Did you manage to get a patch for this out? I've had a couple of
> > > goes
> > > at reproducing it and failed, but I suspect I'm not including the
> > > right things. It would be good to get this check enabled early in
> > > the
> > > release cycle, if we can?
> > >
> >
> > Ping?
>
> I'm trying to enable this but its triggering warnings on the
> autobuilder:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/2037
>
> Unfortunately the logs are totally useless. I think we'll have to
> improve the logging before this can be debugged and fixed which blocks
> this merging.
>

I've had a couple of goes at reproducing this locally, based on the
configuration I think it's building and can't get it to fail...

Presumably we need to expose the failure lines from the supplementary
log file so that they make it into the autobuilder output?

--
Alex Kiernan

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2020-06-21 15:24           ` Alex Kiernan
@ 2020-06-21 16:00             ` Richard Purdie
  2020-06-22 10:58               ` Alex Kiernan
  0 siblings, 1 reply; 12+ messages in thread
From: Richard Purdie @ 2020-06-21 16:00 UTC (permalink / raw)
  To: Alex Kiernan; +Cc: Ross Burton, Patches and discussions about the oe-core layer

On Sun, 2020-06-21 at 16:24 +0100, Alex Kiernan wrote:
> Hi Richard
> 
> On Sat, Jun 20, 2020 at 1:45 PM Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > On Tue, 2020-06-09 at 16:08 +0100, Alex Kiernan wrote:
> > > On Thu, May 21, 2020 at 3:14 PM Alex Kiernan via
> > > lists.openembedded.org <
> > > alex.kiernan=gmail.com@lists.openembedded.org
> > > wrote:
> > > > Hi Ross
> > > > 
> > > > On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <
> > > > ross.burton@intel.com>
> > > > wrote:
> > > > > On 19/12/2019 22:17, Alex Kiernan wrote:
> > > > > > Enable rootfs_check_host_user_contaminated by default
> > > > > 
> > > > > Useful check!
> > > > > 
> > > > > WARNING: Paths in the rootfs are owned by the same user or
> > > > > group
> > > > > as the
> > > > > user running bitbake. See the logfile for the specific paths.
> > > > > 
> > > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-
> > > > > image-
> > > > > sato/1.0-r0/rootfs/usr/share/fonts/.uuid
> > > > > 
> > > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-
> > > > > image-
> > > > > sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
> > > > > 
> > > > > (patch incoming)
> > > > > 
> > > > 
> > > > Did you manage to get a patch for this out? I've had a couple
> > > > of
> > > > goes
> > > > at reproducing it and failed, but I suspect I'm not including
> > > > the
> > > > right things. It would be good to get this check enabled early
> > > > in
> > > > the
> > > > release cycle, if we can?
> > > > 
> > > 
> > > Ping?
> > 
> > I'm trying to enable this but its triggering warnings on the
> > autobuilder:
> > 
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/2037
> > 
> > Unfortunately the logs are totally useless. I think we'll have to
> > improve the logging before this can be debugged and fixed which
> > blocks
> > this merging.
> > 
> 
> I've had a couple of goes at reproducing this locally, based on the
> configuration I think it's building and can't get it to fail...
> 
> Presumably we need to expose the failure lines from the supplementary
> log file so that they make it into the autobuilder output?

Yes, we need the output to show which files are affected to have some
chance of figuring out how to fix this. The fact its happening
intermittently is somewhat worrying :/.

Cheers,

Richard


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [OE-core] [OE-Core][PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated
  2020-06-21 16:00             ` Richard Purdie
@ 2020-06-22 10:58               ` Alex Kiernan
  0 siblings, 0 replies; 12+ messages in thread
From: Alex Kiernan @ 2020-06-22 10:58 UTC (permalink / raw)
  To: Richard Purdie
  Cc: Ross Burton, Patches and discussions about the oe-core layer

On Sun, Jun 21, 2020 at 5:00 PM Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Sun, 2020-06-21 at 16:24 +0100, Alex Kiernan wrote:
> > Hi Richard
> >
> > On Sat, Jun 20, 2020 at 1:45 PM Richard Purdie
> > <richard.purdie@linuxfoundation.org> wrote:
> > > On Tue, 2020-06-09 at 16:08 +0100, Alex Kiernan wrote:
> > > > On Thu, May 21, 2020 at 3:14 PM Alex Kiernan via
> > > > lists.openembedded.org <
> > > > alex.kiernan=gmail.com@lists.openembedded.org
> > > > wrote:
> > > > > Hi Ross
> > > > >
> > > > > On Thu, Jan 2, 2020 at 11:20 PM Ross Burton <
> > > > > ross.burton@intel.com>
> > > > > wrote:
> > > > > > On 19/12/2019 22:17, Alex Kiernan wrote:
> > > > > > > Enable rootfs_check_host_user_contaminated by default
> > > > > >
> > > > > > Useful check!
> > > > > >
> > > > > > WARNING: Paths in the rootfs are owned by the same user or
> > > > > > group
> > > > > > as the
> > > > > > user running bitbake. See the logfile for the specific paths.
> > > > > >
> > > > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-
> > > > > > image-
> > > > > > sato/1.0-r0/rootfs/usr/share/fonts/.uuid
> > > > > >
> > > > > > /data/poky-tmp/master/work/intel_corei7_64-poky-linux/core-
> > > > > > image-
> > > > > > sato/1.0-r0/rootfs/usr/share/fonts/ttf/.uuid
> > > > > >
> > > > > > (patch incoming)
> > > > > >
> > > > >
> > > > > Did you manage to get a patch for this out? I've had a couple
> > > > > of
> > > > > goes
> > > > > at reproducing it and failed, but I suspect I'm not including
> > > > > the
> > > > > right things. It would be good to get this check enabled early
> > > > > in
> > > > > the
> > > > > release cycle, if we can?
> > > > >
> > > >
> > > > Ping?
> > >
> > > I'm trying to enable this but its triggering warnings on the
> > > autobuilder:
> > >
> > > https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/2037
> > >
> > > Unfortunately the logs are totally useless. I think we'll have to
> > > improve the logging before this can be debugged and fixed which
> > > blocks
> > > this merging.
> > >
> >
> > I've had a couple of goes at reproducing this locally, based on the
> > configuration I think it's building and can't get it to fail...
> >
> > Presumably we need to expose the failure lines from the supplementary
> > log file so that they make it into the autobuilder output?
>
> Yes, we need the output to show which files are affected to have some
> chance of figuring out how to fix this. The fact its happening
> intermittently is somewhat worrying :/.
>

Just sent a v2 which includes changes to push the failure paths into
the main log

> Cheers,
>
> Richard
>



--
Alex Kiernan

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-06-22 10:59 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-19 22:17 [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
2019-12-19 22:17 ` [PATCH 2/2] rootfs-postcommands: Enable rootfs_check_host_user_contaminated Alex Kiernan
2020-01-02 23:20   ` Ross Burton
2020-05-21 14:14     ` [OE-core] [OE-Core][PATCH " Alex Kiernan
     [not found]     ` <161110ADA6F0224D.21901@lists.openembedded.org>
2020-06-09 15:08       ` Alex Kiernan
2020-06-20 12:45         ` Richard Purdie
2020-06-21 15:24           ` Alex Kiernan
2020-06-21 16:00             ` Richard Purdie
2020-06-22 10:58               ` Alex Kiernan
2020-01-09  2:30 ` [PATCH 1/2] manpages.bbclass: Fix rootfs host corruption Alex Kiernan
2020-01-09 13:36   ` Ross Burton
2020-01-09 14:43     ` Alex Kiernan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.