From patchwork Mon Apr 6 12:36:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 237249 List-Id: U-Boot discussion From: bmeng.cn at gmail.com (Bin Meng) Date: Mon, 6 Apr 2020 05:36:04 -0700 Subject: [PATCH 2/3] buildman: Support fetching gcc 9.2.0 In-Reply-To: <1586176565-29951-1-git-send-email-bmeng.cn@gmail.com> References: <1586176565-29951-1-git-send-email-bmeng.cn@gmail.com> Message-ID: <1586176565-29951-3-git-send-email-bmeng.cn@gmail.com> This adds support to fetch gcc 9.2.0 toolchains. Signed-off-by: Bin Meng Reviewed-by: Tom Rini --- tools/buildman/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index 89c54d6..4456a80 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -490,7 +490,7 @@ class Toolchains: if arch == 'aarch64': arch = 'arm64' base = 'https://www.kernel.org/pub/tools/crosstool/files/bin' - versions = ['7.3.0', '6.4.0', '4.9.4'] + versions = ['9.2.0', '7.3.0', '6.4.0', '4.9.4'] links = [] for version in versions: url = '%s/%s/%s/' % (base, arch, version)