[yocto] [meta-security][PATCH] samhain: upgrade 4.4.3 -> 4.4.6

2022-01-21 Thread Yi Zhao
Signed-off-by: Yi Zhao --- recipes-ids/samhain/samhain.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-ids/samhain/samhain.inc b/recipes-ids/samhain/samhain.inc index 97f5f2d..077e118 100644 --- a/recipes-ids/samhain/samhain.inc +++

Re: [yocto] non-existent task do_package_write_rpm error

2022-01-21 Thread Alexander Kanavin
Use TOOLCHAIN_HOST_TASK:append = " ..." in your image recipe. Alex On Fri, 21 Jan 2022 at 21:00, Winfried wrote: > Hi Alex, > > Thanks for the tip. When I add hardening-check to IMAGE_INSTALL the build > does indeed succeed. > But then the script is installed in the target sysroot of the SDK.

Re: [yocto] non-existent task do_package_write_rpm error

2022-01-21 Thread W. Dobbe
Hi Alex, Thanks for the tip. When I add hardening-check to IMAGE_INSTALL the build does indeed succeed. But then the script is installed in the target sysroot of the SDK. I would like to have it in the native (x86_64-pokysdk-linux) sysroot as it is a tool to use on the build server. Any idea

Re: [yocto] non-existent task do_package_write_rpm error

2022-01-21 Thread Alexander Kanavin
You need to drop the -native suffix when installing to target image or SDK. -native is only for the bitbake build itself. Alex On Fri, 21 Jan 2022 at 20:07, W. Dobbe wrote: > Hi, > > I'm writing a recipe for package hardening-check >

[yocto] non-existent task do_package_write_rpm error

2022-01-21 Thread W. Dobbe
Hi, I'm writing a recipe for package hardening-check http://deb.debian.org/debian/pool/main/h/hardening-wrapper/ . This package builds with only a simple Makefile (that has no install target). The recipe only installs a script hardening-check in /usr/bin. I would like to include this script in

[yocto] [meta-hardening][PATCH] meta-hardening: Fix override syntax

2022-01-21 Thread Akshay Bhat
Commit 352e6498a missed updating the override syntax for the "harden" distro override. Fixes: 352e6498a ("meta-hardening: Convert to new override syntax") Signed-off-by: Akshay Bhat --- .../recipes-connectivity/openssh/openssh_%.bbappend | 2 +-

[yocto] [meta-tensorflow][PATCH] Update SRC_URI git default protocol

2022-01-21 Thread Changqing Li
From: Changqing Li Signed-off-by: Changqing Li --- recipes-framework/tensorflow/keras_2.6.0.bb | 2 +- recipes-framework/tensorflow/tensorflow-estimator_2.6.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-framework/tensorflow/keras_2.6.0.bb

[linux-yocto] [kernel-cache][yocto-5.15][PATCH] cfg: fix x86_64 defconfig warnings

2022-01-21 Thread Naveen Saini
CONFIG_BLK_DEV_FD has dependeny on BLK_DEV, which is not enabled, as result throws warning. [NOTE]: 'CONFIG_BLK_DEV_FD' last val (m) and .config val (n) do not match Signed-off-by: Naveen Saini --- bsp/common-pc/common-pc-drivers.cfg | 1 + 1 file changed, 1 insertion(+) diff --git

[linux-yocto] [v5.15/standard/base][PATCH] x86_64_defconfig: Fix warnings

2022-01-21 Thread Naveen Saini
Configure CONFIG_EEEPC_LAPTOP & CONFIG_SND_SEQ_DUMMY as modules, because dependencies are configured as modules. [NOTE]: 'CONFIG_EEEPC_LAPTOP' last val (y) and .config val (m) do not match [NOTE]: 'CONFIG_SND_SEQ_DUMMY' last val (y) and .config val (m) do not match Added dependency