archboot/usr/bin/archboot-aarch64-release.sh

14 lines
370 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# created by Tobias Powalowski <tpowa@archlinux.org>
2022-02-09 14:46:27 +01:00
_ARCH="aarch64"
_ARCHBOOT="archboot-arm"
2022-03-21 22:32:56 +01:00
. /usr/lib/archboot/common.sh
. /usr/lib/archboot/release.sh
[[ -z "${1}" ]] && _usage
_root_check
echo "Start release creation in $1 ..."
2022-02-09 15:01:59 +01:00
_create_iso "$@" || exit 1
2022-02-09 21:32:54 +01:00
_create_boot || exit 1
2022-02-09 15:01:59 +01:00
_create_cksum || exit 1
2022-01-24 09:56:00 +01:00
echo "Finished release creation in ${1} ."