diff options
author | Tom Rini | 2021-10-05 12:20:36 -0400 |
---|---|---|
committer | Simon Glass | 2021-10-21 12:50:48 -0600 |
commit | f7832ee552b6a54f2bcbde87ff205147930035b8 (patch) | |
tree | 1c2b845f0e611a20365554566d6918e2bc003af0 /tools | |
parent | e2d6a77a8fb0ea72eef5591648e90056ce4a75cd (diff) |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index fd137f7300e..4e2471f3e37 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) |