All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] use weak assignments for PNBLACKLIST in recipe files
@ 2020-05-25 19:21 Robert P. J. Day
  2020-05-26 23:18 ` [oe] " Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Robert P. J. Day @ 2020-05-25 19:21 UTC (permalink / raw)
  To: OpenEmbedded Development mailing list

Make sure PNBLACKLIST assignments in recipe files use weak assignment,
so they can be overridden in, for example, local.conf files.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---

diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
index c39faef8d..eee96d865 100644
--- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
+++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
@@ -69,4 +69,4 @@ RDEPENDS_${PN}-server += "tcp-wrappers xinetd rpcbind"

 # http://errors.yoctoproject.org/Errors/Details/186962/
 COMPATIBLE_HOST_libc-musl = 'null'
-PNBLACKLIST[netkit-rusers] = "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
+PNBLACKLIST[netkit-rusers] ?= "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
diff --git a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
index 23fe2021b..c296c3bc1 100644
--- a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
+++ b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
@@ -22,4 +22,4 @@ do_install () {
     oe_runmake install DESTDIR="${D}"
 }

-PNBLACKLIST[drbd] = "Kernel module Needs forward porting to kernel 5.2+"
+PNBLACKLIST[drbd] ?= "Kernel module Needs forward porting to kernel 5.2+"
diff --git a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
index 5917cfb3e..4a1bbe620 100644
--- a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
+++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
@@ -36,4 +36,4 @@ FILES_${PN}-dbg += "${libexecdir}/lowpan-tools/.debug/"
 PACKAGES =+ "${PN}-python"
 FILES_${PN}-python = "${libdir}/python*"

-PNBLACKLIST[lowpan-tools] = "WARNING these tools are deprecated! Use wpan-tools instead"
+PNBLACKLIST[lowpan-tools] ?= "WARNING these tools are deprecated! Use wpan-tools instead"
diff --git a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
index 21d110aee..2e3da7d4d 100644
--- a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
+++ b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
@@ -27,4 +27,4 @@ RDEPENDS_${PN} += "\

 BBCLASSEXTEND = "native nativesdk"

-PNBLACKLIST[nanopb] = "Needs forward porting to use python3"
+PNBLACKLIST[nanopb] ?= "Needs forward porting to use python3"
diff --git a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
index e40e1cd26..eca8dfc7b 100644
--- a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
+++ b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
@@ -11,4 +11,4 @@ inherit module

 EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}"

-PNBLACKLIST[can-isotp] = "Kernel module Needs forward porting to kernel 5.2+"
+PNBLACKLIST[can-isotp] ?= "Kernel module Needs forward porting to kernel 5.2+"
diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb
index 6683eccf2..1758430bc 100644
--- a/meta-oe/recipes-kernel/bpftool/bpftool.bb
+++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb
@@ -32,4 +32,4 @@ python do_package_prepend() {
 }

 B = "${WORKDIR}/${BPN}-${PV}"
-PNBLACKLIST[bpftool] = "Needs forward porting to kernel 5.2+"
+PNBLACKLIST[bpftool] ?= "Needs forward porting to kernel 5.2+"

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                         http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

* Re: [oe] [PATCH] use weak assignments for PNBLACKLIST in recipe files
  2020-05-25 19:21 [PATCH] use weak assignments for PNBLACKLIST in recipe files Robert P. J. Day
@ 2020-05-26 23:18 ` Khem Raj
  2020-05-27 10:14   ` Robert P. J. Day
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2020-05-26 23:18 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: OpenEmbedded Development mailing list

On Mon, May 25, 2020 at 12:21 PM Robert P. J. Day <rpjday@crashcourse.ca> wrote:
>
> Make sure PNBLACKLIST assignments in recipe files use weak assignment,
> so they can be overridden in, for example, local.conf files.
>

I would like contributions here when someone fixes one of the
blacklisted recipes. This patch will let downstream users host it in
bbappends or other places
what is the intended use of this patch?

> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
>
> ---
>
> diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> index c39faef8d..eee96d865 100644
> --- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> @@ -69,4 +69,4 @@ RDEPENDS_${PN}-server += "tcp-wrappers xinetd rpcbind"
>
>  # http://errors.yoctoproject.org/Errors/Details/186962/
>  COMPATIBLE_HOST_libc-musl = 'null'
> -PNBLACKLIST[netkit-rusers] = "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
> +PNBLACKLIST[netkit-rusers] ?= "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
> diff --git a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> index 23fe2021b..c296c3bc1 100644
> --- a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> +++ b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> @@ -22,4 +22,4 @@ do_install () {
>      oe_runmake install DESTDIR="${D}"
>  }
>
> -PNBLACKLIST[drbd] = "Kernel module Needs forward porting to kernel 5.2+"
> +PNBLACKLIST[drbd] ?= "Kernel module Needs forward porting to kernel 5.2+"
> diff --git a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> index 5917cfb3e..4a1bbe620 100644
> --- a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> +++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> @@ -36,4 +36,4 @@ FILES_${PN}-dbg += "${libexecdir}/lowpan-tools/.debug/"
>  PACKAGES =+ "${PN}-python"
>  FILES_${PN}-python = "${libdir}/python*"
>
> -PNBLACKLIST[lowpan-tools] = "WARNING these tools are deprecated! Use wpan-tools instead"
> +PNBLACKLIST[lowpan-tools] ?= "WARNING these tools are deprecated! Use wpan-tools instead"
> diff --git a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> index 21d110aee..2e3da7d4d 100644
> --- a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> +++ b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> @@ -27,4 +27,4 @@ RDEPENDS_${PN} += "\
>
>  BBCLASSEXTEND = "native nativesdk"
>
> -PNBLACKLIST[nanopb] = "Needs forward porting to use python3"
> +PNBLACKLIST[nanopb] ?= "Needs forward porting to use python3"
> diff --git a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> index e40e1cd26..eca8dfc7b 100644
> --- a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> +++ b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> @@ -11,4 +11,4 @@ inherit module
>
>  EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}"
>
> -PNBLACKLIST[can-isotp] = "Kernel module Needs forward porting to kernel 5.2+"
> +PNBLACKLIST[can-isotp] ?= "Kernel module Needs forward porting to kernel 5.2+"
> diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> index 6683eccf2..1758430bc 100644
> --- a/meta-oe/recipes-kernel/bpftool/bpftool.bb
> +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> @@ -32,4 +32,4 @@ python do_package_prepend() {
>  }
>
>  B = "${WORKDIR}/${BPN}-${PV}"
> -PNBLACKLIST[bpftool] = "Needs forward porting to kernel 5.2+"
> +PNBLACKLIST[bpftool] ?= "Needs forward porting to kernel 5.2+"
>
> --
>
> ========================================================================
> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>                          http://crashcourse.ca
>
> Twitter:                                       http://twitter.com/rpjday
> LinkedIn:                               http://ca.linkedin.com/in/rpjday
> ========================================================================
> 

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

* Re: [oe] [PATCH] use weak assignments for PNBLACKLIST in recipe files
  2020-05-26 23:18 ` [oe] " Khem Raj
@ 2020-05-27 10:14   ` Robert P. J. Day
  2020-05-27 19:09     ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Robert P. J. Day @ 2020-05-27 10:14 UTC (permalink / raw)
  To: Khem Raj; +Cc: OpenEmbedded Development mailing list

On Tue, 26 May 2020, Khem Raj wrote:

> On Mon, May 25, 2020 at 12:21 PM Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> >
> > Make sure PNBLACKLIST assignments in recipe files use weak
> > assignment, so they can be overridden in, for example, local.conf
> > files.
> >
>
> I would like contributions here when someone fixes one of the
> blacklisted recipes. This patch will let downstream users host it in
> bbappends or other places what is the intended use of this patch?

  i'm not sure what you're asking for here ... there is no claim that
any of these recipes have been fixed in any way, only that weak
assignment seems to be the default for blacklisting to at least allow
for the possibility of overriding.

> >
> > diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> > index c39faef8d..eee96d865 100644
> > --- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> > +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> > @@ -69,4 +69,4 @@ RDEPENDS_${PN}-server += "tcp-wrappers xinetd rpcbind"
> >
> >  # http://errors.yoctoproject.org/Errors/Details/186962/
> >  COMPATIBLE_HOST_libc-musl = 'null'
> > -PNBLACKLIST[netkit-rusers] = "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
> > +PNBLACKLIST[netkit-rusers] ?= "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory"
> > diff --git a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > index 23fe2021b..c296c3bc1 100644
> > --- a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > +++ b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > @@ -22,4 +22,4 @@ do_install () {
> >      oe_runmake install DESTDIR="${D}"
> >  }
> >
> > -PNBLACKLIST[drbd] = "Kernel module Needs forward porting to kernel 5.2+"
> > +PNBLACKLIST[drbd] ?= "Kernel module Needs forward porting to kernel 5.2+"
> > diff --git a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> > index 5917cfb3e..4a1bbe620 100644
> > --- a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> > +++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> > @@ -36,4 +36,4 @@ FILES_${PN}-dbg += "${libexecdir}/lowpan-tools/.debug/"
> >  PACKAGES =+ "${PN}-python"
> >  FILES_${PN}-python = "${libdir}/python*"
> >
> > -PNBLACKLIST[lowpan-tools] = "WARNING these tools are deprecated! Use wpan-tools instead"
> > +PNBLACKLIST[lowpan-tools] ?= "WARNING these tools are deprecated! Use wpan-tools instead"
> > diff --git a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > index 21d110aee..2e3da7d4d 100644
> > --- a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > +++ b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > @@ -27,4 +27,4 @@ RDEPENDS_${PN} += "\
> >
> >  BBCLASSEXTEND = "native nativesdk"
> >
> > -PNBLACKLIST[nanopb] = "Needs forward porting to use python3"
> > +PNBLACKLIST[nanopb] ?= "Needs forward porting to use python3"
> > diff --git a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > index e40e1cd26..eca8dfc7b 100644
> > --- a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > +++ b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > @@ -11,4 +11,4 @@ inherit module
> >
> >  EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}"
> >
> > -PNBLACKLIST[can-isotp] = "Kernel module Needs forward porting to kernel 5.2+"
> > +PNBLACKLIST[can-isotp] ?= "Kernel module Needs forward porting to kernel 5.2+"
> > diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > index 6683eccf2..1758430bc 100644
> > --- a/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > @@ -32,4 +32,4 @@ python do_package_prepend() {
> >  }
> >
> >  B = "${WORKDIR}/${BPN}-${PV}"
> > -PNBLACKLIST[bpftool] = "Needs forward porting to kernel 5.2+"
> > +PNBLACKLIST[bpftool] ?= "Needs forward porting to kernel 5.2+"
> >
> > --
> >
> > ========================================================================
> > Robert P. J. Day                                 Ottawa, Ontario, CANADA
> >                          http://crashcourse.ca
> >
> > Twitter:                                       http://twitter.com/rpjday
> > LinkedIn:                               http://ca.linkedin.com/in/rpjday
> > ========================================================================
> >
>

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                         http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

* Re: [oe] [PATCH] use weak assignments for PNBLACKLIST in recipe files
  2020-05-27 10:14   ` Robert P. J. Day
@ 2020-05-27 19:09     ` Khem Raj
  2020-05-27 19:50       ` Robert P. J. Day
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2020-05-27 19:09 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: OpenEmbedded Development mailing list

[-- Attachment #1: Type: text/plain, Size: 5684 bytes --]

On Wed, May 27, 2020 at 3:14 AM Robert P. J. Day <rpjday@crashcourse.ca>
wrote:

> On Tue, 26 May 2020, Khem Raj wrote:
>
> > On Mon, May 25, 2020 at 12:21 PM Robert P. J. Day <rpjday@crashcourse.ca>
> wrote:
> > >
> > > Make sure PNBLACKLIST assignments in recipe files use weak
> > > assignment, so they can be overridden in, for example, local.conf
> > > files.
> > >
> >
> > I would like contributions here when someone fixes one of the
> > blacklisted recipes. This patch will let downstream users host it in
> > bbappends or other places what is the intended use of this patch?
>
>   i'm not sure what you're asking for here ... there is no claim that
> any of these recipes have been fixed in any way, only that weak
> assignment seems to be the default for blacklisting to at least allow
> for the possibility of overriding.
>

Ok I think that’s fine I wanted to understand the reason since weak
assignment do have some unintended  results but if it is to make it uniform
I
Think that’s fair

>
> > >
> > > diff --git a/meta-networking/recipes-netkit/netkit-rusers/
> netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/
> netkit-rusers_0.17.bb
> > > index c39faef8d..eee96d865 100644
> > > --- a/meta-networking/recipes-netkit/netkit-rusers/
> netkit-rusers_0.17.bb
> > > +++ b/meta-networking/recipes-netkit/netkit-rusers/
> netkit-rusers_0.17.bb
> > > @@ -69,4 +69,4 @@ RDEPENDS_${PN}-server += "tcp-wrappers xinetd
> rpcbind"
> > >
> > >  # http://errors.yoctoproject.org/Errors/Details/186962/
> > >  COMPATIBLE_HOST_libc-musl = 'null'
> > > -PNBLACKLIST[netkit-rusers] = "Fails to build rup.c:51:10: fatal
> error: rstat.h: No such file or directory"
> > > +PNBLACKLIST[netkit-rusers] ?= "Fails to build rup.c:51:10: fatal
> error: rstat.h: No such file or directory"
> > > diff --git a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > > index 23fe2021b..c296c3bc1 100644
> > > --- a/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > > +++ b/meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb
> > > @@ -22,4 +22,4 @@ do_install () {
> > >      oe_runmake install DESTDIR="${D}"
> > >  }
> > >
> > > -PNBLACKLIST[drbd] = "Kernel module Needs forward porting to kernel
> 5.2+"
> > > +PNBLACKLIST[drbd] ?= "Kernel module Needs forward porting to kernel
> 5.2+"
> > > diff --git a/meta-networking/recipes-support/lowpan-tools/
> lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/
> lowpan-tools_git.bb
> > > index 5917cfb3e..4a1bbe620 100644
> > > --- a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> > > +++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
> > > @@ -36,4 +36,4 @@ FILES_${PN}-dbg +=
> "${libexecdir}/lowpan-tools/.debug/"
> > >  PACKAGES =+ "${PN}-python"
> > >  FILES_${PN}-python = "${libdir}/python*"
> > >
> > > -PNBLACKLIST[lowpan-tools] = "WARNING these tools are deprecated! Use
> wpan-tools instead"
> > > +PNBLACKLIST[lowpan-tools] ?= "WARNING these tools are deprecated! Use
> wpan-tools instead"
> > > diff --git a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > > index 21d110aee..2e3da7d4d 100644
> > > --- a/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > > +++ b/meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb
> > > @@ -27,4 +27,4 @@ RDEPENDS_${PN} += "\
> > >
> > >  BBCLASSEXTEND = "native nativesdk"
> > >
> > > -PNBLACKLIST[nanopb] = "Needs forward porting to use python3"
> > > +PNBLACKLIST[nanopb] ?= "Needs forward porting to use python3"
> > > diff --git a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > > index e40e1cd26..eca8dfc7b 100644
> > > --- a/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > > +++ b/meta-oe/recipes-extended/socketcan/can-isotp_git.bb
> > > @@ -11,4 +11,4 @@ inherit module
> > >
> > >  EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}"
> > >
> > > -PNBLACKLIST[can-isotp] = "Kernel module Needs forward porting to
> kernel 5.2+"
> > > +PNBLACKLIST[can-isotp] ?= "Kernel module Needs forward porting to
> kernel 5.2+"
> > > diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb
> b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > > index 6683eccf2..1758430bc 100644
> > > --- a/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > > +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb
> > > @@ -32,4 +32,4 @@ python do_package_prepend() {
> > >  }
> > >
> > >  B = "${WORKDIR}/${BPN}-${PV}"
> > > -PNBLACKLIST[bpftool] = "Needs forward porting to kernel 5.2+"
> > > +PNBLACKLIST[bpftool] ?= "Needs forward porting to kernel 5.2+"
> > >
> > > --
> > >
> > >
> ========================================================================
> > > Robert P. J. Day                                 Ottawa, Ontario,
> CANADA
> > >                          http://crashcourse.ca
> > >
> > > Twitter:
> http://twitter.com/rpjday
> > > LinkedIn:
> http://ca.linkedin.com/in/rpjday
> > >
> ========================================================================
> > >
> >
>
> --
>
> ========================================================================
> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>                          http://crashcourse.ca
>
> Twitter:                                       http://twitter.com/rpjday
> LinkedIn:                               http://ca.linkedin.com/in/rpjday
> ========================================================================
>

[-- Attachment #2: Type: text/html, Size: 9479 bytes --]

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

* Re: [oe] [PATCH] use weak assignments for PNBLACKLIST in recipe files
  2020-05-27 19:09     ` Khem Raj
@ 2020-05-27 19:50       ` Robert P. J. Day
  0 siblings, 0 replies; 5+ messages in thread
From: Robert P. J. Day @ 2020-05-27 19:50 UTC (permalink / raw)
  To: Khem Raj; +Cc: OpenEmbedded Development mailing list

[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]

On Wed, 27 May 2020, Khem Raj wrote:

>
>
> On Wed, May 27, 2020 at 3:14 AM Robert P. J. Day <rpjday@crashcourse.ca> wrote:
>       On Tue, 26 May 2020, Khem Raj wrote:
>
>       > On Mon, May 25, 2020 at 12:21 PM Robert P. J. Day <rpjday@crashcourse.ca>
>       wrote:
>       > >
>       > > Make sure PNBLACKLIST assignments in recipe files use weak
>       > > assignment, so they can be overridden in, for example, local.conf
>       > > files.
>       > >
>       >
>       > I would like contributions here when someone fixes one of the
>       > blacklisted recipes. This patch will let downstream users host it in
>       > bbappends or other places what is the intended use of this patch?
>
>         i'm not sure what you're asking for here ... there is no claim that
>       any of these recipes have been fixed in any way, only that weak
>       assignment seems to be the default for blacklisting to at least allow
>       for the possibility of overriding.
>
>
> Ok I think that’s fine I wanted to understand the reason since weak
> assignment do have some unintended results but if it is to make it
> uniform I Think that’s fair

  discussion on YP list that inspired this:

https://lists.yoctoproject.org/g/yocto/topic/74460612#49479

rday

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

end of thread, other threads:[~2020-05-27 19:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-25 19:21 [PATCH] use weak assignments for PNBLACKLIST in recipe files Robert P. J. Day
2020-05-26 23:18 ` [oe] " Khem Raj
2020-05-27 10:14   ` Robert P. J. Day
2020-05-27 19:09     ` Khem Raj
2020-05-27 19:50       ` Robert P. J. Day

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.