[OE-core] [PATCH] cve-check: allow filtering out patched issues

2019-02-14 Thread Dan Dedrick
It can be useful to filter out patched issues since they are no longer vulnerable. This makes it easier to sift through what CVEs still might need to be fixed. Signed-off-by: Dan Dedrick --- meta/classes/cve-check.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/cve

[OE-core] [PATCH] devtool: improve git repo checks before check_commits logic

2019-01-21 Thread Dan Dedrick
The check_commits logic assumes that both devtool-base and args.branch exist in the git repo that it is operating on. In order to prevent errors at that point it's best to first ensure that both of these refs actually exist. If they don't both exist then the check_commits logic should just be

[OE-core] [PATCH] devtool: remove duplicate overrides

2019-01-21 Thread Dan Dedrick
ode 128: fatal: A branch named 'devtool-override-foo' already exists. Signed-off-by: Dan Dedrick --- scripts/lib/devtool/standard.py | 5 + 1 file changed, 5 insertions(+) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index d14b7a6543..a45ad36812 100644 --- a/s

Re: [OE-core] [PATCH 1/7] allarch: only enable allarch when multilib is not used

2019-01-17 Thread Dan Dedrick
I'm resurrecting this thread because this change negatively affects our use of multilib. The use case that this is fixing seems to be a a case that would be a better fit for multiconfig than it would multilib. My interpretation of the use cases of multilib and multiconfig is as follows and someone

[OE-core] [PATCH] kernel-devicetree: build DTBs in parallel

2018-08-24 Thread Dan Dedrick
When building more than one device tree it's inefficient to serially build them in multiple make calls. It's much faster and efficient to build them in one call where they can run in parallel. Signed-off-by: Dan Dedrick --- meta/classes/kernel-devicetree.bbclass | 6 +- 1 file changed, 5

[OE-core] [PATCH] staging: fix up multilib destsysroot path

2017-11-08 Thread Dan Dedrick
The issues here was that WORKDIR changes based on the multilib variant and the WORKDIR is used in the RECIPE_SYSROOT path. We need to use the same WORKDIR that everything else is using so reset it before we expand RECIPE_SYSROOT. Signed-off-by: Dan Dedrick <ddedr...@lexmark.com> --- meta/c

[OE-core] [PATCH] dhcp: use ${BPN} instead of ${PN} for user

2017-11-07 Thread Dan Dedrick
;dhcp". Signed-off-by: Dan Dedrick <ddedr...@lexmark.com> --- meta/recipes-connectivity/dhcp/dhcp.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/dhcp/dhcp.inc b/meta/recipes-connectivity/dhcp/dhcp.inc index 58f4a6fd24..e94370786a 100644 --