From c0aea85026321a4985fb2c9ce54f813b877fc5df Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 18 Sep 2023 09:01:36 +0200 Subject: EL-8 for aarch64 (WIP) --- wizard/index.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'wizard/index.php') diff --git a/wizard/index.php b/wizard/index.php index b968d59d..f806dadd 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -243,9 +243,13 @@ if ($arch == 'ppc64le' || $arch == 's390x') { printf("
  • aarch64 for Fedora is not planed for now

  • "); $err =true; - } else if ($os && $ver < 9) { + } else if ($os && $ver < 8) { printf("
  • aarch64 for Enterprise Linux $ver is not planed for now

  • "); $err =true; + } else if ($os && $ver == 8) { + $osmin['RHEL 8'] = $osmin['CentOS 8'] = $osminbase['RHEL 8'] = $osminbase['CentOS 8'] = '7.4'; + + printf("
  • aarch64 for Enterprise Linux $ver is a work in progress, some packages are not yet available

  • "); } } @@ -401,9 +405,9 @@ if ($php && $os && $type && !$err) { $scl='php'.str_replace('.', '', $php); if (version_compare($php, $osmax[$os], '>')) { - printf("
  • Sorry, but PHP version greater than %s are not available for %s.

  • ", $osmax[$os], $os); + printf("
  • Sorry, but PHP version greater than %s are not available for %s (%s).

  • ", $osmax[$os], $os, $arch); } else if (version_compare($php, $osmin[$os], '<')) { - printf("
  • Sorry, but PHP version older than %s are not available for %s.

  • ", $osmin[$os], $os); + printf("
  • Sorry, but PHP version older than %s are not available for %s (%s).

  • ", $osmin[$os], $os, $arch); } else { if (!$phpvers[$php]) { printf("
  • WARNING: PHP version %s is a development version, not ready for production.

  • ", $php); -- cgit