]> xenbits.xensource.com Git - osstest.git/commitdiff
ts-xen-install: remove "libc6-xen" package installation
authorAnthony PERARD <anthony.perard@citrix.com>
Mon, 14 Aug 2023 15:59:05 +0000 (16:59 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Thu, 28 Mar 2024 16:51:52 +0000 (16:51 +0000)
libc6-xen packaged have been removed from Debian Bookworm.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
ts-xen-install

index bf55d4e5c470cb54014dd2d8a31cd3e2b5611d76..3a913fce50035cf17493603a7e392c4a84414dcc 100755 (executable)
@@ -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}})