1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00

update arch values

This commit is contained in:
Darien Raymond 2017-11-08 21:33:41 +01:00
parent 2a96aaaf7b
commit 14bc183754
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -75,6 +75,14 @@ sysArch(){
VDIS="arm"
elif [[ "$ARCH" == *"armv8"* ]] || [[ "$ARCH" == "aarch64" ]]; then
VDIS="arm64"
elif [[ "$ARCH" == *"mips64le"* ]]; then
VDIS="mips64le"
elif [[ "$ARCH" == *"mips64"* ]]; then
VDIS="mips64"
elif [[ "$ARCH" == *"mipsle"* ]]; then
VDIS="mipsle"
elif [[ "$ARCH" == *"mips"* ]]; then
VDIS="mips"
fi
return 0
}