Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-26 Thread Alexander Kanavin via lists.yoctoproject.org
Only the tips I already gave you. You did not actually follow the tip about checking packages-split/, so please do so. Alex On Wed, 26 Feb 2025 at 07:21, Daniel Kampert wrote: > > Hi Alex, > > I´ve checked several files for informations. > > 1. log.do_rootfs: OpenSSH is added but I can´t see any

Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-26 Thread Daniel Kampert
Hi Alex, I´ve checked "run.do_install" and the installation command is available: install -d .../build/tmp/work/aarch64-tdx-linux/openssh/8.2p1-r0/image/home/root/.ssh install -m 0600 .../build/keys/ssh/dev/id_hannah_ed25519.pub .../build/tmp/work/aarch64-tdx-linux/openssh/8.2p1-r0/image/home

Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-25 Thread Daniel Kampert
Hi Alex, I´ve put the bbappend file in "recipes-connectivity" in my meta-layer meta-layer recipes-connectivity openssh openssh_%.bbappend I´ve also figured out that the IPK contains the authorized_keys file, so I started a new build. Maybe my build was messed up. > Alex Kiernan

Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-25 Thread Daniel Kampert
Hi Alex, I´ve checked several files for informations. 1. log.do_rootfs: OpenSSH is added but I can´t see anything about my modifications 2. files-in-package.txt for aarch64-tdx-linux openssh gives me the following output drwxr-xr-x root root 4096 ./home drwx-- root

Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-25 Thread Alex Kiernan via lists.yoctoproject.org
Where did you put your bbappend? If it's alongside the openssh recipe in core then it won't be parsed as the pattern there doesn't include *.bbappend: https://git.openembedded.org/openembedded-core/tree/meta/conf/layer.conf?h=dunfell#n4 On Wed, 26 Feb 2025, 06:21 Daniel Kampert via lists.yoctopro

Re: [yocto] Yocto Dunfell - Modify OpenSSH configuration

2025-02-25 Thread Alexander Kanavin via lists.yoctoproject.org
Either the needed changes aren't being packaged correctly (check ${WORKDIR}/packages-splt for openssh recipe), or the needed package isn't being installed into the image (check ${WORKDIR}/temp/log.do_rootfs for the image). Alex On Tue, 25 Feb 2025 at 16:06, Daniel Kampert via lists.yoctoproject.o