Re: [yocto] [qa-build-notification] QA notification for completed autobuilder build (yocto-4.1.rc2)

2022-10-11 Thread Jing Hui Tham
Hi All, QA for yocto-4.1.rc2 is completed. This is the full report for this release: https://git.yoctoproject.org/cgit/cgit.cgi/yocto-testresults-contrib/tree/?h=intel-yocto-testresults === Summary No high milestone defects. No new issue found. Thanks, Jing Hui > -Original

Re: [yocto] [meta-zephyr][kirkstone][PATCH] nrf52840-mdk-usb-dongle.conf: Add new machine from makerdiary

2022-10-11 Thread Naveen Saini
Hi Philippe, nrf52840-mdk-usb-dongle board is not supported in Zephyr 3.0 [in Kirkstone]. It's available in Zephyr 3.1 onwards. https://github.com/zephyrproject-rtos/zephyr/commit/b94fe6315870f938d759076a57cd3311ab0a0c06 Error log: | -- Board: nrf52840_mdk_usb_dongle | No board named 'nrf52840_m

[yocto] Yocto Project Status 11 October 2022 (WW41)

2022-10-11 Thread Stephen Jolley
Current Dev Position: YP 4.1 M4 (In TSC Review) Next Deadline: 28th October 2022 YP 4.1 Release Next Team Meetings: * Bug Triage meeting Thursday October 13th 7:30 am PDT ( https://zoom.us/j/454367603?pwd=ZGxoa2ZXL3FkM3

[yocto] How to create symlink while installing binary in recipe?

2022-10-11 Thread Sourabh Hegde
Hello All, I have a simple recipe in which a binary is installed to /usr/bin/. Now, I want to establish a symlink to same binary also. I am using hardknott release do_install () { install -d ${D}${bindir}/ install -m 0755 ${WORKDIR}/test.sh ${D}${bindir}/test lnr ${D}/usr/bin/test ${D} /usr/bin/

Re: [yocto] How to create symlink while installing binary in recipe?

2022-10-11 Thread Khem Raj
On Tue, Oct 11, 2022 at 9:36 AM Sourabh Hegde wrote: > > Hello All, > > I have a simple recipe in which a binary is installed to /usr/bin/. Now, I > want to establish a symlink to same binary also. I am using hardknott release > > do_install () { > install -d ${D}${bindir}/ > install -m 0

[yocto] Dealing with go dependencies in recipes - native docker-compose

2022-10-11 Thread Konstantin Kletschke
Today I realized, that the docker-compose in the meta-virtualization layer is the old python3 based one and a native solution is available. I tried to make a recipe for it to get rid of python3 (no other packages uses it in our setup) and the current python3-docker-compose is broken: https://lore.

[yocto] # honister #systemd attempting to run script on boot...

2022-10-11 Thread Monsees, Steven C (US) via lists.yoctoproject.org
I am trying to make use of system to run a test script at boot... I can exercise my test_script/test_script.service manually using systemctl commands and it appears to work as expects. I created a recipe based on this, it builds clean (no errors/warnings), but it doesn't appear to set things up

Re: [yocto] Dealing with go dependencies in recipes - native docker-compose

2022-10-11 Thread Bruce Ashfield
On Tue, Oct 11, 2022 at 2:51 PM Konstantin Kletschke < konstantin.kletsc...@inside-m2m.de> wrote: > Today I realized, that the docker-compose in the meta-virtualization > layer is the old python3 based one and a native solution is available. I > tried to make a recipe for it to get rid of python3