Re: [yocto] Cannot ssh into qemu guest

2024-03-12 Thread Jörg Sommer via lists . yoctoproject . org
On 09.03.24 19:58, Xylopyrographer via lists.yoctoproject.org wrote: > Thanks for the reply. > > Still a bit green with all this but from the QEMU VM, *sshd* is running > and port 22 is open. > > Checked by running: > *ps aux | grep sshd > *and > *netstat -plant | grep :22 > > *as well, I can

Re: [yocto] Using SBOM/spdx with DependencyTrack/CyclonDX

2024-03-04 Thread Jörg Sommer via lists . yoctoproject . org
Thanks for the hint about the timing. My script worked, but because of the required wait before VEX upload it showed bad and inconsistent results. Here is the new version. Regards, Jörg -- Navimatix GmbH Tatzendpromenade 2 07745 Jena T: 03641 - 327 99 0 F: 03641 - 526 306 M:

[yocto] Using SBOM/spdx with DependencyTrack/CyclonDX

2024-03-03 Thread Jörg Sommer via lists . yoctoproject . org
Hi, does anyone use DependencyTrack https://dependencytrack.org/ to analyse CVE vulnerabilities? I've created a script to convert the spdx.tar.zst to a CycloneDX JSON and upload this to DependencyTrack. But I'm having the problem that CVEs fixed in Yocto by patches are not reflected in the

Re: [yocto] How to build two images with different settings of a recipe in Yocto

2024-01-28 Thread Jörg Sommer via lists . yoctoproject . org
Thanks for your reply. It helps, but I see some issues with the ROOTFS_POSTPROCESS_COMMAND. For the config file this is a possible solution. But what can I do if I need code changes? SSH announced they'll disable DSA support by default in a few months and for all other images except one I

[yocto] How to build two images with different settings of a recipe in Yocto

2024-01-26 Thread Jörg Sommer via lists . yoctoproject . org
[I posted this question on Stackoverflow: https://stackoverflow.com/q/77871008/8452187] I have two images with the same distro and the same machine and each image should contain the same package, but build with different settings. For example, the config file sshd_config is part of the

Re: [meta-virtualization][kirkstone] packagegroup-container: require ipv6 for podman

2023-11-08 Thread Jörg Sommer via lists . yoctoproject . org
On 08.11.23 14:57, Bruce Ashfield wrote: > I'll do this as a cherry-pick, since when I apply this patch: That's fine. > remote: ## > remote: Invalid author Jörg Sommer via lists.yoctoproject.org > remote: ##

[meta-virtualization][kirkstone] packagegroup-container: require ipv6 for podman

2023-11-08 Thread Jörg Sommer via lists . yoctoproject . org
The recipe *podman* requires the distro feature *ipv6*. Using a distro without it causes the build of *packagegroup-container* fails, even if *packagegroup-podman* is not used: ERROR: Nothing RPROVIDES 'podman' (but

[yocto] Call bitbake while bitbake is running

2023-11-02 Thread Jörg Sommer via lists . yoctoproject . org
Hi, is it possible to run bitbake while bitbake is running? I'm starting `bitbake -c menuconfig virtual/kernel` and would like to call `diffconfig` while I'm doing configuration. The best would be from the other window of tmux. Is this possible? Kind regards Jörg Sommer -- Navimatix GmbH

[meta-virtualization][PATCH v2] packagegroup-container: require ipv6 for podman

2023-10-12 Thread Jörg Sommer via lists . yoctoproject . org
The recipe *podman* requires the distro feature *ipv6*. Using a distro without it causes the build of *packagegroup-container* fails, even if *packagegroup-podman* is not used: ERROR: Nothing RPROVIDES 'podman' (but

[meta-virtualization][PATCH] packagegroup-container: require ipv6 for podman

2023-10-11 Thread Jörg Sommer via lists . yoctoproject . org
The recipe *podman* requires *ipv6* in *DISTRO_FEATURES*, which causes the build of the whole recipe fail, even if packagegroup-podman is not used. Signed-off-by: Jörg Sommer --- recipes-core/packagegroups/packagegroup-container.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff