[yocto] [meta-zephyr][PATCH 2/2] zephyr-kernel-src: set default preferred version to 2.7.0

2021-10-20 Thread Naveen Saini
Signed-off-by: Naveen Saini --- recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc b/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc index 458ff1e..3a2250d 100644 --- a/recip

[yocto] [meta-zephyr][PATCH 1/2] zephyr-kernel/2.7.0: update to release tag Zephyr v2.7.0

2021-10-20 Thread Naveen Saini
https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.7.0 Signed-off-by: Naveen Saini --- recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.7.0.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-src-2.7.0.inc b/recipes

[yocto] [psplash][PATCH] Improve warnings from probing for double buffering

2021-10-20 Thread Zach Welch
Adds missing newline characters in output, while clarifying that these messages are warnings that may be safely ignored. Signed-off-by: Zachary T Welch --- psplash-fb.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/psplash-fb.c b/psplash-fb.c index 6603572..2babb5f 10

[yocto] [yocto-autobuilder2][dunfell 2/2] config.py: enable debian11 workers for dunfell

2021-10-20 Thread Steve Sakoman
Signed-off-by: Steve Sakoman --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 8792132..3874f04 100644 --- a/config.py +++ b/config.py @@ -151,7 +151,7 @@ workers_prev_releases = { "gatesgarth" : ("centos7", "centos8", "debian8", "d

[yocto] [yocto-autobuilder2][dunfell 1/2] config.py: enable fedora34 workers for dunfell

2021-10-20 Thread Steve Sakoman
Signed-off-by: Steve Sakoman --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index db1b763..8792132 100644 --- a/config.py +++ b/config.py @@ -149,7 +149,7 @@ all_workers = workers + workers_bringup + workers_buildperf + workers_arm worker

[yocto] [yocto-autobuilder2][dunfell 0/2] Patch review

2021-10-20 Thread Steve Sakoman
This series enables fedora34 and debian11 workers for dunfell. The following changes since commit 08020902bef43866e3c982422e4fbdace57cd01a: schedulers: Add honister release (2021-10-11 11:12:11 +0100) are available in the Git repository at: git://git.yoctoproject.org/yocto-autobuilder2 cont

[yocto] [meta-zephyr][PATCH] lib/oeqa/controllers: extend search path

2021-10-20 Thread Ross Burton
When multiple locations can provide modules in the same package, the search path needs to be extended with pkgutil.extend_path. Otherwise the search will end early and not iterate through each of the providers. Signed-off-by: Ross Burton --- lib/oeqa/controllers/__init__.py | 3 +++ 1 file chan