On Fri, Jul 3, 2026 at 1:14 PM Remi Duraffort remi.duraffort@linaro.org wrote:
Hi folks,
The 2026.06 tag has been pushed to master on gitlab.com/lava/lava. .deb packages have been built in GitLab CI and are published at
https://apt.lavasoftware.org/release
Docker images for amd64 and arm64 have been built in GitLab CI and are available from
and
https://hub.docker.com/u/lavasoftware
Changes in this release
# Device-types
## New device-types
- lenovo-500e-gen5-rev3-nissa
- imx937-frdm
- imx941-19x19-lpddr4-evk
- imx942-19x19-lpddr4-evk
- tegra234-3737-0000+3701-0000
- devices deriving from the new `base-qdl` template (including qcs6490-rb3gen2, which now supports minimal, u-boot and fastboot boot on top of qdl flashing)
I think the rest of QDL based devices somehow slipped through the cracks. Here is a full list: - glymur-crd - hamoa-iot-evk - kaanapali-mtp - lemans-evk (RB8) - monaco-evk (RB4) - monaco-ride - qcs5430-rb3gen2-lite - qcs615-ride - qcs9100-ride - qrb2210-arduino-imola (Arduino UnoQ) - qrb2210-rb1
## Bug fixes
- **lava-test-runner**: use KMSG in the runner when the test definition uses it, so the `EXIT` signal cannot arrive before `ENDRUN` and cause a run to be wrongly marked as failed.
- **Overlay path**: `CompressOverlay` now stores the overlay under the full `lava_test_results_dir` instead of just its basename, fixing a path mismatch when the variable is overridden in the context.
This is a potentially breaking change. An example change for transfer_overlay would look like this.
Before:
context: lava_test_results_dir: "/home/fio/lava-%s" ... - boot ... transfer_overlay: download_command: cd /tmp ; wget unpack_command: tar -C /home/fio -xzmf
After:
context: lava_test_results_dir: "/home/fio/lava-%s" ... - boot ... transfer_overlay: download_command: cd /tmp ; wget unpack_command: tar -C / -xzmf
Best Regards, Milosz