diff options
Diffstat (limited to 'wizard/index.php')
| -rw-r--r-- | wizard/index.php | 10 | 
1 files changed, 7 insertions, 3 deletions
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("<li><b>aarch64</b> for Fedora is not planed for now</li><br />");  		$err =true; -	} else if ($os && $ver < 9) { +	} else if ($os && $ver < 8) {  	    printf("<li><b>aarch64</b> for Enterprise Linux $ver is not planed for now</li><br />");  		$err =true; +	} else if ($os && $ver == 8) { +		$osmin['RHEL 8'] = $osmin['CentOS 8'] = $osminbase['RHEL 8'] = $osminbase['CentOS 8'] = '7.4'; + +	    printf("<li><b>aarch64</b> for Enterprise Linux $ver is a work in progress, some packages are not yet available</li><br />");  	}  } @@ -401,9 +405,9 @@ if ($php && $os && $type && !$err) {          $scl='php'.str_replace('.', '', $php);          if (version_compare($php, $osmax[$os], '>')) { -            printf("<li>Sorry, but PHP version greater than <b>%s</b> are not available for <b>%s</b>.</li><br />", $osmax[$os], $os); +            printf("<li>Sorry, but PHP version greater than <b>%s</b> are not available for <b>%s</b> (%s).</li><br />", $osmax[$os], $os, $arch);          } else if (version_compare($php, $osmin[$os], '<')) { -            printf("<li>Sorry, but PHP version older than <b>%s</b> are not available for <b>%s</b>.</li><br />", $osmin[$os], $os); +            printf("<li>Sorry, but PHP version older than <b>%s</b> are not available for <b>%s</b> (%s).</li><br />", $osmin[$os], $os, $arch);          } else {              if (!$phpvers[$php]) {                  printf("<li><b>WARNING</b>: PHP version <b>%s</b> is a <b>development</b> version, not ready for production.</li><br />", $php);  | 
