From aec17cf87ae215606bf0407bc35422d05b92bec7 Mon Sep 17 00:00:00 2001 From: chiichen Date: Thu, 10 Apr 2025 13:04:32 +0800 Subject: [PATCH] feat: support riscv64 --- quick_start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quick_start.sh b/quick_start.sh index a8ad519..5070248 100644 --- a/quick_start.sh +++ b/quick_start.sh @@ -11,6 +11,8 @@ elif [[ $osCheck =~ 'ppc64le' ]]; then architecture="ppc64le" elif [[ $osCheck =~ 's390x' ]]; then architecture="s390x" +elif [[ $osCheck =~ 'riscv64' ]]; then + architecture="riscv64" else echo "The system architecture is not currently supported. Please refer to the official documentation to select a supported system." exit 1