From 9b71b933f382d0708a7106704b69dce3ae325417 Mon Sep 17 00:00:00 2001 From: Alexander Burmatov Date: Tue, 5 Nov 2024 14:34:10 +0300 Subject: [PATCH] Adding support for new arches Adding support for new architectures such as: - 64-bit LoongArch - 64-bit RISC-V Signed-off-by: Alexander Burmatov --- src/utilities/filterConstants.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/utilities/filterConstants.js b/src/utilities/filterConstants.js index 25d0501e..c9c8c373 100644 --- a/src/utilities/filterConstants.js +++ b/src/utilities/filterConstants.js @@ -66,6 +66,16 @@ const archFilters = [ label: 'amd64', value: 'amd64', tooltip: '64-bit x86' + }, + { + label: 'loong64', + value: 'loong64', + tooltip: '64-bit LoongArch' + }, + { + label: 'riscv64', + value: 'riscv64', + tooltip: '64-bit RISC-V' } ];