diff mbox series

[1/6] buildman: Fetch 12.2.0 toolchains by default

Message ID 20221122173158.2231821-1-trini@konsulko.com
State Accepted
Commit 83e37a834525594e26067021f7df298662906f04
Delegated to: Tom Rini
Headers show
Series [1/6] buildman: Fetch 12.2.0 toolchains by default | expand

Commit Message

Tom Rini Nov. 22, 2022, 5:31 p.m. UTC
Update the toolchain list to be first 12.2.0 and second 11.1.0 and
that's it.

Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 tools/buildman/toolchain.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Nov. 23, 2022, 2:09 a.m. UTC | #1
On Tue, 22 Nov 2022 at 10:32, Tom Rini <trini@konsulko.com> wrote:
>
> Update the toolchain list to be first 12.2.0 and second 11.1.0 and
> that's it.
>
> Cc: Simon Glass <sjg@chromium.org>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  tools/buildman/toolchain.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini Dec. 7, 2022, 2:11 p.m. UTC | #2
On Tue, 22 Nov 2022 12:31:53 -0500, Tom Rini wrote:

> Update the toolchain list to be first 12.2.0 and second 11.1.0 and
> that's it.
> 
> 

Applied to u-boot/next, thanks!
diff mbox series

Patch

diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py
index fea40ba2151a..38b0dea8c709 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)