summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2026-04-08 13:44:55 +0200
committerPaul Barker <paul@pbarker.dev>2026-05-04 13:57:33 +0100
commita53cae3de9f45417b97efc4c46c42e4c8ebdb939 (patch)
tree83cc40e3e99fef653b9b71baa8c2e03b6853251d
parentb614b7cbca865fd58100eee98f88a8a7783c168b (diff)
downloadpoky-scarthgap.tar.gz
poky: Fix CentOS Stream distro namesscarthgap
CentOS Stream 8 and 9 report as `centos-8/9`, not `centosstream-8.9`. On our stream9-vk-1 autobuilder worker: $ ( source /etc/os-release && echo $ID-$VERSION_ID ) centos-9 We don't have running CentOS Stream 8 workers anymore, but from a local docker container: $ docker run --rm -it quay.io/centos/centos:stream8 bash [root@c33732bb804a /]# cat /etc/os-release .... ID="centos" VERSION_ID="8" (From meta-yocto rev: 0845965f1d81d22d47dcf28c525c7463fafe5245) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
-rw-r--r--meta-poky/conf/distro/poky.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
index 2c2e7bedc8..177a637ed4 100644
--- a/meta-poky/conf/distro/poky.conf
+++ b/meta-poky/conf/distro/poky.conf
@@ -43,8 +43,8 @@ SANITY_TESTED_DISTROS ?= " \
43 fedora-39 \n \ 43 fedora-39 \n \
44 fedora-40 \n \ 44 fedora-40 \n \
45 fedora-41 \n \ 45 fedora-41 \n \
46 centosstream-8 \n \ 46 centos-8 \n \
47 centosstream-9 \n \ 47 centos-9 \n \
48 debian-11 \n \ 48 debian-11 \n \
49 debian-12 \n \ 49 debian-12 \n \
50 opensuseleap-15.4 \n \ 50 opensuseleap-15.4 \n \