aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@alpinelinux.org>2018-03-08 10:21:35 +0000
committerCarlo Landmeter <clandmeter@alpinelinux.org>2018-03-08 10:21:35 +0000
commitc7da77d3c8cc19388e110ad30eaeb8822ae3a129 (patch)
treef4086c2c5431774456c7377bb750de950437fb0d
parent999c4413f6a49be96d79166961dc9dd1228e7fcd (diff)
downloadalpine-netboot-c7da77d3c8cc19388e110ad30eaeb8822ae3a129.tar.bz2
alpine-netboot-c7da77d3c8cc19388e110ad30eaeb8822ae3a129.tar.xz
add aarch64 images
-rw-r--r--README.md2
-rwxr-xr-xupdate-netboot.sh4
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index e1f356a..a0d277e 100644
--- a/README.md
+++ b/README.md
@@ -27,9 +27,11 @@ Current available images are:
* **edge**
* [x86](images/edge/x86)
* [x86_64](images/edge/x86_64)
+ * [aarch64](images/edge/aarch64)
* **latest-stable**
* [x86](images/latest-stable/x86)
* [x86_64](images/latest-stable/x86_64)
+ * [aarch64](images/latest-stable/aarch64)
## Signed images
diff --git a/update-netboot.sh b/update-netboot.sh
index e72c065..99ff659 100755
--- a/update-netboot.sh
+++ b/update-netboot.sh
@@ -2,7 +2,7 @@
REPO="http://dl-cdn.alpinelinux.org/alpine"
BRANCHES="edge latest-stable"
-ARCHS="x86 x86_64"
+ARCHS="x86 x86_64 aarch64"
IMGDIR="/var/www/localhost/htdocs/images"
# CA Settings
@@ -80,7 +80,7 @@ for branch in $BRANCHES; do
if ! compare_files $tmpfile "$CACHE_DIR"/$branch-$arch.lst; then
echo "Dependencies updated for: $branch/$arch"
./mknetboot.sh --release "$branch" --arch "$arch" --outdir "$tmpdir"
- (cd "$tmpdir" && sha512sum * > alpine-netboot-$branch-$arch.sha512)
+ (cd "$tmpdir" && sha512sum * > alpine-netboot-$branch-$arch.sha512 || true)
sign_images "$tmpdir"
rm -rf "$IMGDIR"/$branch/$arch
mv "$tmpdir" "$IMGDIR"/$branch/$arch