distro/rhel90: enable s390x for cs9

CentOS Stream 9 supports s390x.
This commit is contained in:
Achilleas Koutsou 2022-01-04 17:26:43 +01:00 committed by Tom Gundersen
parent 16f6864d58
commit 0ec9dcbc63

View file

@ -1277,10 +1277,7 @@ func newDistro(distroName string) distro.Distro {
// add ec2 image types to RHEL distro only
x86_64.addImageTypes(ec2ImgTypeX86_64, ec2HaImgTypeX86_64, ec2SapImgTypeX86_64)
aarch64.addImageTypes(ec2ImgTypeAarch64)
// add s390x to RHEL distro only
rd.addArches(s390x)
}
rd.addArches(x86_64, aarch64, ppc64le)
rd.addArches(x86_64, aarch64, ppc64le, s390x)
return &rd
}