Bump with version due to some bugfix images upgrades, change targets, small changes to backend code

This commit is contained in:
Igor Pecovnik
2019-12-27 19:59:11 +01:00
parent 37a9af0c90
commit 2b3bcd1be6
3 changed files with 14 additions and 15 deletions

View File

@@ -1 +1 @@
19.11.4 19.11.5

View File

@@ -176,11 +176,11 @@ nanopct3plus legacy bionic minimal stable yes
# nanopct4 # nanopct4
nanopct4 legacy buster cli stable yes nanopct4 legacy buster cli stable yes
nanopct4 legacy buster minimal stable yes
nanopct4 legacy buster desktop stable yes nanopct4 legacy buster desktop stable yes
nanopct4 legacy bionic desktop stable yes nanopct4 legacy bionic desktop stable yes
nanopct4 current buster cli stable yes
nanopct4 current buster desktop stable yes nanopct4 current buster desktop stable yes
nanopct4 dev buster minimal beta yes nanopct4 current bionic cli stable yes
# nanopi-r1 # nanopi-r1
@@ -256,11 +256,11 @@ nanopim3 legacy bionic desktop stable yes
# nanopim4 # nanopim4
nanopim4 legacy buster cli stable yes nanopim4 legacy buster cli stable yes
nanopim4 legacy buster minimal stable yes
nanopim4 legacy buster desktop stable yes nanopim4 legacy buster desktop stable yes
nanopim4 legacy bionic desktop stable yes nanopim4 legacy bionic desktop stable yes
nanopim4 current buster cli stable yes
nanopim4 current buster desktop stable yes nanopim4 current buster desktop stable yes
nanopim4 dev buster minimal beta yes nanopim4 current bionic cli stable yes
# nanopim4v2 # nanopim4v2
@@ -269,7 +269,7 @@ nanopim4v2 legacy buster desktop stable yes
nanopim4v2 legacy bionic desktop stable yes nanopim4v2 legacy bionic desktop stable yes
nanopim4v2 current buster cli stable yes nanopim4v2 current buster cli stable yes
nanopim4v2 current buster desktop stable yes nanopim4v2 current buster desktop stable yes
nanopim4v2 dev buster minimal beta yes nanopim4v2 current bionic cli stable yes
# nanopineo # nanopineo
@@ -299,10 +299,9 @@ nanopineo2black dev buster minimal beta yes
nanopineo4 legacy buster cli stable yes nanopineo4 legacy buster cli stable yes
nanopineo4 legacy buster minimal stable yes nanopineo4 legacy buster minimal stable yes
nanopineo4 legacy buster desktop stable yes
nanopineo4 legacy bionic desktop stable yes nanopineo4 legacy bionic desktop stable yes
nanopineo4 current buster desktop stable yes nanopineo4 current buster desktop stable yes
nanopineo4 dev buster minimal beta yes nanopineo4 current bionic cli stable yes
# nanopineocore2 # nanopineocore2
@@ -362,7 +361,7 @@ orangepi2 dev buster minimal beta yes
orangepi3 current buster cli stable yes orangepi3 current buster cli stable yes
orangepi3 current stretch cli stable yes orangepi3 current stretch cli stable yes
orangepi3 current bionic desktop stable yes orangepi3 current bionic desktop stable yes
orangepi3 dev buster minimal beta yes orangepi3 current bullseye cli stable yes
# orangepi-r1 # orangepi-r1
@@ -384,8 +383,8 @@ orangepi-rk3399 dev buster minimal beta yes
firefly-rk3399 legacy buster cli stable yes firefly-rk3399 legacy buster cli stable yes
firefly-rk3399 legacy bullseye cli stable yes firefly-rk3399 legacy bullseye cli stable yes
firefly-rk3399 legacy bionic desktop stable yes firefly-rk3399 legacy bionic desktop stable yes
firefly-rk3399 legacy buster desktop stable yes firefly-rk3399 current buster desktop stable yes
firefly-rk3399 dev buster minimal beta yes firefly-rk3399 current bionic minimal stable yes
# orangepilite # orangepilite

View File

@@ -33,11 +33,11 @@ mkdir -p /run/armbian
if [[ -f $USERPATCHES_PATH/targets.conf ]]; then if [[ -f $USERPATCHES_PATH/targets.conf ]]; then
display_alert "Adding user provided targets configuration" display_alert "Adding user provided targets configuration"
TARGETS="${USERPATCHES_PATH}/targets.conf" BUILD_TARGETS="${USERPATCHES_PATH}/targets.conf"
else else
TARGETS="${SRC}/config/targets.conf" BUILD_TARGETS="${SRC}/config/targets.conf"
fi fi
@@ -254,7 +254,7 @@ function build_all()
while : while :
do do
if [[ $(find /run/armbian/*.pid 2>/dev/null | wc -l) -le ${MULTITHREAD} ]]; then if [[ $(find /run/armbian/*.pid 2>/dev/null | wc -l) -le ${MULTITHREAD} || -z ${MULTITHREAD} ]]; then
break break
fi fi
sleep 5 sleep 5
@@ -299,7 +299,7 @@ function build_all()
fi fi
done < ${TARGETS} done < ${BUILD_TARGETS}
} }