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 13:58:45 +0100 |
commit | abd9bf4428e024f4fbcabd75235965769c03f2db (patch) | |
tree | fcccd2d15adeffd02f88323fff6f42264bc6f00a /scripts/install-buildtools | |
parent | 88c1824468109d0f78d5fee7b71baa1f3944db7f (diff) | |
download | openembedded-core-contrib-abd9bf4428e024f4fbcabd75235965769c03f2db.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.
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/install-buildtools')
-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 9da364981e5..c6b3a1eed72 100755 --- a/scripts/install-buildtools +++ b/scripts/install-buildtools @@ -56,9 +56,9 @@ logger = scriptutils.logger_create(PROGNAME, stream=sys.stdout) DEFAULT_INSTALL_DIR = os.path.join(os.path.split(scripts_path)[0],'buildtools') DEFAULT_BASE_URL = 'http://downloads.yoctoproject.org/releases/yocto' -DEFAULT_RELEASE = 'yocto-3.1_M3' -DEFAULT_INSTALLER_VERSION = '3.0+snapshot' -DEFAULT_BUILDDATE = "20200315" +DEFAULT_RELEASE = 'yocto-3.1' +DEFAULT_INSTALLER_VERSION = '3.1' +DEFAULT_BUILDDATE = '' # Python version sanity check if not (sys.version_info.major == 3 and sys.version_info.minor >= 4): |