From e34ee80cd21d39ac46ecc7a1830119b9d5d96a29 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Tue, 26 Sep 2023 16:17:51 +0200 Subject: [PATCH] v8.23 - CI | DietPi-Build: Re-enable Trixie/Sid builds --- .build/images/dietpi-build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.build/images/dietpi-build b/.build/images/dietpi-build index 06020c20e1..c22cf2ab6c 100755 --- a/.build/images/dietpi-build +++ b/.build/images/dietpi-build @@ -207,8 +207,7 @@ fi (( $efi_size )) || [[ $boot_size -gt 0 && $boot_fstype == 'fat'* ]] && apackages+=('dosfstools') # Emulation support in case of incompatible architecture -# - TEMPORARY: Early exit for Trixie/Sid until systemd + QEMU incompatibility fix has been released: https://github.com/systemd/systemd/pull/28954 -(( ( $G_HW_ARCH < 10 && $G_HW_ARCH < $HW_ARCH ) || ( ( $G_HW_ARCH == 10 || $G_HW_ARCH == 11 ) && $G_HW_ARCH != $HW_ARCH ) )) && { apackages+=('qemu-user-static' 'binfmt-support'); (( $DISTRO == 8 )) && { G_DIETPI-NOTIFY 1 'systemd on Trixie/Sid does currently not support QEMU emulation, aborting ...'; exit 0; } } +(( ( $G_HW_ARCH < 10 && $G_HW_ARCH < $HW_ARCH ) || ( ( $G_HW_ARCH == 10 || $G_HW_ARCH == 11 ) && $G_HW_ARCH != $HW_ARCH ) )) && apackages+=('qemu-user-static' 'binfmt-support') # Virtual machine disk conversion [[ $VMTYPE && $VMTYPE != 'raw' ]] && apackages+=('qemu-utils')