summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wizard/index.php10
1 files 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("<li><b>$arch</b> is not planed for now</li><br />");
+ $err =true;
+
+} else if ($arch == 'aarch64') {
// printf("<li><b>aarch64</b> support is a work in progress, some packages are not yet available, see <a href='%s'>issue #214</a></li><br />",
// 'https://github.com/remicollet/remirepo/issues/214');