All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] buildman: Enable buildman on aarch64 hosts
@ 2020-01-17  9:53 matthias.bgg at kernel.org
  2020-01-25  9:34 ` Matthias Brugger
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: matthias.bgg at kernel.org @ 2020-01-17  9:53 UTC (permalink / raw)
  To: u-boot

From: Matthias Brugger <mbrugger@suse.com>

At kernel.org aarch64 toolchains are published in folder
arm64. Fix the URL for that case, so that we can fetch
toolchains on aarch64 machines.

Signed-off-by: Matthias Brugger <mbrugger@suse.com>

---

 tools/buildman/toolchain.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py
index 4f39bfd0ce..89c54d688a 100644
--- a/tools/buildman/toolchain.py
+++ b/tools/buildman/toolchain.py
@@ -487,6 +487,8 @@ class Toolchains:
                 URL containing this toolchain, if avaialble, else None
         """
         arch = command.OutputOneLine('uname', '-m')
+        if arch == 'aarch64':
+            arch = 'arm64'
         base = 'https://www.kernel.org/pub/tools/crosstool/files/bin'
         versions = ['7.3.0', '6.4.0', '4.9.4']
         links = []
-- 
2.24.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-05 17:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-17  9:53 [PATCH] buildman: Enable buildman on aarch64 hosts matthias.bgg at kernel.org
2020-01-25  9:34 ` Matthias Brugger
2020-01-30  2:18 ` Simon Glass
2020-02-05 17:57 ` sjg at google.com

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.