File tree Expand file tree Collapse file tree 6 files changed +21
-5
lines changed
Expand file tree Collapse file tree 6 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ jobs:
116116 -v boot_dts_from_ipxe_shell:True \
117117 -v dts_config_ref:"${DTS_CONFIG_REF}" \
118118 -v dts_ipxe_link:http://${ip_addr}:4321/dts.ipxe 2>&1 \
119- | tee ${{ env.LOG_DIR }}/dts-tests.log | grep --line-buffered "| PASS |\|| FAIL |"
119+ | tee ${{ env.LOG_DIR }}/dts-tests.log | grep --line-buffered "| PASS |\|| FAIL |\|\[ WARN \] "
120120
121121 - name : Copy log
122122 shell : bash
Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## 2.6.1 - 2025-09-04
8+
9+ ### Added
10+ - Linux kernel command line now includes console=ttyUSB0 for improved serial
11+ access.
12+ - ** NovaCustom NUC BOX** is now officially supported!
13+ - ** Hardkernel ODROID H4 Dasharo (coreboot+UEFI) v0.9.1** update support added.
14+
15+
16+ ### Changed
17+ - End to end testing workflow now shows [ WARN ] lines when running without
18+ profiles. This will indicate, whether the test can be trusted or not.
19+ - DTS scripts now use proper platform mocking on QEMU for end to end testing,
20+ making the automated tests trustworthy.
21+
22+
723## 2.6.0 - 2025-08-06
824
925### Added
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ DISTRO = "dts-distro"
44
55# distro name
66DISTRO_NAME = "Dasharo Tools Suite"
7- DISTRO_VERSION = "2.6.0 "
7+ DISTRO_VERSION = "2.6.1 "
88SDK_VENDOR = "-dtssdk"
99
1010MAINTAINER = "3mdeb Sp. z o. o. <contact@3mdeb.com>"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSES/Apache-2.0.txt;md5=c846ebb396f8b174b10ded477
88PV = "0.1+git${SRCPV} "
99
1010SRC_URI = "git://github.com/Dasharo/dts-scripts;protocol=https;branch=main"
11- SRCREV = "12e417bbc781ba5e180eba26ef574298ce2b7156 "
11+ SRCREV = "a230c496e2566c37a3808ba6bb44c3e5f626edcd "
1212
1313S = "${WORKDIR} /git"
1414
Original file line number Diff line number Diff line change 1- bootloader --timeout=0 --append=" rootwait"
1+ bootloader --timeout=0 --append=" rootwait console=ttyUSB0 "
22
33part /boot --source bootimg-biosplusefi --sourceparams="loader=grub-efi" --ondisk sda --label dts-boot --align 1024 --use-uuid --active --system-id 0xef
44part / --source rootfs --fstype=ext4 --ondisk sda --label dts-root --align 1024 --use-uuid --fixed-size 1024
Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ set path_initrd \${dts_prefix}/dts-base-image-\${dts_version}.cpio.gz
3636imgfetch --name file_kernel \$ {path_kernel}
3737imgfetch --name file_initrd \$ {path_initrd}
3838
39- kernel file_kernel initrd=file_initrd
39+ kernel file_kernel initrd=file_initrd console=ttyUSB0
4040boot
4141EOF
You can’t perform that action at this time.
0 commit comments