All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues
@ 2024-07-15 14:31 Trevor Woerner
  2024-07-15 14:42 ` [yocto-patches] " Quentin Schulz
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Trevor Woerner @ 2024-07-15 14:31 UTC (permalink / raw)
  To: yocto-patches

oe-core has raised the status of some checks from warnings to errors. Ignore
the "...contains references to TMPDIR..." error when building the
torvalds-next kernel.

Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
 recipes-kernel/linux/linux-torvalds-next_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-kernel/linux/linux-torvalds-next_git.bb b/recipes-kernel/linux/linux-torvalds-next_git.bb
index c0ac1de22005..6f3db7c61bdf 100644
--- a/recipes-kernel/linux/linux-torvalds-next_git.bb
+++ b/recipes-kernel/linux/linux-torvalds-next_git.bb
@@ -5,6 +5,7 @@ SECTION = "kernel"
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
 
+ERROR_QA:remove = "buildpaths"
 DEFAULT_PREFERENCE = "-1"
 COMPATIBLE_MACHINE = "^$"
 COMPATIBLE_MACHINE:radxa-zero-3 = "radxa-zero-3"
-- 
2.44.0.478.g7774cfed6261



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

* Re: [yocto-patches] [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues
  2024-07-15 14:31 [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues Trevor Woerner
@ 2024-07-15 14:42 ` Quentin Schulz
  2024-07-15 14:47 ` Richard Purdie
  2024-07-16 15:07 ` Trevor Woerner
  2 siblings, 0 replies; 5+ messages in thread
From: Quentin Schulz @ 2024-07-15 14:42 UTC (permalink / raw)
  To: yocto-patches

Hi Trevor,

On 7/15/24 4:31 PM, Trevor Woerner via lists.yoctoproject.org wrote:
> oe-core has raised the status of some checks from warnings to errors. Ignore
> the "...contains references to TMPDIR..." error when building the
> torvalds-next kernel.
> 
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
>   recipes-kernel/linux/linux-torvalds-next_git.bb | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/recipes-kernel/linux/linux-torvalds-next_git.bb b/recipes-kernel/linux/linux-torvalds-next_git.bb
> index c0ac1de22005..6f3db7c61bdf 100644
> --- a/recipes-kernel/linux/linux-torvalds-next_git.bb
> +++ b/recipes-kernel/linux/linux-torvalds-next_git.bb
> @@ -5,6 +5,7 @@ SECTION = "kernel"
>   LICENSE = "GPL-2.0-only"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
>   
> +ERROR_QA:remove = "buildpaths"

I think I've had those as warnings already and I've patched the files 
triggering those in my downstream tree, and Bruce as well I think in 
linux-yocto. We should really at least notify upstream to check if there 
isn't anything we can do about it to avoid silencing warnings/errors or 
carrying patches.

https://git.theobroma-systems.com/jaguar-linux.git/commit/?id=55b4a6e969981d21b320a90a6ba1b8f89cda80f0
https://git.theobroma-systems.com/jaguar-linux.git/commit/?id=01a5c521907b714dc9bbde9dc6a8e06b1894d019

In any case,

Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>

Thanks!
Quentin


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

* Re: [yocto-patches] [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues
  2024-07-15 14:31 [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues Trevor Woerner
  2024-07-15 14:42 ` [yocto-patches] " Quentin Schulz
@ 2024-07-15 14:47 ` Richard Purdie
  2024-07-15 15:23   ` Trevor Woerner
  2024-07-16 15:07 ` Trevor Woerner
  2 siblings, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2024-07-15 14:47 UTC (permalink / raw)
  To: yocto-patches

On Mon, 2024-07-15 at 10:31 -0400, Trevor Woerner via
lists.yoctoproject.org wrote:
> oe-core has raised the status of some checks from warnings to errors.
> Ignore
> the "...contains references to TMPDIR..." error when building the
> torvalds-next kernel.
> 
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
>  recipes-kernel/linux/linux-torvalds-next_git.bb | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/recipes-kernel/linux/linux-torvalds-next_git.bb
> b/recipes-kernel/linux/linux-torvalds-next_git.bb
> index c0ac1de22005..6f3db7c61bdf 100644
> --- a/recipes-kernel/linux/linux-torvalds-next_git.bb
> +++ b/recipes-kernel/linux/linux-torvalds-next_git.bb
> @@ -5,6 +5,7 @@ SECTION = "kernel"
>  LICENSE = "GPL-2.0-only"
>  LIC_FILES_CHKSUM =
> "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
>  
> +ERROR_QA:remove = "buildpaths"
>  DEFAULT_PREFERENCE = "-1"
>  COMPATIBLE_MACHINE = "^$"
>  COMPATIBLE_MACHINE:radxa-zero-3 = "radxa-zero-3"

You may want to add that to WARN_QA so you remember to at least look at
them a some point. They're a sign of non-reproducible builds for a
start and break hash equivalence sstate reuse.

Cheers,

Richard


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

* Re: [yocto-patches] [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues
  2024-07-15 14:47 ` Richard Purdie
@ 2024-07-15 15:23   ` Trevor Woerner
  0 siblings, 0 replies; 5+ messages in thread
From: Trevor Woerner @ 2024-07-15 15:23 UTC (permalink / raw)
  To: yocto-patches

On Mon 2024-07-15 @ 03:47:11 PM, Richard Purdie via lists.yoctoproject.org wrote:
> On Mon, 2024-07-15 at 10:31 -0400, Trevor Woerner via
> lists.yoctoproject.org wrote:
> > oe-core has raised the status of some checks from warnings to errors.
> > Ignore
> > the "...contains references to TMPDIR..." error when building the
> > torvalds-next kernel.
> > 
> > Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> > ---
> >  recipes-kernel/linux/linux-torvalds-next_git.bb | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/recipes-kernel/linux/linux-torvalds-next_git.bb
> > b/recipes-kernel/linux/linux-torvalds-next_git.bb
> > index c0ac1de22005..6f3db7c61bdf 100644
> > --- a/recipes-kernel/linux/linux-torvalds-next_git.bb
> > +++ b/recipes-kernel/linux/linux-torvalds-next_git.bb
> > @@ -5,6 +5,7 @@ SECTION = "kernel"
> >  LICENSE = "GPL-2.0-only"
> >  LIC_FILES_CHKSUM =
> > "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
> >  
> > +ERROR_QA:remove = "buildpaths"
> >  DEFAULT_PREFERENCE = "-1"
> >  COMPATIBLE_MACHINE = "^$"
> >  COMPATIBLE_MACHINE:radxa-zero-3 = "radxa-zero-3"
> 
> You may want to add that to WARN_QA so you remember to at least look at
> them a some point. They're a sign of non-reproducible builds for a
> start and break hash equivalence sstate reuse.

When I added support for these two MACHINEs in meta-rockchip
(radxa-zero-3{e|w}), support wasn't even yet available in linux-yocto-dev, I
had to use Linus' -next tree to get support (which is why I created a
linux-torvalds-next recipe). In time support will hopefully
trickle down into linux-yocto-dev, then linux-yocto, at which points I will
discard linux-torvalds-next for fully upstream oe-core support.

I could add a WARN for this, but I'm probably not going to get around to
looking into it and fixing it, I doubt anyone else will (since it's a recipe
specific to meta-rockchip), and fixing it won't be required once we switch to
something from oe-core.

> 
> Cheers,
> 
> Richard
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#430): https://lists.yoctoproject.org/g/yocto-patches/message/430
> Mute This Topic: https://lists.yoctoproject.org/mt/107232153/900817
> Group Owner: yocto-patches+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/yocto-patches/leave/13168745/900817/63955952/xyzzy [twoerner@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 
> 


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

* Re: [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues
  2024-07-15 14:31 [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues Trevor Woerner
  2024-07-15 14:42 ` [yocto-patches] " Quentin Schulz
  2024-07-15 14:47 ` Richard Purdie
@ 2024-07-16 15:07 ` Trevor Woerner
  2 siblings, 0 replies; 5+ messages in thread
From: Trevor Woerner @ 2024-07-16 15:07 UTC (permalink / raw)
  To: yocto-patches

On Mon 2024-07-15 @ 10:31:49 AM, Trevor Woerner wrote:
> oe-core has raised the status of some checks from warnings to errors. Ignore
> the "...contains references to TMPDIR..." error when building the
> torvalds-next kernel.
> 
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
>  recipes-kernel/linux/linux-torvalds-next_git.bb | 1 +
>  1 file changed, 1 insertion(+)

Applied to meta-rockchip, master branch.


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

end of thread, other threads:[~2024-07-16 15:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-15 14:31 [meta-rockchip][PATCH] linux-torvalds-next: ignore TMPDIR issues Trevor Woerner
2024-07-15 14:42 ` [yocto-patches] " Quentin Schulz
2024-07-15 14:47 ` Richard Purdie
2024-07-15 15:23   ` Trevor Woerner
2024-07-16 15:07 ` Trevor Woerner

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.