Re: [yocto] #yocto systemd not able to start sshd after a reboot

2020-09-19 Thread Zoran
Interesting... Here is what I have on Fedora32: [root@fedora32-ssd system]# pwd /lib/systemd/system [root@fedora32-ssd system]# cat /lib/systemd/system/sshd.service [Unit] Description=OpenSSH server daemon Documentation=man:sshd(8) man:sshd_config(5) *After=network.target sshd-keygen.target*

Re: [yocto] #yocto systemd not able to start sshd after a reboot

2020-09-19 Thread srijan . nandi
Hello All, I finally got it to work!!! There was a sshd.socket file in /lib/systemd/system which had the following line in it. Conflicts=sshd.service I remove it and added the following two lines: After=network.target Before=sshd.service And that did the trick. Now sshd service starts on

[linux-yocto] [yocto-kernel-cache]: bcm-2xxx-rpi: enable config CONFIG_OF_OVERLAY

2020-09-19 Thread Meng Li
From: Limeng Hi Bruce, Could you please help to merge this patch into yocto-kernel-cache, branch is only yocto-5.4? diffstat info ad below: bcm-2xxx-rpi.cfg |1 + 1 file changed, 1 insertion(+) thanks, Limeng -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group.

[linux-yocto] [PATCH] bcm-2xxx-rpi: enable config CONFIG_OF_OVERLAY

2020-09-19 Thread Meng Li
From: Limeng Signed-off-by: Meng Li --- bsp/bcm-2xxx-rpi/bcm-2xxx-rpi.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/bcm-2xxx-rpi/bcm-2xxx-rpi.cfg b/bsp/bcm-2xxx-rpi/bcm-2xxx-rpi.cfg index 272d69af..a93fa896 100755 --- a/bsp/bcm-2xxx-rpi/bcm-2xxx-rpi.cfg +++

Re: [yocto] Yocto recipe for Tailscale #yocto #golang

2020-09-19 Thread Mike Thompson via lists.yoctoproject.org
Inheriting from go-mod didn't make any difference that I could tell. This is what I have so far for the Tailscale recipe.  I'm resolving dependencies with individual Bitbake files that pull in each dependency as I find them. - # tailscale_1.0.5.bb

Re: [yocto] Yocto recipe for Tailscale #yocto #golang

2020-09-19 Thread Khem Raj
On 9/18/20 4:46 PM, Mike Thompson via lists.yoctoproject.org wrote: OK, I'm making some progress a Bitbake recipe for the Tailscale client built using Go from various samples I found in the OpenEmbedded layers. However, I'm running into import issues during compilation and I'm hoping a person