diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-12 12:23:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-04 06:10:57 +0200 |
commit | 81b23d75d873cbabc086729022a4b9b4f3d22a66 (patch) | |
tree | d083968e8555afbee843a834e63de80e4419a076 /upload-os | |
parent | a22c237897a5fee1e32b52251d5a324248dc41f8 (diff) |
Add support for aarch64
Diffstat (limited to 'upload-os')
-rwxr-xr-x | upload-os | 24 |
1 files changed, 22 insertions, 2 deletions
@@ -5,7 +5,7 @@ # If the tftp server host is not specified, then build@build-cache is # assumed. The images are uploaded to /var/lib/tftpboot/buildos-devel/. # -usage="usage: $0 [<user>@<host>]" +usage="usage: $0 [-a <arch>] [<user>@<host>]" owd="$(pwd)" trap "{ cd '$owd'; exit 1; }" ERR @@ -14,6 +14,26 @@ set -o errtrace # Trap in functions. function info () { echo "$*" 1>&2; } function error () { info "$*"; exit 1; } +arch= + +while [ "$#" -gt 0 ]; do + case "$1" in + -a) + shift + arch="$1" + shift + break + ;; + *) + break + ;; + esac +done + +if [ -z "$arch" ]; then + arch="$(uname -m)" +fi + if [ -z "$1" ]; then host="build@build-cache" else @@ -25,5 +45,5 @@ fi # is a bit more disk space used to temporarily hold copies. # rsync -v --progress -lpt -c --copy-unsafe-links --delay-updates \ - buildos-image buildos-initrd buildos-buildid \ + "buildos-image-$arch" "buildos-initrd-$arch" "buildos-buildid-$arch" \ $host:/var/lib/tftpboot/buildos-devel/ |