Compare commits

...

3 Commits

Author SHA1 Message Date
dervomsee
dc0f0a095b
Merge 0211a952eacc82c77c79da2149921998e022cf4e into a5b073d070cbdcd9f66a7cf9e2ff7d8479aeb1ab 2025-02-18 20:01:33 +03:00
dervomsee
0211a952ea
correct indention in install.sh 2025-01-08 08:10:52 +01:00
dervomsee
f3161d0c05
add riscv64 to install.sh 2025-01-05 22:08:45 +01:00

View File

@ -254,6 +254,9 @@ set_cpu() {
cpu="${cpu}_softfloat"
;;
'riscv64')
cpu='riscv64'
;;
*)
error_exit "unsupported cpu type: $cpu"
;;
@ -262,7 +265,7 @@ set_cpu() {
# Validate.
case "$cpu" in
'amd64' | '386' | 'armv5' | 'armv6' | 'armv7' | 'arm64')
'amd64' | '386' | 'armv5' | 'armv6' | 'armv7' | 'arm64' | 'riscv64')
# All right, go on.
;;
'mips64le_softfloat' | 'mips64_softfloat' | 'mipsle_softfloat' | 'mips_softfloat')