diff options
author | Sven Gothel <[email protected]> | 2020-07-02 07:51:27 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-07-02 07:51:27 +0200 |
commit | 4812e71103203986dc11b175b847779a115fa7de (patch) | |
tree | b41f045e7c10fc0c8db0b51fddf5bab0002e23c4 | |
parent | d5e3eb91e6f35a00d349a9fb3c47985493cceab2 (diff) |
scripts/setup-machine-arch.sh: aarch64
Original commit by Xerxes RĂ„nby <[email protected]>
-rw-r--r-- | scripts/setup-machine-arch.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/setup-machine-arch.sh b/scripts/setup-machine-arch.sh index a51b55c2..df6c6444 100644 --- a/scripts/setup-machine-arch.sh +++ b/scripts/setup-machine-arch.sh @@ -15,6 +15,12 @@ case "$machine" in archabi="armhf" syslibdir="arm-linux-gnueabihf" ;; + "aarch64") + cpu="aarch64" + cpufamily="arm" + archabi="arm64" + syslibdir="aarch64-linux-gnu" + ;; "x86_64") cpu="x86_64" cpufamily="x86" |