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

15 lines
373 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"
source /usr/lib/archboot/functions
source /usr/lib/archboot/release_functions
[[ -z "${1}" ]] && _usage
_root_check
echo "Start release creation in $1 ..."
2022-02-09 10:11:58 +01:00
_create_iso "$@"
_create_boot
_create_torrent
_create_cksum
2022-01-24 09:56:00 +01:00
echo "Finished release creation in ${1} ."