# Copyright (c) Authors: http://www.armbian.com/authors
#
# This file is licensed under the terms of the GNU General Public
# License version 2. This program is licensed "as is" without any
# warranty of any kind, whether express or implied.
# This file is a part of the Armbian build script
# https://github.com/armbian/build/
FORCEDRELEASE=$RELEASE
# when we want to build from certain start
#from=1
#stop=2
rm -rf /run/armbian
mkdir -p /run/armbian
RELEASE_LIST=("xenial" "jessie" "stretch" "bionic" "buster" "disco" )
BRANCH_LIST=("default" "next" "dev")
pack_upload ()
{
# pack into .7z and upload to server
# stage: init
display_alert "Signing and compressing" "Please wait!" "info"
local version="Armbian_${REVISION}_${BOARD^}_${DISTRIBUTION}_${RELEASE}_${BRANCH}_${VER/-$LINUXFAMILY/}"
local subdir="archive"
[[ $BUILD_DESKTOP == yes ]] && version=${version}_desktop
[[ $BETA == yes ]] && local subdir=nightly
local filename=$DESTIMG/${version}.7z
# stage: generate sha256sum.sha
cd $DESTIMG
sha256sum -b ${version}.img > sha256sum.sha
# stage: sign with PGP
if [[ -n $GPG_PASS ]]; then
echo $GPG_PASS | gpg --passphrase-fd 0 --armor --detach-sign --pinentry-mode loopback --batch --yes ${version}.img
fi
if [[ -n "${SEND_TO_SERVER}" ]]; then
# create remote directory structure
ssh ${SEND_TO_SERVER} "mkdir -p /var/www/dl.armbian.com/${BOARD}/{archive,nightly};";
# pack and move file to server under new process
nice -n 19 bash -c "\
7za a -t7z -bd -m0=lzma2 -mx=3 -mfb=64 -md=32m -ms=on $filename ${version}.img armbian.txt *.asc sha256sum.sha >/dev/null 2>&1 ; \
find . -type f -not -name '*.7z' -print0 | xargs -0 rm -- ; \
while ! rsync -arP $DESTIMG/. -e 'ssh -p 22' ${SEND_TO_SERVER}:/var/www/dl.armbian.com/${BOARD}/${subdir};do sleep 5;done; \
rm -r $DESTIMG" &
else
# pack and move file to debs subdirectory
nice -n 19 bash -c "\
7za a -t7z -bd -m0=lzma2 -mx=3 -mfb=64 -md=32m -ms=on $filename ${version}.img armbian.txt *.asc sha256sum.sha >/dev/null 2>&1 ; \
find . -type f -not -name '*.7z' -print0 | xargs -0 rm -- ; \
mv $filename $DEST/images ; rm -r $DESTIMG" &
fi
}
build_main ()
{
touch "/run/armbian/Armbian_${BOARD^}_${BRANCH}_${RELEASE}_${BUILD_DESKTOP}.pid";
source $SRC/lib/main.sh;
[[ $KERNEL_ONLY != yes ]] && pack_upload
rm "/run/armbian/Armbian_${BOARD^}_${BRANCH}_${RELEASE}_${BUILD_DESKTOP}.pid"
}
make_targets ()
{
if [[ -n $CLI_TARGET && -z $1 ]]; then
# RELEASES : BRANCHES
CLI_TARGET=($(tr ':' ' ' <<< "$CLI_TARGET"))
build_settings_target=($(tr ',' ' ' <<< "${CLI_TARGET[0]}"))
build_settings_branch=($(tr ',' ' ' <<< "${CLI_TARGET[1]}"))
[[ ${build_settings_target[0]} == "%" ]] && build_settings_target[0]="${RELEASE_LIST[@]}"
[[ ${build_settings_branch[0]} == "%" ]] && build_settings_branch[0]="${BRANCH_LIST[@]}"
for release in ${build_settings_target[@]}; do
for kernel in ${build_settings_branch[@]}; do
buildlist+=("$BOARD $kernel $release no")
done
done
fi
if [[ -n $DESKTOP_TARGET && -z $1 ]]; then
# RELEASES : BRANCHES
DESKTOP_TARGET=($(tr ':' ' ' <<< "$DESKTOP_TARGET"))
build_settings_target=($(tr ',' ' ' <<< "${DESKTOP_TARGET[0]}"))
build_settings_branch=($(tr ',' ' ' <<< "${DESKTOP_TARGET[1]}"))
[[ ${build_settings_target[0]} == "%" ]] && build_settings_target[0]="${RELEASE_LIST[@]}"
[[ ${build_settings_branch[0]} == "%" ]] && build_settings_branch[0]="${BRANCH_LIST[@]}"
for release in ${build_settings_target[@]}; do
for kernel in ${build_settings_branch[@]}; do
buildlist+=("$BOARD $kernel $release yes")
done
done
fi
if [[ -n $CLI_BETA_TARGET && -n $1 ]]; then
# RELEASES : BRANCHES
CLI_BETA_TARGET=($(tr ':' ' ' <<< "$CLI_BETA_TARGET"))
build_settings_target=($(tr ',' ' ' <<< "${CLI_BETA_TARGET[0]}"))
build_settings_branch=($(tr ',' ' ' <<< "${CLI_BETA_TARGET[1]}"))
[[ ${build_settings_target[0]} == "%" ]] && build_settings_target[0]="${RELEASE_LIST[@]}"
[[ ${build_settings_branch[0]} == "%" ]] && build_settings_branch[0]="${BRANCH_LIST[@]}"
for release in ${build_settings_target[@]}; do
for kernel in ${build_settings_branch[@]}; do
buildlist+=("$BOARD $kernel $release no")
done
done
fi
if [[ -n $DESKTOP_BETA_TARGET && -n $1 ]]; then
# RELEASES : BRANCHES
DESKTOP_BETA_TARGET=($(tr ':' ' ' <<< "$DESKTOP_BETA_TARGET"))
build_settings_target=($(tr ',' ' ' <<< "${DESKTOP_BETA_TARGET[0]}"))
build_settings_branch=($(tr ',' ' ' <<< "${DESKTOP_BETA_TARGET[1]}"))
[[ ${build_settings_target[0]} == "%" ]] && build_settings_target[0]="${RELEASE_LIST[@]}"
[[ ${build_settings_branch[0]} == "%" ]] && build_settings_branch[0]="${BRANCH_LIST[@]}"
for release in ${build_settings_target[@]}; do
for kernel in ${build_settings_branch[@]}; do
buildlist+=("$BOARD $kernel $release yes")
done
done
fi
}
create_images_list()
{
#
# if parameter is true, than we build beta list
#
local naming="$SRC/config/boards/*.conf";
if [[ "$EXPERT" == "yes" ]]; then naming=$naming" $SRC/config/boards/*.wip"; fi
if [[ -n $REBUILD_IMAGES ]]; then naming=$naming" $SRC/config/boards/*.csc"; REBUILD_IMAGES=$REBUILD_IMAGES","; fi
for board in $naming; do
BOARD=$(basename $board | cut -d'.' -f1)
local file="${SRC}/config/boards/${BOARD}"
if [[ -f $file".conf" ]]; then source $file".conf"; fi
if [[ -f $file".wip" ]]; then source $file".wip"; fi
if [[ -f $file".csc" ]]; then source $file".csc"; fi
if [[ -f $file".tvb" ]]; then source $file".tvb"; fi
# beta targets are the same as stable. To build the same set beta set as future stable.
if [[ "$MERGETARGETS" == "yes" ]]; then
CLI_BETA_TARGET=$CLI_TARGET
DESKTOP_BETA_TARGET=$DESKTOP_TARGET
fi
if [[ -z $REBUILD_IMAGES ]]; then
make_targets $1
elif [[ $REBUILD_IMAGES == *"$BOARD,"* ]]; then
make_targets $1
fi
unset CLI_TARGET CLI_BRANCH DESKTOP_TARGET DESKTOP_BRANCH KERNEL_TARGET CLI_BETA_TARGET DESKTOP_BETA_TARGET
done
}
create_kernels_list()
{
local naming="$SRC/config/boards/*.conf";
if [[ "$EXPERT" == "yes" ]]; then naming=$naming" $SRC/config/boards/*.wip"; fi
if [[ -n $REBUILD_IMAGES ]]; then naming=$naming" $SRC/config/boards/*.csc"; fi
for board in $naming; do
BOARD=$(basename $board | cut -d'.' -f1)
local file="${SRC}/config/boards/${BOARD}"
if [[ -f $file".conf" ]]; then source $file".conf"; fi
if [[ -f $file".wip" ]]; then source $file".wip"; fi
if [[ -f $file".csc" ]]; then source $file".csc"; fi
if [[ -f $file".tvb" ]]; then source $file".tvb"; fi
if [[ -n $KERNEL_TARGET ]]; then
for kernel in $(tr ',' ' ' <<< $KERNEL_TARGET); do
buildlist+=("$BOARD $kernel")
done
fi
unset KERNEL_TARGET
done
}
buildlist=()
htmlicons ()
{
[[ ${1^^} == YES ]] && echo ""
[[ ${1^^} == NO ]] && echo "
"
[[ ${1^^} == NT ]] && echo "
"
[[ ${1^^} == NA ]] && echo "
"
}
if [[ $KERNEL_ONLY == yes ]]; then
create_kernels_list
printf "%-3s %-20s %-10s %-10s %-10s\n" \# BOARD BRANCH
REPORT="|# |Board|Branch|U-boot|Kernel version| Network | Wireless | HDMI | USB| Armbianmonitor |"
REPORTHTML="