From 6f8aa6eadc142dd81a07275d86e3b59821436973 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Wed, 11 Mar 2026 21:17:38 +1000 Subject: [PATCH] build.func: remove arm64 support for focal, bullseye Legacy support removed since no cts use them anymore. --- misc/build.func | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/build.func b/misc/build.func index 1c3f5f78d..1bf45a69f 100644 --- a/misc/build.func +++ b/misc/build.func @@ -5024,14 +5024,14 @@ create_lxc_container() { case "$1" in debian) case "$2" in - 11 | 11.*) echo "bullseye" ;; 12 | 12.*) echo "bookworm" ;; - 13 | 13.*) echo "trixie" ;; *) echo "trixie" ;; + 12 | 12.*) echo "bookworm" ;; 13 | 13.*) echo "trixie" ;; + *) echo "trixie" ;; esac ;; alpine) echo "3.22" ;; ubuntu) case "$2" in - 20.04* | focal) echo "focal" ;; 24.04* | noble) echo "noble" ;; - 24.10* | oracular) echo "oracular" ;; *) echo "jammy" ;; + 24.04* | noble) echo "noble" ;; 24.10* | oracular) echo "oracular" ;; + *) echo "jammy" ;; esac ;; *) return 1 ;; esac