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-04-26 14:00:50 +0100
commitb8ea59d5950a0a1885b43130c6d9102bb1e161ff (patch)
tree78ae8713f05980a1764db18298c4aad69a3b45ce /scripts
parentcaa530a277fd67cb88a077dddcad4b60911cf332 (diff)
downloadpoky-b8ea59d5950a0a1885b43130c6d9102bb1e161ff.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: abd9bf4428e024f4fbcabd75235965769c03f2db) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.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):