#!/bin/bash # Batch creation of NextCloudPi Armbian based images # # Copyleft 2018 by Ignacio Nunez Hernanz # GPL licensed (see end of file) * Use at your own risk! # # Usage: ./build-SD-armbian.sh [] # set -ex source build/buildlib.sh #CLEAN=0 # Pass this envvar to avoid cleaning download cache BOARD="$1" BNAME="${2:-$1}" NCPCFG=etc/ncp.cfg echo -e "\e[1m\n[ Build NCP ${BNAME} ]\e[0m" IMG="${IMG:-NextcloudPi_${BNAME}_$( date "+%m-%d-%y" ).img}" IMG=tmp/"$IMG" TAR=output/"$( basename "$IMG" .img ).tar.bz2" test -f "$TAR" && { echo "$TAR already exists. Skipping... "; exit 0; } source etc/library.sh # sets RELEASE prepare_dirs # tmp cache output # get latest armbian [[ -d armbian ]] || { git clone --depth 1 --branch "$(cat "$(dirname "${0}")/armbian/armbian_version")" https://github.com/armbian/build armbian } #( cd armbian && git pull --ff-only --tags && git checkout v23.02 ) #sed -i -e '/export rootfs_size=/s/du -sm/du --apparent-size -sm/' armbian/lib/functions/image/partitioning.sh #sed -i -e '/export rootfs_size_mib=/s/du -sm/du --apparent-size -sm/' armbian/lib/functions/main/rootfs-image.sh #sed -i -e 's/du /du --apparent-size /' armbian/lib/functions/image/rootfs-to-image.sh # add NCP modifications mkdir -p armbian/userpatches armbian/userpatches/overlay rm -f ncp-web/{wizard.cfg,ncp-web.cfg} cp build/armbian/armbian.sh armbian/userpatches/customize-image.sh rsync -Aax --delete --exclude-from .gitignore --exclude *.img --exclude *.bz2 . armbian/userpatches/overlay/ # GENERATE IMAGE CONF=armbian/userpatches/config-ncp.conf # default parameters cat > "$CONF" <> "$CONF" <> "$CONF" # build rm -rf armbian/output/images mkdir -p armbian/userpatches #sed -e '/docker.*run/s/-it//' armbian/config/templates/config-docker.conf > armbian/userpatches/config-docker.conf #docker pull "ghcr.io/armbian/build:$(cut -d"." -f1-2 < armbian/VERSION)-$(dpkg --print-architecture)" \ # || docker pull "ghcr.io/armbian/build:latest-$(dpkg --print-architecture)" export INCLUDE_HOME_DIR=yes armbian/compile.sh ncp rm "$CONF" # pack image [[ " $* " =~ " --pack " ]] && { mv armbian/output/images/Armbian*.img "$IMG" && pack_image "$IMG" "$TAR"; } exit 0 # test # TODO # upload #create_torrent "$TAR" #upload_ftp "$( basename "$TAR" .tar.bz2 )"