Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 2 | # Copyright (c) 2012 The Chromium OS Authors. |
| 3 | # |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 4 | |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 5 | import re |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 6 | import glob |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 7 | from html.parser import HTMLParser |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 8 | import os |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 9 | import sys |
| 10 | import tempfile |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 11 | import urllib.request, urllib.error, urllib.parse |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 12 | |
Simon Glass | 0ede00f | 2020-04-17 18:09:02 -0600 | [diff] [blame] | 13 | from buildman import bsettings |
Simon Glass | 4583c00 | 2023-02-23 18:18:04 -0700 | [diff] [blame] | 14 | from u_boot_pylib import command |
| 15 | from u_boot_pylib import terminal |
| 16 | from u_boot_pylib import tools |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 17 | |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 18 | (PRIORITY_FULL_PREFIX, PRIORITY_PREFIX_GCC, PRIORITY_PREFIX_GCC_PATH, |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 19 | PRIORITY_CALC) = list(range(4)) |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 20 | |
Simon Glass | 57cb9d5 | 2019-12-05 15:59:14 -0700 | [diff] [blame] | 21 | (VAR_CROSS_COMPILE, VAR_PATH, VAR_ARCH, VAR_MAKE_ARGS) = range(4) |
| 22 | |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 23 | # Simple class to collect links from a page |
| 24 | class MyHTMLParser(HTMLParser): |
| 25 | def __init__(self, arch): |
| 26 | """Create a new parser |
| 27 | |
| 28 | After the parser runs, self.links will be set to a list of the links |
| 29 | to .xz archives found in the page, and self.arch_link will be set to |
| 30 | the one for the given architecture (or None if not found). |
| 31 | |
| 32 | Args: |
| 33 | arch: Architecture to search for |
| 34 | """ |
| 35 | HTMLParser.__init__(self) |
| 36 | self.arch_link = None |
| 37 | self.links = [] |
Daniel Schwierzeck | 4c58d27 | 2018-05-10 07:15:53 -0400 | [diff] [blame] | 38 | self.re_arch = re.compile('[-_]%s-' % arch) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 39 | |
| 40 | def handle_starttag(self, tag, attrs): |
| 41 | if tag == 'a': |
| 42 | for tag, value in attrs: |
| 43 | if tag == 'href': |
| 44 | if value and value.endswith('.xz'): |
| 45 | self.links.append(value) |
Daniel Schwierzeck | 4c58d27 | 2018-05-10 07:15:53 -0400 | [diff] [blame] | 46 | if self.re_arch.search(value): |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 47 | self.arch_link = value |
| 48 | |
| 49 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 50 | class Toolchain: |
| 51 | """A single toolchain |
| 52 | |
| 53 | Public members: |
| 54 | gcc: Full path to C compiler |
| 55 | path: Directory path containing C compiler |
| 56 | cross: Cross compile string, e.g. 'arm-linux-' |
| 57 | arch: Architecture of toolchain as determined from the first |
| 58 | component of the filename. E.g. arm-linux-gcc becomes arm |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 59 | priority: Toolchain priority (0=highest, 20=lowest) |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 60 | override_toolchain: Toolchain to use for sandbox, overriding the normal |
| 61 | one |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 62 | """ |
Simon Glass | 608e399 | 2016-03-06 19:45:38 -0700 | [diff] [blame] | 63 | def __init__(self, fname, test, verbose=False, priority=PRIORITY_CALC, |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 64 | arch=None, override_toolchain=None): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 65 | """Create a new toolchain object. |
| 66 | |
| 67 | Args: |
| 68 | fname: Filename of the gcc component |
| 69 | test: True to run the toolchain to test it |
Simon Glass | ad24eba | 2016-03-06 19:45:35 -0700 | [diff] [blame] | 70 | verbose: True to print out the information |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 71 | priority: Priority to use for this toolchain, or PRIORITY_CALC to |
| 72 | calculate it |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 73 | """ |
| 74 | self.gcc = fname |
| 75 | self.path = os.path.dirname(fname) |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 76 | self.override_toolchain = override_toolchain |
Simon Glass | b532412 | 2014-12-01 17:33:58 -0700 | [diff] [blame] | 77 | |
| 78 | # Find the CROSS_COMPILE prefix to use for U-Boot. For example, |
| 79 | # 'arm-linux-gnueabihf-gcc' turns into 'arm-linux-gnueabihf-'. |
| 80 | basename = os.path.basename(fname) |
| 81 | pos = basename.rfind('-') |
| 82 | self.cross = basename[:pos + 1] if pos != -1 else '' |
| 83 | |
| 84 | # The architecture is the first part of the name |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 85 | pos = self.cross.find('-') |
Simon Glass | 608e399 | 2016-03-06 19:45:38 -0700 | [diff] [blame] | 86 | if arch: |
| 87 | self.arch = arch |
| 88 | else: |
| 89 | self.arch = self.cross[:pos] if pos != -1 else 'sandbox' |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 90 | if self.arch == 'sandbox' and override_toolchain: |
| 91 | self.gcc = override_toolchain |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 92 | |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 93 | env = self.MakeEnvironment(False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 94 | |
| 95 | # As a basic sanity check, run the C compiler with --version |
| 96 | cmd = [fname, '--version'] |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 97 | if priority == PRIORITY_CALC: |
| 98 | self.priority = self.GetPriority(fname) |
| 99 | else: |
| 100 | self.priority = priority |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 101 | if test: |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 102 | result = command.run_pipe([cmd], capture=True, env=env, |
Stephen Warren | 8bb2bdd | 2013-10-09 14:28:09 -0600 | [diff] [blame] | 103 | raise_on_error=False) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 104 | self.ok = result.return_code == 0 |
| 105 | if verbose: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 106 | print('Tool chain test: ', end=' ') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 107 | if self.ok: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 108 | print("OK, arch='%s', priority %d" % (self.arch, |
| 109 | self.priority)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 110 | else: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 111 | print('BAD') |
| 112 | print('Command: ', cmd) |
| 113 | print(result.stdout) |
| 114 | print(result.stderr) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 115 | else: |
| 116 | self.ok = True |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 117 | |
| 118 | def GetPriority(self, fname): |
| 119 | """Return the priority of the toolchain. |
| 120 | |
| 121 | Toolchains are ranked according to their suitability by their |
| 122 | filename prefix. |
| 123 | |
| 124 | Args: |
| 125 | fname: Filename of toolchain |
| 126 | Returns: |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 127 | Priority of toolchain, PRIORITY_CALC=highest, 20=lowest. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 128 | """ |
Masahiro Yamada | 8708267 | 2014-07-07 09:47:45 +0900 | [diff] [blame] | 129 | priority_list = ['-elf', '-unknown-linux-gnu', '-linux', |
Tom Rini | 546a6f3 | 2017-04-14 19:47:50 -0400 | [diff] [blame] | 130 | '-none-linux-gnueabi', '-none-linux-gnueabihf', '-uclinux', |
| 131 | '-none-eabi', '-gentoo-linux-gnu', '-linux-gnueabi', |
| 132 | '-linux-gnueabihf', '-le-linux', '-uclinux'] |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 133 | for prio in range(len(priority_list)): |
| 134 | if priority_list[prio] in fname: |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 135 | return PRIORITY_CALC + prio |
| 136 | return PRIORITY_CALC + prio |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 137 | |
York Sun | d5fe013 | 2016-10-04 14:33:51 -0700 | [diff] [blame] | 138 | def GetWrapper(self, show_warning=True): |
| 139 | """Get toolchain wrapper from the setting file. |
| 140 | """ |
Simon Glass | ccd2979 | 2019-01-07 16:44:24 -0700 | [diff] [blame] | 141 | value = '' |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 142 | for name, value in bsettings.get_items('toolchain-wrapper'): |
York Sun | d5fe013 | 2016-10-04 14:33:51 -0700 | [diff] [blame] | 143 | if not value: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 144 | print("Warning: Wrapper not found") |
York Sun | d5fe013 | 2016-10-04 14:33:51 -0700 | [diff] [blame] | 145 | if value: |
| 146 | value = value + ' ' |
| 147 | |
| 148 | return value |
| 149 | |
Simon Glass | 57cb9d5 | 2019-12-05 15:59:14 -0700 | [diff] [blame] | 150 | def GetEnvArgs(self, which): |
| 151 | """Get an environment variable/args value based on the the toolchain |
| 152 | |
| 153 | Args: |
| 154 | which: VAR_... value to get |
| 155 | |
| 156 | Returns: |
| 157 | Value of that environment variable or arguments |
| 158 | """ |
Simon Glass | 57cb9d5 | 2019-12-05 15:59:14 -0700 | [diff] [blame] | 159 | if which == VAR_CROSS_COMPILE: |
Simon Glass | c3cea95 | 2023-03-10 12:48:51 -0800 | [diff] [blame] | 160 | wrapper = self.GetWrapper() |
| 161 | base = '' if self.arch == 'sandbox' else self.path |
| 162 | return wrapper + os.path.join(base, self.cross) |
Simon Glass | 57cb9d5 | 2019-12-05 15:59:14 -0700 | [diff] [blame] | 163 | elif which == VAR_PATH: |
| 164 | return self.path |
| 165 | elif which == VAR_ARCH: |
| 166 | return self.arch |
| 167 | elif which == VAR_MAKE_ARGS: |
| 168 | args = self.MakeArgs() |
| 169 | if args: |
| 170 | return ' '.join(args) |
| 171 | return '' |
| 172 | else: |
| 173 | raise ValueError('Unknown arg to GetEnvArgs (%d)' % which) |
| 174 | |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 175 | def MakeEnvironment(self, full_path): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 176 | """Returns an environment for using the toolchain. |
| 177 | |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 178 | Thie takes the current environment and adds CROSS_COMPILE so that |
Daniel Schwierzeck | b0e994c | 2017-06-08 03:07:08 +0200 | [diff] [blame] | 179 | the tool chain will operate correctly. This also disables localized |
| 180 | output and possibly unicode encoded output of all build tools by |
| 181 | adding LC_ALL=C. |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 182 | |
Simon Glass | f1a83ab | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 183 | Note that os.environb is used to obtain the environment, since in some |
| 184 | cases the environment many contain non-ASCII characters and we see |
| 185 | errors like: |
| 186 | |
| 187 | UnicodeEncodeError: 'utf-8' codec can't encode characters in position |
| 188 | 569-570: surrogates not allowed |
| 189 | |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 190 | Args: |
| 191 | full_path: Return the full path in CROSS_COMPILE and don't set |
| 192 | PATH |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 193 | Returns: |
Simon Glass | f1a83ab | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 194 | Dict containing the (bytes) environment to use. This is based on the |
| 195 | current environment, with changes as needed to CROSS_COMPILE, PATH |
| 196 | and LC_ALL. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 197 | """ |
Simon Glass | f1a83ab | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 198 | env = dict(os.environb) |
York Sun | d5fe013 | 2016-10-04 14:33:51 -0700 | [diff] [blame] | 199 | wrapper = self.GetWrapper() |
| 200 | |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 201 | if self.override_toolchain: |
| 202 | # We'll use MakeArgs() to provide this |
| 203 | pass |
| 204 | elif full_path: |
Simon Glass | c1aa66e | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 205 | env[b'CROSS_COMPILE'] = tools.to_bytes( |
Simon Glass | f1a83ab | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 206 | wrapper + os.path.join(self.path, self.cross)) |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 207 | else: |
Simon Glass | c1aa66e | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 208 | env[b'CROSS_COMPILE'] = tools.to_bytes(wrapper + self.cross) |
| 209 | env[b'PATH'] = tools.to_bytes(self.path) + b':' + env[b'PATH'] |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 210 | |
Simon Glass | f1a83ab | 2021-04-11 16:27:28 +1200 | [diff] [blame] | 211 | env[b'LC_ALL'] = b'C' |
Daniel Schwierzeck | b0e994c | 2017-06-08 03:07:08 +0200 | [diff] [blame] | 212 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 213 | return env |
| 214 | |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 215 | def MakeArgs(self): |
| 216 | """Create the 'make' arguments for a toolchain |
| 217 | |
| 218 | This is only used when the toolchain is being overridden. Since the |
| 219 | U-Boot Makefile sets CC and HOSTCC explicitly we cannot rely on the |
| 220 | environment (and MakeEnvironment()) to override these values. This |
| 221 | function returns the arguments to accomplish this. |
| 222 | |
| 223 | Returns: |
| 224 | List of arguments to pass to 'make' |
| 225 | """ |
| 226 | if self.override_toolchain: |
| 227 | return ['HOSTCC=%s' % self.override_toolchain, |
| 228 | 'CC=%s' % self.override_toolchain] |
| 229 | return [] |
| 230 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 231 | |
| 232 | class Toolchains: |
| 233 | """Manage a list of toolchains for building U-Boot |
| 234 | |
| 235 | We select one toolchain for each architecture type |
| 236 | |
| 237 | Public members: |
| 238 | toolchains: Dict of Toolchain objects, keyed by architecture name |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 239 | prefixes: Dict of prefixes to check, keyed by architecture. This can |
| 240 | be a full path and toolchain prefix, for example |
| 241 | {'x86', 'opt/i386-linux/bin/i386-linux-'}, or the name of |
| 242 | something on the search path, for example |
| 243 | {'arm', 'arm-linux-gnueabihf-'}. Wildcards are not supported. |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 244 | paths: List of paths to check for toolchains (may contain wildcards) |
| 245 | """ |
| 246 | |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 247 | def __init__(self, override_toolchain=None): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 248 | self.toolchains = {} |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 249 | self.prefixes = {} |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 250 | self.paths = [] |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 251 | self.override_toolchain = override_toolchain |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 252 | self._make_flags = dict(bsettings.get_items('make-flags')) |
Simon Glass | d4144e4 | 2014-09-05 19:00:13 -0600 | [diff] [blame] | 253 | |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 254 | def GetPathList(self, show_warning=True): |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 255 | """Get a list of available toolchain paths |
| 256 | |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 257 | Args: |
| 258 | show_warning: True to show a warning if there are no tool chains. |
| 259 | |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 260 | Returns: |
| 261 | List of strings, each a path to a toolchain mentioned in the |
| 262 | [toolchain] section of the settings file. |
| 263 | """ |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 264 | toolchains = bsettings.get_items('toolchain') |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 265 | if show_warning and not toolchains: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 266 | print(("Warning: No tool chains. Please run 'buildman " |
Simon Glass | 713bea3 | 2016-07-27 20:33:02 -0600 | [diff] [blame] | 267 | "--fetch-arch all' to download all available toolchains, or " |
| 268 | "add a [toolchain] section to your buildman config file " |
Heinrich Schuchardt | eeb5525 | 2023-01-19 16:22:10 +0100 | [diff] [blame] | 269 | "%s. See buildman.rst for details" % |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 270 | bsettings.config_fname)) |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 271 | |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 272 | paths = [] |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 273 | for name, value in toolchains: |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 274 | if '*' in value: |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 275 | paths += glob.glob(value) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 276 | else: |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 277 | paths.append(value) |
| 278 | return paths |
| 279 | |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 280 | def GetSettings(self, show_warning=True): |
| 281 | """Get toolchain settings from the settings file. |
| 282 | |
| 283 | Args: |
| 284 | show_warning: True to show a warning if there are no tool chains. |
| 285 | """ |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 286 | self.prefixes = bsettings.get_items('toolchain-prefix') |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 287 | self.paths += self.GetPathList(show_warning) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 288 | |
Simon Glass | 608e399 | 2016-03-06 19:45:38 -0700 | [diff] [blame] | 289 | def Add(self, fname, test=True, verbose=False, priority=PRIORITY_CALC, |
| 290 | arch=None): |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 291 | """Add a toolchain to our list |
| 292 | |
| 293 | We select the given toolchain as our preferred one for its |
| 294 | architecture if it is a higher priority than the others. |
| 295 | |
| 296 | Args: |
| 297 | fname: Filename of toolchain's gcc driver |
| 298 | test: True to run the toolchain to test it |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 299 | priority: Priority to use for this toolchain |
Simon Glass | 608e399 | 2016-03-06 19:45:38 -0700 | [diff] [blame] | 300 | arch: Toolchain architecture, or None if not known |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 301 | """ |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 302 | toolchain = Toolchain(fname, test, verbose, priority, arch, |
| 303 | self.override_toolchain) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 304 | add_it = toolchain.ok |
| 305 | if toolchain.arch in self.toolchains: |
| 306 | add_it = (toolchain.priority < |
| 307 | self.toolchains[toolchain.arch].priority) |
| 308 | if add_it: |
| 309 | self.toolchains[toolchain.arch] = toolchain |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 310 | elif verbose: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 311 | print(("Toolchain '%s' at priority %d will be ignored because " |
Simon Glass | ff690df | 2016-03-06 19:45:37 -0700 | [diff] [blame] | 312 | "another toolchain for arch '%s' has priority %d" % |
| 313 | (toolchain.gcc, toolchain.priority, toolchain.arch, |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 314 | self.toolchains[toolchain.arch].priority))) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 315 | |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 316 | def ScanPath(self, path, verbose): |
| 317 | """Scan a path for a valid toolchain |
| 318 | |
| 319 | Args: |
| 320 | path: Path to scan |
| 321 | verbose: True to print out progress information |
| 322 | Returns: |
| 323 | Filename of C compiler if found, else None |
| 324 | """ |
Albert ARIBAUD | d908898 | 2015-02-01 00:12:44 +0100 | [diff] [blame] | 325 | fnames = [] |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 326 | for subdir in ['.', 'bin', 'usr/bin']: |
| 327 | dirname = os.path.join(path, subdir) |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 328 | if verbose: print(" - looking in '%s'" % dirname) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 329 | for fname in glob.glob(dirname + '/*gcc'): |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 330 | if verbose: print(" - found '%s'" % fname) |
Albert ARIBAUD | d908898 | 2015-02-01 00:12:44 +0100 | [diff] [blame] | 331 | fnames.append(fname) |
| 332 | return fnames |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 333 | |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 334 | def ScanPathEnv(self, fname): |
| 335 | """Scan the PATH environment variable for a given filename. |
| 336 | |
| 337 | Args: |
| 338 | fname: Filename to scan for |
| 339 | Returns: |
| 340 | List of matching pathanames, or [] if none |
| 341 | """ |
| 342 | pathname_list = [] |
| 343 | for path in os.environ["PATH"].split(os.pathsep): |
| 344 | path = path.strip('"') |
| 345 | pathname = os.path.join(path, fname) |
| 346 | if os.path.exists(pathname): |
| 347 | pathname_list.append(pathname) |
| 348 | return pathname_list |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 349 | |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 350 | def Scan(self, verbose): |
| 351 | """Scan for available toolchains and select the best for each arch. |
| 352 | |
| 353 | We look for all the toolchains we can file, figure out the |
| 354 | architecture for each, and whether it works. Then we select the |
| 355 | highest priority toolchain for each arch. |
| 356 | |
| 357 | Args: |
| 358 | verbose: True to print out progress information |
| 359 | """ |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 360 | if verbose: print('Scanning for tool chains') |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 361 | for name, value in self.prefixes: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 362 | if verbose: print(" - scanning prefix '%s'" % value) |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 363 | if os.path.exists(value): |
| 364 | self.Add(value, True, verbose, PRIORITY_FULL_PREFIX, name) |
| 365 | continue |
| 366 | fname = value + 'gcc' |
| 367 | if os.path.exists(fname): |
| 368 | self.Add(fname, True, verbose, PRIORITY_PREFIX_GCC, name) |
| 369 | continue |
| 370 | fname_list = self.ScanPathEnv(fname) |
| 371 | for f in fname_list: |
| 372 | self.Add(f, True, verbose, PRIORITY_PREFIX_GCC_PATH, name) |
| 373 | if not fname_list: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 374 | raise ValueError("No tool chain found for prefix '%s'" % |
Simon Glass | 17bce66 | 2016-03-12 18:50:32 -0700 | [diff] [blame] | 375 | value) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 376 | for path in self.paths: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 377 | if verbose: print(" - scanning path '%s'" % path) |
Albert ARIBAUD | d908898 | 2015-02-01 00:12:44 +0100 | [diff] [blame] | 378 | fnames = self.ScanPath(path, verbose) |
| 379 | for fname in fnames: |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 380 | self.Add(fname, True, verbose) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 381 | |
| 382 | def List(self): |
| 383 | """List out the selected toolchains for each architecture""" |
Simon Glass | 713bea3 | 2016-07-27 20:33:02 -0600 | [diff] [blame] | 384 | col = terminal.Color() |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 385 | print(col.build(col.BLUE, 'List of available toolchains (%d):' % |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 386 | len(self.toolchains))) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 387 | if len(self.toolchains): |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 388 | for key, value in sorted(self.toolchains.items()): |
| 389 | print('%-10s: %s' % (key, value.gcc)) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 390 | else: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 391 | print('None') |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 392 | |
| 393 | def Select(self, arch): |
| 394 | """Returns the toolchain for a given architecture |
| 395 | |
| 396 | Args: |
| 397 | args: Name of architecture (e.g. 'arm', 'ppc_8xx') |
| 398 | |
| 399 | returns: |
| 400 | toolchain object, or None if none found |
| 401 | """ |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 402 | for tag, value in bsettings.get_items('toolchain-alias'): |
Simon Glass | 9b83bfd | 2014-12-01 17:34:05 -0700 | [diff] [blame] | 403 | if arch == tag: |
| 404 | for alias in value.split(): |
| 405 | if alias in self.toolchains: |
| 406 | return self.toolchains[alias] |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 407 | |
| 408 | if not arch in self.toolchains: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 409 | raise ValueError("No tool chain found for arch '%s'" % arch) |
Simon Glass | fc3fe1c | 2013-04-03 11:07:16 +0000 | [diff] [blame] | 410 | return self.toolchains[arch] |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 411 | |
| 412 | def ResolveReferences(self, var_dict, args): |
| 413 | """Resolve variable references in a string |
| 414 | |
| 415 | This converts ${blah} within the string to the value of blah. |
| 416 | This function works recursively. |
| 417 | |
| 418 | Args: |
| 419 | var_dict: Dictionary containing variables and their values |
| 420 | args: String containing make arguments |
| 421 | Returns: |
| 422 | Resolved string |
| 423 | |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 424 | >>> bsettings.setup(None) |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 425 | >>> tcs = Toolchains() |
| 426 | >>> tcs.Add('fred', False) |
| 427 | >>> var_dict = {'oblique' : 'OBLIQUE', 'first' : 'fi${second}rst', \ |
| 428 | 'second' : '2nd'} |
| 429 | >>> tcs.ResolveReferences(var_dict, 'this=${oblique}_set') |
| 430 | 'this=OBLIQUE_set' |
| 431 | >>> tcs.ResolveReferences(var_dict, 'this=${oblique}_set${first}nd') |
| 432 | 'this=OBLIQUE_setfi2ndrstnd' |
| 433 | """ |
Simon Glass | f60c9d4 | 2014-08-28 09:43:40 -0600 | [diff] [blame] | 434 | re_var = re.compile('(\$\{[-_a-z0-9A-Z]{1,}\})') |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 435 | |
| 436 | while True: |
| 437 | m = re_var.search(args) |
| 438 | if not m: |
| 439 | break |
| 440 | lookup = m.group(0)[2:-1] |
| 441 | value = var_dict.get(lookup, '') |
| 442 | args = args[:m.start(0)] + value + args[m.end(0):] |
| 443 | return args |
| 444 | |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 445 | def GetMakeArguments(self, brd): |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 446 | """Returns 'make' arguments for a given board |
| 447 | |
| 448 | The flags are in a section called 'make-flags'. Flags are named |
| 449 | after the target they represent, for example snapper9260=TESTING=1 |
| 450 | will pass TESTING=1 to make when building the snapper9260 board. |
| 451 | |
| 452 | References to other boards can be added in the string also. For |
| 453 | example: |
| 454 | |
| 455 | [make-flags] |
| 456 | at91-boards=ENABLE_AT91_TEST=1 |
| 457 | snapper9260=${at91-boards} BUILD_TAG=442 |
| 458 | snapper9g45=${at91-boards} BUILD_TAG=443 |
| 459 | |
| 460 | This will return 'ENABLE_AT91_TEST=1 BUILD_TAG=442' for snapper9260 |
| 461 | and 'ENABLE_AT91_TEST=1 BUILD_TAG=443' for snapper9g45. |
| 462 | |
| 463 | A special 'target' variable is set to the board target. |
| 464 | |
| 465 | Args: |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 466 | brd: Board object for the board to check. |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 467 | Returns: |
| 468 | 'make' flags for that board, or '' if none |
| 469 | """ |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 470 | self._make_flags['target'] = brd.target |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 471 | arg_str = self.ResolveReferences(self._make_flags, |
Simon Glass | f4ed470 | 2022-07-11 19:03:57 -0600 | [diff] [blame] | 472 | self._make_flags.get(brd.target, '')) |
Cristian Ciocaltea | 4251fbc | 2019-11-24 22:30:26 +0200 | [diff] [blame] | 473 | args = re.findall("(?:\".*?\"|\S)+", arg_str) |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 474 | i = 0 |
| 475 | while i < len(args): |
Cristian Ciocaltea | 4251fbc | 2019-11-24 22:30:26 +0200 | [diff] [blame] | 476 | args[i] = args[i].replace('"', '') |
Simon Glass | 4281ad8 | 2013-09-23 17:35:17 -0600 | [diff] [blame] | 477 | if not args[i]: |
| 478 | del args[i] |
| 479 | else: |
| 480 | i += 1 |
| 481 | return args |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 482 | |
| 483 | def LocateArchUrl(self, fetch_arch): |
| 484 | """Find a toolchain available online |
| 485 | |
| 486 | Look in standard places for available toolchains. At present the |
| 487 | only standard place is at kernel.org. |
| 488 | |
| 489 | Args: |
| 490 | arch: Architecture to look for, or 'list' for all |
| 491 | Returns: |
| 492 | If fetch_arch is 'list', a tuple: |
| 493 | Machine architecture (e.g. x86_64) |
| 494 | List of toolchains |
| 495 | else |
| 496 | URL containing this toolchain, if avaialble, else None |
| 497 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 498 | arch = command.output_one_line('uname', '-m') |
Matthias Brugger | 2f7c53c | 2020-01-17 10:53:37 +0100 | [diff] [blame] | 499 | if arch == 'aarch64': |
| 500 | arch = 'arm64' |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 501 | base = 'https://www.kernel.org/pub/tools/crosstool/files/bin' |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 502 | versions = ['13.2.0', '12.2.0'] |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 503 | links = [] |
| 504 | for version in versions: |
| 505 | url = '%s/%s/%s/' % (base, arch, version) |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 506 | print('Checking: %s' % url) |
| 507 | response = urllib.request.urlopen(url) |
Simon Glass | c1aa66e | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 508 | html = tools.to_string(response.read()) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 509 | parser = MyHTMLParser(fetch_arch) |
| 510 | parser.feed(html) |
| 511 | if fetch_arch == 'list': |
| 512 | links += parser.links |
| 513 | elif parser.arch_link: |
| 514 | return url + parser.arch_link |
| 515 | if fetch_arch == 'list': |
| 516 | return arch, links |
| 517 | return None |
| 518 | |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 519 | def Unpack(self, fname, dest): |
| 520 | """Unpack a tar file |
| 521 | |
| 522 | Args: |
| 523 | fname: Filename to unpack |
| 524 | dest: Destination directory |
| 525 | Returns: |
| 526 | Directory name of the first entry in the archive, without the |
| 527 | trailing / |
| 528 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 529 | stdout = command.output('tar', 'xvfJ', fname, '-C', dest) |
Trevor Woerner | d82f539 | 2018-11-21 03:31:12 -0500 | [diff] [blame] | 530 | dirs = stdout.splitlines()[1].split('/')[:2] |
| 531 | return '/'.join(dirs) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 532 | |
| 533 | def TestSettingsHasPath(self, path): |
Simon Glass | 2289b27 | 2016-07-27 20:33:03 -0600 | [diff] [blame] | 534 | """Check if buildman will find this toolchain |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 535 | |
| 536 | Returns: |
| 537 | True if the path is in settings, False if not |
| 538 | """ |
Simon Glass | 80e6a48 | 2016-07-27 20:33:01 -0600 | [diff] [blame] | 539 | paths = self.GetPathList(False) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 540 | return path in paths |
| 541 | |
| 542 | def ListArchs(self): |
| 543 | """List architectures with available toolchains to download""" |
| 544 | host_arch, archives = self.LocateArchUrl('list') |
Trevor Woerner | b11f126 | 2018-11-21 03:31:13 -0500 | [diff] [blame] | 545 | re_arch = re.compile('[-a-z0-9.]*[-_]([^-]*)-.*') |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 546 | arch_set = set() |
| 547 | for archive in archives: |
| 548 | # Remove the host architecture from the start |
| 549 | arch = re_arch.match(archive[len(host_arch):]) |
| 550 | if arch: |
Trevor Woerner | b11f126 | 2018-11-21 03:31:13 -0500 | [diff] [blame] | 551 | if arch.group(1) != '2.0' and arch.group(1) != '64': |
| 552 | arch_set.add(arch.group(1)) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 553 | return sorted(arch_set) |
| 554 | |
| 555 | def FetchAndInstall(self, arch): |
| 556 | """Fetch and install a new toolchain |
| 557 | |
| 558 | arch: |
| 559 | Architecture to fetch, or 'list' to list |
| 560 | """ |
| 561 | # Fist get the URL for this architecture |
Simon Glass | 713bea3 | 2016-07-27 20:33:02 -0600 | [diff] [blame] | 562 | col = terminal.Color() |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 563 | print(col.build(col.BLUE, "Downloading toolchain for arch '%s'" % arch)) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 564 | url = self.LocateArchUrl(arch) |
| 565 | if not url: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 566 | print(("Cannot find toolchain for arch '%s' - use 'list' to list" % |
| 567 | arch)) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 568 | return 2 |
| 569 | home = os.environ['HOME'] |
| 570 | dest = os.path.join(home, '.buildman-toolchains') |
| 571 | if not os.path.exists(dest): |
| 572 | os.mkdir(dest) |
| 573 | |
| 574 | # Download the tar file for this toolchain and unpack it |
Simon Glass | c1aa66e | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 575 | tarfile, tmpdir = tools.download(url, '.buildman') |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 576 | if not tarfile: |
| 577 | return 1 |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 578 | print(col.build(col.GREEN, 'Unpacking to: %s' % dest), end=' ') |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 579 | sys.stdout.flush() |
| 580 | path = self.Unpack(tarfile, dest) |
| 581 | os.remove(tarfile) |
| 582 | os.rmdir(tmpdir) |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 583 | print() |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 584 | |
| 585 | # Check that the toolchain works |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 586 | print(col.build(col.GREEN, 'Testing')) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 587 | dirpath = os.path.join(dest, path) |
Simon Glass | 2a76a64 | 2015-03-02 17:05:15 -0700 | [diff] [blame] | 588 | compiler_fname_list = self.ScanPath(dirpath, True) |
| 589 | if not compiler_fname_list: |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 590 | print('Could not locate C compiler - fetch failed.') |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 591 | return 1 |
Simon Glass | 2a76a64 | 2015-03-02 17:05:15 -0700 | [diff] [blame] | 592 | if len(compiler_fname_list) != 1: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 593 | print(col.build(col.RED, 'Warning, ambiguous toolchains: %s' % |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 594 | ', '.join(compiler_fname_list))) |
Simon Glass | 2a76a64 | 2015-03-02 17:05:15 -0700 | [diff] [blame] | 595 | toolchain = Toolchain(compiler_fname_list[0], True, True) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 596 | |
| 597 | # Make sure that it will be found by buildman |
| 598 | if not self.TestSettingsHasPath(dirpath): |
Simon Glass | c05aa03 | 2019-10-31 07:42:53 -0600 | [diff] [blame] | 599 | print(("Adding 'download' to config file '%s'" % |
| 600 | bsettings.config_fname)) |
Simon Glass | 42d42cf | 2023-07-19 17:49:05 -0600 | [diff] [blame] | 601 | bsettings.set_item('toolchain', 'download', '%s/*/*' % dest) |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 602 | return 0 |