From 3d736ebcc932db615d86c02d5d0cca2e522e5e70 Mon Sep 17 00:00:00 2001 From: Anthony PERARD Date: Mon, 14 Aug 2023 16:59:05 +0100 Subject: [PATCH] ts-xen-install: remove "libc6-xen" package installation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit libc6-xen packaged have been removed from Debian Bookworm. Signed-off-by: Anthony PERARD Acked-by: Roger Pau Monné --- ts-xen-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts-xen-install b/ts-xen-install index bf55d4e..3a913fc 100755 --- a/ts-xen-install +++ b/ts-xen-install @@ -64,7 +64,7 @@ sub packages () { if ($ho->{Suite} !~ m/lenny|squeeze/) { target_install_packages($ho, qw(libfdt1)); } - if ($ho->{Arch} eq 'i386') { + if ($ho->{Arch} eq 'i386' && $ho->{Suite} =~ m/wheezy|jessie|stretch|buster/) { target_install_packages($ho, qw(libc6-xen)); } target_install_packages($ho, @{toolstack($ho)->{ExtraPackages}}) -- 2.39.5