From 815bda853ced3f261adda67b4272c21ef2f7fa9f Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 7 Jan 2021 10:31:36 +0100 Subject: [PATCH] functions.php: aarch64 support in download links --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 086b98f..16785fc 100644 --- a/functions.php +++ b/functions.php @@ -158,7 +158,7 @@ function openmamba_download_func( $atts ) { 'milestone' => 'devel', 'medium' => 'livedvd', 'multilang' => '0', - 'archs' => 'x86_64;i586;arm', // bitmask: 1=x86_64 2=i586 3=arm + 'archs' => 'x86_64;i586;arm;aarch64', // bitmask: 1=x86_64 2=i586 3=arm 'ext' => '.iso' ), $atts ); $milestone = $a['milestone']; @@ -172,7 +172,7 @@ function openmamba_download_func( $atts ) { $displaymilestone = "$milestone"; $suffixmilestone = "$milestone"; } - $archname = array("x86_64", "i586", "arm"); + $archname = array("x86_64", "aarch64", "i586", "arm"); $mediaprefix = '/var/ftp/pub/openmamba/media'; $mediafallbackprefix = '/var/ftp/pub/openmamba/media/milestone2'; $outputlang = get_bloginfo("language");