summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2020-05-25 15:21:09 -0400
committerKhem Raj <raj.khem@gmail.com>2020-05-26 10:28:39 -0700
commitd7f5367b53f6fd410e1ebb270f52c2d9f4b3435a (patch)
tree031b95f419501691da05b1d0a1839fd7869721b4
parent8a84a0f802747798c7f35abc4b9e158ee3f30729 (diff)
downloadmeta-openembedded-d7f5367b53f6fd410e1ebb270f52c2d9f4b3435a.tar.gz
use weak assignments for PNBLACKLIST in recipe files
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> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb2
-rw-r--r--meta-networking/recipes-support/drbd/drbd_9.0.19-1.bb2
-rw-r--r--meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb2
-rw-r--r--meta-oe/recipes-devtools/nanopb/nanopb_0.4.0.bb2
-rw-r--r--meta-oe/recipes-extended/socketcan/can-isotp_git.bb2
-rw-r--r--meta-oe/recipes-kernel/bpftool/bpftool.bb2
6 files changed, 6 insertions, 6 deletions
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 c39faef8d8..eee96d865f 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"
69 69
70# http://errors.yoctoproject.org/Errors/Details/186962/ 70# http://errors.yoctoproject.org/Errors/Details/186962/
71COMPATIBLE_HOST_libc-musl = 'null' 71COMPATIBLE_HOST_libc-musl = 'null'
72PNBLACKLIST[netkit-rusers] = "Fails to build rup.c:51:10: fatal error: rstat.h: No such file or directory" 72PNBLACKLIST[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 23fe2021be..c296c3bc1c 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 () {
22 oe_runmake install DESTDIR="${D}" 22 oe_runmake install DESTDIR="${D}"
23} 23}
24 24
25PNBLACKLIST[drbd] = "Kernel module Needs forward porting to kernel 5.2+" 25PNBLACKLIST[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 5917cfb3e1..4a1bbe6206 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/"
36PACKAGES =+ "${PN}-python" 36PACKAGES =+ "${PN}-python"
37FILES_${PN}-python = "${libdir}/python*" 37FILES_${PN}-python = "${libdir}/python*"
38 38
39PNBLACKLIST[lowpan-tools] = "WARNING these tools are deprecated! Use wpan-tools instead" 39PNBLACKLIST[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 21d110aeea..2e3da7d4d3 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} += "\
27 27
28BBCLASSEXTEND = "native nativesdk" 28BBCLASSEXTEND = "native nativesdk"
29 29
30PNBLACKLIST[nanopb] = "Needs forward porting to use python3" 30PNBLACKLIST[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 e40e1cd263..eca8dfc7b7 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
11 11
12EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}" 12EXTRA_OEMAKE += "KERNELDIR=${STAGING_KERNEL_DIR}"
13 13
14PNBLACKLIST[can-isotp] = "Kernel module Needs forward porting to kernel 5.2+" 14PNBLACKLIST[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 6683eccf2d..1758430bc8 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() {
32} 32}
33 33
34B = "${WORKDIR}/${BPN}-${PV}" 34B = "${WORKDIR}/${BPN}-${PV}"
35PNBLACKLIST[bpftool] = "Needs forward porting to kernel 5.2+" 35PNBLACKLIST[bpftool] ?= "Needs forward porting to kernel 5.2+"