Browse Source

Changes for base version v2021.1.1

Michael Schwarz 2 years ago
parent
commit
f84ccbc5d0
1 changed files with 6 additions and 2 deletions
  1. 6 2
      build.sh

+ 6 - 2
build.sh

@@ -30,7 +30,7 @@
 . functions.sh
 
 ### static variables
-DEFAULT_BASE="v2020.2.2"
+DEFAULT_BASE="v2021.1.1"
 DEFAULT_BRANCH="experimental"
 MY_DIR=$(dirname $0)
 MY_DIR=$(readlink -f "${MY_DIR}")
@@ -224,9 +224,13 @@ progress "Building the firmware - please stand by!"
 pushd ${CODE_DIR} > /dev/null
 
 export GLUON_RELEASE="${VERSION}"
-[ "${AUTOUPDATER}" != "off" ] && export GLUON_BRANCH="${AUTOUPDATER}"
+if [ "${AUTOUPDATER}" != "off" ] ; then
+	export GLUON_AUTOUPDATER_BRANCH="${AUTOUPDATER}"
+	export GLUON_AUTOUPDATER_ENABLED=1
+fi
 
 for target in ${TARGETS} ; do
+	[[ "$EXCLUDE_TARGETS" =~ "$target" ]] && continue
 	# configure build environment for our current target
 	export GLUON_TARGET="${target}"