Added support for IBM z Systems architecture (s390x)

This commit is contained in:
gajju26
2015-11-02 15:59:24 +05:30
parent 809f4e1bc3
commit 94093d9cbc
4 changed files with 16 additions and 5 deletions

View File

@@ -94,9 +94,11 @@ elif [[ "${machine}" == "i686" ]]; then
arch="386"
elif [[ "${machine}" == "arm*" ]]; then
arch="arm"
elif [[ "${machine}" == "s390x*" ]]; then
arch="s390x"
else
echo "Unknown, unsupported architecture (${machine})."
echo "Supported architectures x86_64, i686, arm*"
echo "Supported architectures x86_64, i686, arm, s390x."
echo "Bailing out."
exit 3
fi