From: Tom Rini <trini@konsulko.com>
Date: Tue, 5 Oct 2021 16:20:36 +0000 (-0400)
Subject: buildman: Add gcc-11.1.0 to the directory list
X-Git-Tag: v2025.01-rc5-pxa1908~1671^2~15
X-Git-Url: http://git.dujemihanovic.xyz/html/static/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=f7832ee552b6a54f2bcbde87ff205147930035b8;p=u-boot.git

buildman: Add gcc-11.1.0 to the directory list

While CI has been using gcc-11.1.0 for a long time, we have not updated
buildman to match.  Correct this omission.

Signed-off-by: Tom Rini <trini@konsulko.com>
---

diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py
index fd137f7300..4e2471f3e3 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 = ['9.2.0', '7.3.0', '6.4.0', '4.9.4']
+        versions = ['11.1.0', '9.2.0', '7.3.0', '6.4.0', '4.9.4']
         links = []
         for version in versions:
             url = '%s/%s/%s/' % (base, arch, version)