Skip to content

Commit

Permalink
Adding support for new arches (project-zot#449)
Browse files Browse the repository at this point in the history
Adding support for new architectures such as:
- 64-bit LoongArch
- 64-bit RISC-V

Signed-off-by: Alexander Burmatov <[email protected]>
  • Loading branch information
Future998 authored Nov 15, 2024
1 parent 182ef55 commit 5a9533d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/utilities/filterConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
];

Expand Down

0 comments on commit 5a9533d

Please sign in to comment.