Skip to content

Commit

Permalink
Merge pull request #10 from slhck/add-aarch64
Browse files Browse the repository at this point in the history
add aarch64 architecture
  • Loading branch information
adyanth authored Sep 2, 2021
2 parents c9c45d5 + b1e1208 commit 9e7bd6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions usr/bin/tailscale
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ if [ ! -f /tmp/tailscale ]; then
endianness=`echo -n I | hexdump -o | awk '{ print (substr($2,6,1)=="1") ? "le" : ""; exit }'`
elif [ "$arch" == "armv7l" ]; then
arch=arm
elif [ "$arch" == "aarch64" ]; then
arch=arm64
fi

tailscale_version="1.14.0"
Expand Down
2 changes: 2 additions & 0 deletions usr/bin/tailscaled
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ if [ ! -f /tmp/tailscaled ]; then
endianness=`echo -n I | hexdump -o | awk '{ print (substr($2,6,1)=="1") ? "le" : ""; exit }'`
elif [ "$arch" == "armv7l" ]; then
arch=arm
elif [ "$arch" == "aarch64" ]; then
arch=arm64
fi

tailscale_version="1.14.0"
Expand Down

0 comments on commit 9e7bd6f

Please sign in to comment.