Adding support for new arches

Adding support for new architectures such as:
- 64-bit LoongArch
- 64-bit RISC-V

Signed-off-by: Alexander Burmatov <thatman@altlinux.org>
This commit is contained in:
Alexander Burmatov 2024-11-05 14:34:10 +03:00 committed by Alexander Stepchenko
parent 3fa420bac3
commit ef3f927a9d

View File

@ -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'
}
];