Skip to content

Commit c35398c

Browse files
authored
Merge pull request #273 from Dasharo/develop
DTS v2.6.1 release.
2 parents 51bf73a + 45fc4b1 commit c35398c

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44

55
The 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

meta-dts-distro/conf/distro/dts-distro.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DISTRO = "dts-distro"
44

55
# distro name
66
DISTRO_NAME = "Dasharo Tools Suite"
7-
DISTRO_VERSION = "2.6.0"
7+
DISTRO_VERSION = "2.6.1"
88
SDK_VENDOR = "-dtssdk"
99

1010
MAINTAINER = "3mdeb Sp. z o. o. <contact@3mdeb.com>"

meta-dts-distro/recipes-dts/dts-scripts/dts-scripts_git.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSES/Apache-2.0.txt;md5=c846ebb396f8b174b10ded477
88
PV = "0.1+git${SRCPV}"
99

1010
SRC_URI = "git://github.com/Dasharo/dts-scripts;protocol=https;branch=main"
11-
SRCREV = "12e417bbc781ba5e180eba26ef574298ce2b7156"
11+
SRCREV = "a230c496e2566c37a3808ba6bb44c3e5f626edcd"
1212

1313
S = "${WORKDIR}/git"
1414

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bootloader --timeout=0 --append=" rootwait"
1+
bootloader --timeout=0 --append=" rootwait console=ttyUSB0"
22

33
part /boot --source bootimg-biosplusefi --sourceparams="loader=grub-efi" --ondisk sda --label dts-boot --align 1024 --use-uuid --active --system-id 0xef
44
part / --source rootfs --fstype=ext4 --ondisk sda --label dts-root --align 1024 --use-uuid --fixed-size 1024

scripts/generate-ipxe-menu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ set path_initrd \${dts_prefix}/dts-base-image-\${dts_version}.cpio.gz
3636
imgfetch --name file_kernel \${path_kernel}
3737
imgfetch --name file_initrd \${path_initrd}
3838
39-
kernel file_kernel initrd=file_initrd
39+
kernel file_kernel initrd=file_initrd console=ttyUSB0
4040
boot
4141
EOF

0 commit comments

Comments
 (0)