From: Tom Rini Date: Tue, 22 Nov 2022 17:31:53 +0000 (-0500) Subject: buildman: Fetch 12.2.0 toolchains by default X-Git-Tag: v2023.07~207^2~13^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83e37a834525594e26067021f7df298662906f04;p=platform%2Fkernel%2Fu-boot.git buildman: Fetch 12.2.0 toolchains by default Update the toolchain list to be first 12.2.0 and second 11.1.0 and that's it. Cc: Simon Glass Signed-off-by: Tom Rini Reviewed-by: Simon Glass --- diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index fea40ba..38b0dea 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -498,7 +498,7 @@ class Toolchains: if arch == 'aarch64': arch = 'arm64' base = 'https://www.kernel.org/pub/tools/crosstool/files/bin' - versions = ['11.1.0', '9.2.0', '7.3.0', '6.4.0', '4.9.4'] + versions = ['12.2.0', '11.1.0'] links = [] for version in versions: url = '%s/%s/%s/' % (base, arch, version)