diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2020-04-21 15:25:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-26 14:00:50 +0100 |
commit | b8ea59d5950a0a1885b43130c6d9102bb1e161ff (patch) | |
tree | 78ae8713f05980a1764db18298c4aad69a3b45ce | |
parent | caa530a277fd67cb88a077dddcad4b60911cf332 (diff) | |
download | poky-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>
-rwxr-xr-x | scripts/install-buildtools | 6 |
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 | ||
57 | DEFAULT_INSTALL_DIR = os.path.join(os.path.split(scripts_path)[0],'buildtools') | 57 | DEFAULT_INSTALL_DIR = os.path.join(os.path.split(scripts_path)[0],'buildtools') |
58 | DEFAULT_BASE_URL = 'http://downloads.yoctoproject.org/releases/yocto' | 58 | DEFAULT_BASE_URL = 'http://downloads.yoctoproject.org/releases/yocto' |
59 | DEFAULT_RELEASE = 'yocto-3.1_M3' | 59 | DEFAULT_RELEASE = 'yocto-3.1' |
60 | DEFAULT_INSTALLER_VERSION = '3.0+snapshot' | 60 | DEFAULT_INSTALLER_VERSION = '3.1' |
61 | DEFAULT_BUILDDATE = "20200315" | 61 | DEFAULT_BUILDDATE = '' |
62 | 62 | ||
63 | # Python version sanity check | 63 | # Python version sanity check |
64 | if not (sys.version_info.major == 3 and sys.version_info.minor >= 4): | 64 | if not (sys.version_info.major == 3 and sys.version_info.minor >= 4): |