summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-10-05 19:20:36 +0300
committerSimon Glass <sjg@chromium.org>2021-10-21 21:50:48 +0300
commitf7832ee552b6a54f2bcbde87ff205147930035b8 (patch)
tree1c2b845f0e611a20365554566d6918e2bc003af0 /tools
parente2d6a77a8fb0ea72eef5591648e90056ce4a75cd (diff)
downloadu-boot-f7832ee552b6a54f2bcbde87ff205147930035b8.tar.xz
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>
Diffstat (limited to 'tools')
-rw-r--r--tools/buildman/toolchain.py2
1 files changed, 1 insertions, 1 deletions
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)