summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2020-04-21 15:25:08 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-05-07 13:03:30 +0100
commit1246049541633a89e34657657792eb72dab9b6b9 (patch)
tree519395f058bdc3aab984ab791bb65b7cbc210096 /scripts
parent9a21a490653d64f9cbce62443907db581407ebc1 (diff)
downloadpoky-1246049541633a89e34657657792eb72dab9b6b9.tar.gz
scripts/install-buildtools: bump to 3.1 release by default
By default, use the extended buildtools installer from the Yocto Project 3.1 "dunfell" release. (From OE-Core rev: f1d4da322d607a17de6d9c291562b5fd1128fbc6) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install-buildtools6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install-buildtools b/scripts/install-buildtools
index 9da364981e..c6b3a1eed7 100755
--- a/scripts/install-buildtools
+++ b/scripts/install-buildtools
@@ -56,9 +56,9 @@ logger = scriptutils.logger_create(PROGNAME, stream=sys.stdout)
56 56
57DEFAULT_INSTALL_DIR = os.path.join(os.path.split(scripts_path)[0],'buildtools') 57DEFAULT_INSTALL_DIR = os.path.join(os.path.split(scripts_path)[0],'buildtools')
58DEFAULT_BASE_URL = 'http://downloads.yoctoproject.org/releases/yocto' 58DEFAULT_BASE_URL = 'http://downloads.yoctoproject.org/releases/yocto'
59DEFAULT_RELEASE = 'yocto-3.1_M3' 59DEFAULT_RELEASE = 'yocto-3.1'
60DEFAULT_INSTALLER_VERSION = '3.0+snapshot' 60DEFAULT_INSTALLER_VERSION = '3.1'
61DEFAULT_BUILDDATE = "20200315" 61DEFAULT_BUILDDATE = ''
62 62
63# Python version sanity check 63# Python version sanity check
64if not (sys.version_info.major == 3 and sys.version_info.minor >= 4): 64if not (sys.version_info.major == 3 and sys.version_info.minor >= 4):