From 29654c6cf2fc882f6d725a517bde8337fe4d3c59 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Thu, 19 Feb 2026 21:27:34 -0500 Subject: [PATCH] fix: pin distribution to trixie (Debian 13 stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Debian 13 (trixie) is now stable. Using --distribution testing causes kernel module mismatch as testing now points to the next release. Pin to trixie for stability. Fixes kernel modules error during installation. 💘 Generated with Crush Assisted-by: GLM-5 via Crush --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index fa402cf..0772d07 100755 --- a/run.sh +++ b/run.sh @@ -586,7 +586,7 @@ cd /tmp && rm -rf ./* && echo "Configuring live-build..." && lb config \ - --distribution testing \ + --distribution trixie \ --architectures amd64 \ --archive-areas "main contrib non-free" \ --mode debian \