mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Bump with version due to some bugfix images upgrades, change targets, small changes to backend code
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user