From 5df11693cb1ccc50efc5b2d2ba0125a09ff6b299 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 17 May 2023 07:54:07 +0200 Subject: more unsupported arches --- wizard/index.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/wizard/index.php b/wizard/index.php index 2c4a3138..17cb49d3 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -78,8 +78,10 @@ $types = [ 'scl' => 'Multiple versions simultaneously', ]; $arches = [ - 'x86_64' => 'x86_64', + 'x86_64' => 'x86_64', 'aarch64' => 'aarch64', + 'ppc64le' => 'ppc64le', + 's390x' => 's390x', ]; $phpvers = [ // use false when only SCL @@ -229,7 +231,11 @@ if ($php && $os) { } } -if ($arch=='aarch64') { +if ($arch == 'ppc64le' || $arch == 's390x') { + printf("
  • $arch is not planed for now

  • "); + $err =true; + +} else if ($arch == 'aarch64') { // printf("
  • aarch64 support is a work in progress, some packages are not yet available, see issue #214

  • ", // 'https://github.com/remicollet/remirepo/issues/214'); -- cgit