blob: eb9b5e1e524cbd4c49dd67496104948e9c9177ce [file] [log] [blame]
Zdenek Behan508dcce2011-12-05 15:39:32 +01001# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Mike Frysinger750c5f52014-09-16 16:16:57 -04005"""This script manages the installed toolchains in the chroot."""
Zdenek Behan508dcce2011-12-05 15:39:32 +01006
Mike Frysinger383367e2014-09-16 15:06:17 -04007from __future__ import print_function
8
Zdenek Behan508dcce2011-12-05 15:39:32 +01009import copy
Mike Frysinger35247af2012-11-16 18:58:06 -050010import glob
Mike Frysinger7ccee992012-06-01 21:27:59 -040011import json
Zdenek Behan508dcce2011-12-05 15:39:32 +010012import os
Zdenek Behan508dcce2011-12-05 15:39:32 +010013
Don Garrett88b8d782014-05-13 17:30:55 -070014from chromite.cbuildbot import constants
Mike Frysinger506e75f2012-12-17 14:21:13 -050015from chromite.lib import commandline
Brian Harring503f3ab2012-03-09 21:39:41 -080016from chromite.lib import cros_build_lib
Brian Harringaf019fb2012-05-10 15:06:13 -070017from chromite.lib import osutils
Mike Frysinger35247af2012-11-16 18:58:06 -050018from chromite.lib import parallel
David James27ac4ae2012-12-03 23:16:15 -080019from chromite.lib import toolchain
Mike Frysinger35247af2012-11-16 18:58:06 -050020
21# Needs to be after chromite imports.
22import lddtree
Zdenek Behan508dcce2011-12-05 15:39:32 +010023
Mike Frysinger31596002012-12-03 23:54:24 -050024if cros_build_lib.IsInsideChroot():
25 # Only import portage after we've checked that we're inside the chroot.
26 # Outside may not have portage, in which case the above may not happen.
27 # We'll check in main() if the operation needs portage.
Don Garrett25f309a2014-03-19 14:02:12 -070028 # pylint: disable=F0401
Mike Frysinger31596002012-12-03 23:54:24 -050029 import portage
Zdenek Behan508dcce2011-12-05 15:39:32 +010030
31
Matt Tennantf1e30972012-03-02 16:30:07 -080032EMERGE_CMD = os.path.join(constants.CHROMITE_BIN_DIR, 'parallel_emerge')
Zdenek Behan508dcce2011-12-05 15:39:32 +010033PACKAGE_STABLE = '[stable]'
34PACKAGE_NONE = '[none]'
35SRC_ROOT = os.path.realpath(constants.SOURCE_ROOT)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +010036
37CHROMIUMOS_OVERLAY = '/usr/local/portage/chromiumos'
38STABLE_OVERLAY = '/usr/local/portage/stable'
39CROSSDEV_OVERLAY = '/usr/local/portage/crossdev'
Zdenek Behan508dcce2011-12-05 15:39:32 +010040
41
42# TODO: The versions are stored here very much like in setup_board.
43# The goal for future is to differentiate these using a config file.
44# This is done essentially by messing with GetDesiredPackageVersions()
45DEFAULT_VERSION = PACKAGE_STABLE
46DEFAULT_TARGET_VERSION_MAP = {
Zdenek Behan508dcce2011-12-05 15:39:32 +010047}
48TARGET_VERSION_MAP = {
Zdenek Behan508dcce2011-12-05 15:39:32 +010049 'host' : {
Zdenek Behan508dcce2011-12-05 15:39:32 +010050 'gdb' : PACKAGE_NONE,
51 },
52}
53# Overrides for {gcc,binutils}-config, pick a package with particular suffix.
54CONFIG_TARGET_SUFFIXES = {
55 'binutils' : {
56 'i686-pc-linux-gnu' : '-gold',
57 'x86_64-cros-linux-gnu' : '-gold',
58 },
59}
Zdenek Behan508dcce2011-12-05 15:39:32 +010060# Global per-run cache that will be filled ondemand in by GetPackageMap()
61# function as needed.
62target_version_map = {
63}
64
65
David James66a09c42012-11-05 13:31:38 -080066class Crossdev(object):
67 """Class for interacting with crossdev and caching its output."""
68
69 _CACHE_FILE = os.path.join(CROSSDEV_OVERLAY, '.configured.json')
70 _CACHE = {}
71
72 @classmethod
73 def Load(cls, reconfig):
74 """Load crossdev cache from disk."""
David James90239b92012-11-05 15:31:34 -080075 crossdev_version = GetStablePackageVersion('sys-devel/crossdev', True)
76 cls._CACHE = {'crossdev_version': crossdev_version}
David James66a09c42012-11-05 13:31:38 -080077 if os.path.exists(cls._CACHE_FILE) and not reconfig:
78 with open(cls._CACHE_FILE) as f:
79 data = json.load(f)
David James90239b92012-11-05 15:31:34 -080080 if crossdev_version == data.get('crossdev_version'):
David James66a09c42012-11-05 13:31:38 -080081 cls._CACHE = data
82
83 @classmethod
84 def Save(cls):
85 """Store crossdev cache on disk."""
86 # Save the cache from the successful run.
87 with open(cls._CACHE_FILE, 'w') as f:
88 json.dump(cls._CACHE, f)
89
90 @classmethod
91 def GetConfig(cls, target):
92 """Returns a map of crossdev provided variables about a tuple."""
93 CACHE_ATTR = '_target_tuple_map'
94
95 val = cls._CACHE.setdefault(CACHE_ATTR, {})
96 if not target in val:
97 # Find out the crossdev tuple.
98 target_tuple = target
99 if target == 'host':
David James27ac4ae2012-12-03 23:16:15 -0800100 target_tuple = toolchain.GetHostTuple()
David James66a09c42012-11-05 13:31:38 -0800101 # Catch output of crossdev.
102 out = cros_build_lib.RunCommand(['crossdev', '--show-target-cfg',
103 '--ex-gdb', target_tuple],
104 print_cmd=False, redirect_stdout=True).output.splitlines()
105 # List of tuples split at the first '=', converted into dict.
106 val[target] = dict([x.split('=', 1) for x in out])
107 return val[target]
108
109 @classmethod
110 def UpdateTargets(cls, targets, usepkg, config_only=False):
111 """Calls crossdev to initialize a cross target.
112
113 Args:
Don Garrett25f309a2014-03-19 14:02:12 -0700114 targets: The list of targets to initialize using crossdev.
115 usepkg: Copies the commandline opts.
116 config_only: Just update.
David James66a09c42012-11-05 13:31:38 -0800117 """
118 configured_targets = cls._CACHE.setdefault('configured_targets', [])
119
120 cmdbase = ['crossdev', '--show-fail-log']
121 cmdbase.extend(['--env', 'FEATURES=splitdebug'])
122 # Pick stable by default, and override as necessary.
123 cmdbase.extend(['-P', '--oneshot'])
124 if usepkg:
125 cmdbase.extend(['-P', '--getbinpkg',
126 '-P', '--usepkgonly',
127 '--without-headers'])
128
129 overlays = '%s %s' % (CHROMIUMOS_OVERLAY, STABLE_OVERLAY)
130 cmdbase.extend(['--overlays', overlays])
131 cmdbase.extend(['--ov-output', CROSSDEV_OVERLAY])
132
133 for target in targets:
134 if config_only and target in configured_targets:
135 continue
136
137 cmd = cmdbase + ['-t', target]
138
139 for pkg in GetTargetPackages(target):
140 if pkg == 'gdb':
141 # Gdb does not have selectable versions.
142 cmd.append('--ex-gdb')
143 continue
144 # The first of the desired versions is the "primary" one.
145 version = GetDesiredPackageVersions(target, pkg)[0]
146 cmd.extend(['--%s' % pkg, version])
147
148 cmd.extend(targets[target]['crossdev'].split())
149 if config_only:
150 # In this case we want to just quietly reinit
151 cmd.append('--init-target')
152 cros_build_lib.RunCommand(cmd, print_cmd=False, redirect_stdout=True)
153 else:
154 cros_build_lib.RunCommand(cmd)
155
156 configured_targets.append(target)
157
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100158
Zdenek Behan508dcce2011-12-05 15:39:32 +0100159def GetPackageMap(target):
160 """Compiles a package map for the given target from the constants.
161
162 Uses a cache in target_version_map, that is dynamically filled in as needed,
163 since here everything is static data and the structuring is for ease of
164 configurability only.
165
166 args:
167 target - the target for which to return a version map
168
169 returns a map between packages and desired versions in internal format
170 (using the PACKAGE_* constants)
171 """
172 if target in target_version_map:
173 return target_version_map[target]
174
175 # Start from copy of the global defaults.
176 result = copy.copy(DEFAULT_TARGET_VERSION_MAP)
177
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100178 for pkg in GetTargetPackages(target):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100179 # prefer any specific overrides
180 if pkg in TARGET_VERSION_MAP.get(target, {}):
181 result[pkg] = TARGET_VERSION_MAP[target][pkg]
182 else:
183 # finally, if not already set, set a sane default
184 result.setdefault(pkg, DEFAULT_VERSION)
185 target_version_map[target] = result
186 return result
187
188
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100189def GetTargetPackages(target):
190 """Returns a list of packages for a given target."""
David James66a09c42012-11-05 13:31:38 -0800191 conf = Crossdev.GetConfig(target)
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100192 # Undesired packages are denoted by empty ${pkg}_pn variable.
193 return [x for x in conf['crosspkgs'].strip("'").split() if conf[x+'_pn']]
194
195
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100196# Portage helper functions:
197def GetPortagePackage(target, package):
198 """Returns a package name for the given target."""
David James66a09c42012-11-05 13:31:38 -0800199 conf = Crossdev.GetConfig(target)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100200 # Portage category:
Zdenek Behan508dcce2011-12-05 15:39:32 +0100201 if target == 'host':
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100202 category = conf[package + '_category']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100203 else:
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100204 category = conf['category']
205 # Portage package:
206 pn = conf[package + '_pn']
207 # Final package name:
Mike Frysinger422faf42014-11-12 23:16:48 -0500208 assert category
209 assert pn
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100210 return '%s/%s' % (category, pn)
211
212
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100213def IsPackageDisabled(target, package):
214 """Returns if the given package is not used for the target."""
215 return GetDesiredPackageVersions(target, package) == [PACKAGE_NONE]
216
Liam McLoughlinf54a0782012-05-17 23:36:52 +0100217
David James66a09c42012-11-05 13:31:38 -0800218def GetInstalledPackageVersions(atom):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100219 """Extracts the list of current versions of a target, package pair.
220
221 args:
David James66a09c42012-11-05 13:31:38 -0800222 atom - the atom to operate on (e.g. sys-devel/gcc)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100223
224 returns the list of versions of the package currently installed.
225 """
Zdenek Behan508dcce2011-12-05 15:39:32 +0100226 versions = []
Mike Frysinger506e75f2012-12-17 14:21:13 -0500227 # pylint: disable=E1101
David James90239b92012-11-05 15:31:34 -0800228 for pkg in portage.db['/']['vartree'].dbapi.match(atom, use_cache=0):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100229 version = portage.versions.cpv_getversion(pkg)
230 versions.append(version)
231 return versions
232
233
David James90239b92012-11-05 15:31:34 -0800234def GetStablePackageVersion(atom, installed):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100235 """Extracts the current stable version for a given package.
236
237 args:
238 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
Zdenek Behan699ddd32012-04-13 07:14:08 +0200239 installed - Whether we want installed packages or ebuilds
Zdenek Behan508dcce2011-12-05 15:39:32 +0100240
241 returns a string containing the latest version.
242 """
David James90239b92012-11-05 15:31:34 -0800243 pkgtype = 'vartree' if installed else 'porttree'
Mike Frysinger506e75f2012-12-17 14:21:13 -0500244 # pylint: disable=E1101
David James90239b92012-11-05 15:31:34 -0800245 cpv = portage.best(portage.db['/'][pkgtype].dbapi.match(atom, use_cache=0))
246 return portage.versions.cpv_getversion(cpv) if cpv else None
Zdenek Behan508dcce2011-12-05 15:39:32 +0100247
248
Zdenek Behan699ddd32012-04-13 07:14:08 +0200249def VersionListToNumeric(target, package, versions, installed):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100250 """Resolves keywords in a given version list for a particular package.
251
252 Resolving means replacing PACKAGE_STABLE with the actual number.
253
254 args:
255 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
256 versions - list of versions to resolve
257
258 returns list of purely numeric versions equivalent to argument
259 """
260 resolved = []
David James90239b92012-11-05 15:31:34 -0800261 atom = GetPortagePackage(target, package)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100262 for version in versions:
263 if version == PACKAGE_STABLE:
David James90239b92012-11-05 15:31:34 -0800264 resolved.append(GetStablePackageVersion(atom, installed))
Zdenek Behan508dcce2011-12-05 15:39:32 +0100265 elif version != PACKAGE_NONE:
266 resolved.append(version)
267 return resolved
268
269
270def GetDesiredPackageVersions(target, package):
271 """Produces the list of desired versions for each target, package pair.
272
273 The first version in the list is implicitly treated as primary, ie.
274 the version that will be initialized by crossdev and selected.
275
276 If the version is PACKAGE_STABLE, it really means the current version which
277 is emerged by using the package atom with no particular version key.
278 Since crossdev unmasks all packages by default, this will actually
279 mean 'unstable' in most cases.
280
281 args:
282 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
283
284 returns a list composed of either a version string, PACKAGE_STABLE
285 """
286 packagemap = GetPackageMap(target)
287
288 versions = []
289 if package in packagemap:
290 versions.append(packagemap[package])
291
292 return versions
293
294
295def TargetIsInitialized(target):
296 """Verifies if the given list of targets has been correctly initialized.
297
298 This determines whether we have to call crossdev while emerging
299 toolchain packages or can do it using emerge. Emerge is naturally
300 preferred, because all packages can be updated in a single pass.
301
302 args:
303 targets - list of individual cross targets which are checked
304
305 returns True if target is completely initialized
306 returns False otherwise
307 """
308 # Check if packages for the given target all have a proper version.
309 try:
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100310 for package in GetTargetPackages(target):
David James66a09c42012-11-05 13:31:38 -0800311 atom = GetPortagePackage(target, package)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100312 # Do we even want this package && is it initialized?
David James90239b92012-11-05 15:31:34 -0800313 if not IsPackageDisabled(target, package) and not (
314 GetStablePackageVersion(atom, True) and
315 GetStablePackageVersion(atom, False)):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100316 return False
317 return True
318 except cros_build_lib.RunCommandError:
319 # Fails - The target has likely never been initialized before.
320 return False
321
322
323def RemovePackageMask(target):
324 """Removes a package.mask file for the given platform.
325
326 The pre-existing package.mask files can mess with the keywords.
327
328 args:
329 target - the target for which to remove the file
330 """
331 maskfile = os.path.join('/etc/portage/package.mask', 'cross-' + target)
Brian Harringaf019fb2012-05-10 15:06:13 -0700332 osutils.SafeUnlink(maskfile)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100333
334
Zdenek Behan508dcce2011-12-05 15:39:32 +0100335# Main functions performing the actual update steps.
Mike Frysingerc880a962013-11-08 13:59:06 -0500336def RebuildLibtool():
337 """Rebuild libtool as needed
338
339 Libtool hardcodes full paths to internal gcc files, so whenever we upgrade
340 gcc, libtool will break. We can't use binary packages either as those will
341 most likely be compiled against the previous version of gcc.
342 """
343 needs_update = False
344 with open('/usr/bin/libtool') as f:
345 for line in f:
346 # Look for a line like:
347 # sys_lib_search_path_spec="..."
348 # It'll be a list of paths and gcc will be one of them.
349 if line.startswith('sys_lib_search_path_spec='):
350 line = line.rstrip()
351 for path in line.split('=', 1)[1].strip('"').split():
352 if not os.path.exists(path):
Mike Frysinger383367e2014-09-16 15:06:17 -0400353 print('Rebuilding libtool after gcc upgrade')
354 print(' %s' % line)
355 print(' missing path: %s' % path)
Mike Frysingerc880a962013-11-08 13:59:06 -0500356 needs_update = True
357 break
358
359 if needs_update:
360 break
361
362 if needs_update:
363 cmd = [EMERGE_CMD, '--oneshot', 'sys-devel/libtool']
364 cros_build_lib.RunCommand(cmd)
365
366
Zdenek Behan508dcce2011-12-05 15:39:32 +0100367def UpdateTargets(targets, usepkg):
368 """Determines which packages need update/unmerge and defers to portage.
369
370 args:
371 targets - the list of targets to update
372 usepkg - copies the commandline option
373 """
David James90239b92012-11-05 15:31:34 -0800374 # Remove keyword files created by old versions of cros_setup_toolchains.
375 osutils.SafeUnlink('/etc/portage/package.keywords/cross-host')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100376
377 # For each target, we do two things. Figure out the list of updates,
378 # and figure out the appropriate keywords/masks. Crossdev will initialize
379 # these, but they need to be regenerated on every update.
Mike Frysinger383367e2014-09-16 15:06:17 -0400380 print('Determining required toolchain updates...')
David James90239b92012-11-05 15:31:34 -0800381 mergemap = {}
Zdenek Behan508dcce2011-12-05 15:39:32 +0100382 for target in targets:
383 # Record the highest needed version for each target, for masking purposes.
384 RemovePackageMask(target)
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100385 for package in GetTargetPackages(target):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100386 # Portage name for the package
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100387 if IsPackageDisabled(target, package):
388 continue
389 pkg = GetPortagePackage(target, package)
David James66a09c42012-11-05 13:31:38 -0800390 current = GetInstalledPackageVersions(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100391 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200392 desired_num = VersionListToNumeric(target, package, desired, False)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100393 mergemap[pkg] = set(desired_num).difference(current)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100394
Zdenek Behan508dcce2011-12-05 15:39:32 +0100395 packages = []
396 for pkg in mergemap:
397 for ver in mergemap[pkg]:
Zdenek Behan677b6d82012-04-11 05:31:47 +0200398 if ver != PACKAGE_NONE:
David James90239b92012-11-05 15:31:34 -0800399 packages.append(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100400
401 if not packages:
Mike Frysinger383367e2014-09-16 15:06:17 -0400402 print('Nothing to update!')
David Jamesf8c672f2012-11-06 13:38:11 -0800403 return False
Zdenek Behan508dcce2011-12-05 15:39:32 +0100404
Mike Frysinger383367e2014-09-16 15:06:17 -0400405 print('Updating packages:')
406 print(packages)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100407
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100408 cmd = [EMERGE_CMD, '--oneshot', '--update']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100409 if usepkg:
410 cmd.extend(['--getbinpkg', '--usepkgonly'])
411
412 cmd.extend(packages)
413 cros_build_lib.RunCommand(cmd)
David Jamesf8c672f2012-11-06 13:38:11 -0800414 return True
Zdenek Behan508dcce2011-12-05 15:39:32 +0100415
416
417def CleanTargets(targets):
418 """Unmerges old packages that are assumed unnecessary."""
419 unmergemap = {}
420 for target in targets:
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100421 for package in GetTargetPackages(target):
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100422 if IsPackageDisabled(target, package):
423 continue
424 pkg = GetPortagePackage(target, package)
David James66a09c42012-11-05 13:31:38 -0800425 current = GetInstalledPackageVersions(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100426 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200427 desired_num = VersionListToNumeric(target, package, desired, True)
428 if not set(desired_num).issubset(current):
Mike Frysinger383367e2014-09-16 15:06:17 -0400429 print('Some packages have been held back, skipping clean!')
Zdenek Behan699ddd32012-04-13 07:14:08 +0200430 return
Zdenek Behan508dcce2011-12-05 15:39:32 +0100431 unmergemap[pkg] = set(current).difference(desired_num)
432
433 # Cleaning doesn't care about consistency and rebuilding package.* files.
434 packages = []
435 for pkg, vers in unmergemap.iteritems():
436 packages.extend('=%s-%s' % (pkg, ver) for ver in vers if ver != '9999')
437
438 if packages:
Mike Frysinger383367e2014-09-16 15:06:17 -0400439 print('Cleaning packages:')
440 print(packages)
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100441 cmd = [EMERGE_CMD, '--unmerge']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100442 cmd.extend(packages)
443 cros_build_lib.RunCommand(cmd)
444 else:
Mike Frysinger383367e2014-09-16 15:06:17 -0400445 print('Nothing to clean!')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100446
447
448def SelectActiveToolchains(targets, suffixes):
449 """Runs gcc-config and binutils-config to select the desired.
450
451 args:
452 targets - the targets to select
453 """
454 for package in ['gcc', 'binutils']:
455 for target in targets:
456 # Pick the first version in the numbered list as the selected one.
457 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200458 desired_num = VersionListToNumeric(target, package, desired, True)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100459 desired = desired_num[0]
460 # *-config does not play revisions, strip them, keep just PV.
461 desired = portage.versions.pkgsplit('%s-%s' % (package, desired))[1]
462
463 if target == 'host':
464 # *-config is the only tool treating host identically (by tuple).
David James27ac4ae2012-12-03 23:16:15 -0800465 target = toolchain.GetHostTuple()
Zdenek Behan508dcce2011-12-05 15:39:32 +0100466
467 # And finally, attach target to it.
468 desired = '%s-%s' % (target, desired)
469
470 # Target specific hacks
471 if package in suffixes:
472 if target in suffixes[package]:
473 desired += suffixes[package][target]
474
David James7ec5efc2012-11-06 09:39:49 -0800475 extra_env = {'CHOST': target}
476 cmd = ['%s-config' % package, '-c', target]
Zdenek Behan508dcce2011-12-05 15:39:32 +0100477 current = cros_build_lib.RunCommand(cmd, print_cmd=False,
David James7ec5efc2012-11-06 09:39:49 -0800478 redirect_stdout=True, extra_env=extra_env).output.splitlines()[0]
Zdenek Behan508dcce2011-12-05 15:39:32 +0100479 # Do not gcc-config when the current is live or nothing needs to be done.
480 if current != desired and current != '9999':
481 cmd = [ package + '-config', desired ]
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100482 cros_build_lib.RunCommand(cmd, print_cmd=False)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100483
484
Mike Frysinger35247af2012-11-16 18:58:06 -0500485def ExpandTargets(targets_wanted):
486 """Expand any possible toolchain aliases into full targets
487
488 This will expand 'all' and 'sdk' into the respective toolchain tuples.
489
490 Args:
491 targets_wanted: The targets specified by the user.
Mike Frysinger1a736a82013-12-12 01:50:59 -0500492
Mike Frysinger35247af2012-11-16 18:58:06 -0500493 Returns:
494 Full list of tuples with pseudo targets removed.
495 """
David James27ac4ae2012-12-03 23:16:15 -0800496 alltargets = toolchain.GetAllTargets()
Mike Frysinger35247af2012-11-16 18:58:06 -0500497 targets_wanted = set(targets_wanted)
498 if targets_wanted == set(['all']):
499 targets = alltargets
500 elif targets_wanted == set(['sdk']):
501 # Filter out all the non-sdk toolchains as we don't want to mess
502 # with those in all of our builds.
David James27ac4ae2012-12-03 23:16:15 -0800503 targets = toolchain.FilterToolchains(alltargets, 'sdk', True)
Mike Frysingerda838af2014-11-05 12:36:48 -0500504 elif targets_wanted == set(['boards']):
505 # Only pull targets from the boards.
506 targets = {}
Mike Frysinger35247af2012-11-16 18:58:06 -0500507 else:
508 # Verify user input.
509 nonexistent = targets_wanted.difference(alltargets)
510 if nonexistent:
511 raise ValueError('Invalid targets: %s', ','.join(nonexistent))
512 targets = dict((t, alltargets[t]) for t in targets_wanted)
513 return targets
514
515
David Jamesf8c672f2012-11-06 13:38:11 -0800516def UpdateToolchains(usepkg, deleteold, hostonly, reconfig,
517 targets_wanted, boards_wanted):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100518 """Performs all steps to create a synchronized toolchain enviroment.
519
520 args:
521 arguments correspond to the given commandline flags
522 """
David Jamesf8c672f2012-11-06 13:38:11 -0800523 targets, crossdev_targets, reconfig_targets = {}, {}, {}
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100524 if not hostonly:
525 # For hostonly, we can skip most of the below logic, much of which won't
526 # work on bare systems where this is useful.
Mike Frysinger35247af2012-11-16 18:58:06 -0500527 targets = ExpandTargets(targets_wanted)
Mike Frysinger7ccee992012-06-01 21:27:59 -0400528
Mike Frysinger7ccee992012-06-01 21:27:59 -0400529 # Now re-add any targets that might be from this board. This is
530 # to allow unofficial boards to declare their own toolchains.
531 for board in boards_wanted:
David James27ac4ae2012-12-03 23:16:15 -0800532 targets.update(toolchain.GetToolchainsForBoard(board))
Zdenek Behan508dcce2011-12-05 15:39:32 +0100533
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100534 # First check and initialize all cross targets that need to be.
Mike Frysinger7ccee992012-06-01 21:27:59 -0400535 for target in targets:
536 if TargetIsInitialized(target):
537 reconfig_targets[target] = targets[target]
538 else:
539 crossdev_targets[target] = targets[target]
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100540 if crossdev_targets:
Mike Frysinger383367e2014-09-16 15:06:17 -0400541 print('The following targets need to be re-initialized:')
542 print(crossdev_targets)
David James66a09c42012-11-05 13:31:38 -0800543 Crossdev.UpdateTargets(crossdev_targets, usepkg)
Zdenek Behan8be29ba2012-05-29 23:10:34 +0200544 # Those that were not initialized may need a config update.
David James66a09c42012-11-05 13:31:38 -0800545 Crossdev.UpdateTargets(reconfig_targets, usepkg, config_only=True)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100546
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100547 # We want host updated.
Mike Frysinger7ccee992012-06-01 21:27:59 -0400548 targets['host'] = {}
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100549
550 # Now update all packages.
David Jamesf8c672f2012-11-06 13:38:11 -0800551 if UpdateTargets(targets, usepkg) or crossdev_targets or reconfig:
552 SelectActiveToolchains(targets, CONFIG_TARGET_SUFFIXES)
David James7ec5efc2012-11-06 09:39:49 -0800553
554 if deleteold:
555 CleanTargets(targets)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100556
Mike Frysingerc880a962013-11-08 13:59:06 -0500557 # Now that we've cleared out old versions, see if we need to rebuild
558 # anything. Can't do this earlier as it might not be broken.
559 RebuildLibtool()
560
Zdenek Behan508dcce2011-12-05 15:39:32 +0100561
Mike Frysinger35247af2012-11-16 18:58:06 -0500562def ShowBoardConfig(board):
563 """Show the toolchain tuples used by |board|
564
565 Args:
566 board: The board to query.
567 """
David James27ac4ae2012-12-03 23:16:15 -0800568 toolchains = toolchain.GetToolchainsForBoard(board)
Mike Frysinger35247af2012-11-16 18:58:06 -0500569 # Make sure we display the default toolchain first.
Mike Frysinger383367e2014-09-16 15:06:17 -0400570 print(','.join(
David James27ac4ae2012-12-03 23:16:15 -0800571 toolchain.FilterToolchains(toolchains, 'default', True).keys() +
Mike Frysinger383367e2014-09-16 15:06:17 -0400572 toolchain.FilterToolchains(toolchains, 'default', False).keys()))
Mike Frysinger35247af2012-11-16 18:58:06 -0500573
574
Mike Frysinger35247af2012-11-16 18:58:06 -0500575def GeneratePathWrapper(root, wrappath, path):
576 """Generate a shell script to execute another shell script
577
578 Since we can't symlink a wrapped ELF (see GenerateLdsoWrapper) because the
579 argv[0] won't be pointing to the correct path, generate a shell script that
580 just executes another program with its full path.
581
582 Args:
583 root: The root tree to generate scripts inside of
584 wrappath: The full path (inside |root|) to create the wrapper
585 path: The target program which this wrapper will execute
586 """
587 replacements = {
588 'path': path,
589 'relroot': os.path.relpath('/', os.path.dirname(wrappath)),
590 }
591 wrapper = """#!/bin/sh
592base=$(realpath "$0")
593basedir=${base%%/*}
594exec "${basedir}/%(relroot)s%(path)s" "$@"
595""" % replacements
596 root_wrapper = root + wrappath
597 if os.path.islink(root_wrapper):
598 os.unlink(root_wrapper)
599 else:
600 osutils.SafeMakedirs(os.path.dirname(root_wrapper))
601 osutils.WriteFile(root_wrapper, wrapper)
Mike Frysinger60ec1012013-10-21 00:11:10 -0400602 os.chmod(root_wrapper, 0o755)
Mike Frysinger35247af2012-11-16 18:58:06 -0500603
604
605def FileIsCrosSdkElf(elf):
606 """Determine if |elf| is an ELF that we execute in the cros_sdk
607
608 We don't need this to be perfect, just quick. It makes sure the ELF
609 is a 64bit LSB x86_64 ELF. That is the native type of cros_sdk.
610
611 Args:
612 elf: The file to check
Mike Frysinger1a736a82013-12-12 01:50:59 -0500613
Mike Frysinger35247af2012-11-16 18:58:06 -0500614 Returns:
615 True if we think |elf| is a native ELF
616 """
617 with open(elf) as f:
618 data = f.read(20)
619 # Check the magic number, EI_CLASS, EI_DATA, and e_machine.
620 return (data[0:4] == '\x7fELF' and
621 data[4] == '\x02' and
622 data[5] == '\x01' and
623 data[18] == '\x3e')
624
625
626def IsPathPackagable(ptype, path):
627 """Should the specified file be included in a toolchain package?
628
629 We only need to handle files as we'll create dirs as we need them.
630
631 Further, trim files that won't be useful:
632 - non-english translations (.mo) since it'd require env vars
633 - debug files since these are for the host compiler itself
634 - info/man pages as they're big, and docs are online, and the
635 native docs should work fine for the most part (`man gcc`)
636
637 Args:
638 ptype: A string describing the path type (i.e. 'file' or 'dir' or 'sym')
639 path: The full path to inspect
Mike Frysinger1a736a82013-12-12 01:50:59 -0500640
Mike Frysinger35247af2012-11-16 18:58:06 -0500641 Returns:
642 True if we want to include this path in the package
643 """
644 return not (ptype in ('dir',) or
645 path.startswith('/usr/lib/debug/') or
646 os.path.splitext(path)[1] == '.mo' or
647 ('/man/' in path or '/info/' in path))
648
649
650def ReadlinkRoot(path, root):
651 """Like os.readlink(), but relative to a |root|
652
653 Args:
654 path: The symlink to read
655 root: The path to use for resolving absolute symlinks
Mike Frysinger1a736a82013-12-12 01:50:59 -0500656
Mike Frysinger35247af2012-11-16 18:58:06 -0500657 Returns:
658 A fully resolved symlink path
659 """
660 while os.path.islink(root + path):
661 path = os.path.join(os.path.dirname(path), os.readlink(root + path))
662 return path
663
664
665def _GetFilesForTarget(target, root='/'):
666 """Locate all the files to package for |target|
667
668 This does not cover ELF dependencies.
669
670 Args:
671 target: The toolchain target name
672 root: The root path to pull all packages from
Mike Frysinger1a736a82013-12-12 01:50:59 -0500673
Mike Frysinger35247af2012-11-16 18:58:06 -0500674 Returns:
675 A tuple of a set of all packable paths, and a set of all paths which
676 are also native ELFs
677 """
678 paths = set()
679 elfs = set()
680
681 # Find all the files owned by the packages for this target.
682 for pkg in GetTargetPackages(target):
683 # Ignore packages that are part of the target sysroot.
684 if pkg in ('kernel', 'libc'):
685 continue
686
687 atom = GetPortagePackage(target, pkg)
688 cat, pn = atom.split('/')
689 ver = GetInstalledPackageVersions(atom)[0]
690 cros_build_lib.Info('packaging %s-%s', atom, ver)
691
692 # pylint: disable=E1101
693 dblink = portage.dblink(cat, pn + '-' + ver, myroot=root,
694 settings=portage.settings)
695 contents = dblink.getcontents()
696 for obj in contents:
697 ptype = contents[obj][0]
698 if not IsPathPackagable(ptype, obj):
699 continue
700
701 if ptype == 'obj':
702 # For native ELFs, we need to pull in their dependencies too.
703 if FileIsCrosSdkElf(obj):
704 elfs.add(obj)
705 paths.add(obj)
706
707 return paths, elfs
708
709
710def _BuildInitialPackageRoot(output_dir, paths, elfs, ldpaths,
711 path_rewrite_func=lambda x:x, root='/'):
712 """Link in all packable files and their runtime dependencies
713
714 This also wraps up executable ELFs with helper scripts.
715
716 Args:
717 output_dir: The output directory to store files
718 paths: All the files to include
719 elfs: All the files which are ELFs (a subset of |paths|)
720 ldpaths: A dict of static ldpath information
721 path_rewrite_func: User callback to rewrite paths in output_dir
722 root: The root path to pull all packages/files from
723 """
724 # Link in all the files.
725 sym_paths = []
726 for path in paths:
727 new_path = path_rewrite_func(path)
728 dst = output_dir + new_path
729 osutils.SafeMakedirs(os.path.dirname(dst))
730
731 # Is this a symlink which we have to rewrite or wrap?
732 # Delay wrap check until after we have created all paths.
733 src = root + path
734 if os.path.islink(src):
735 tgt = os.readlink(src)
736 if os.path.sep in tgt:
737 sym_paths.append((new_path, lddtree.normpath(ReadlinkRoot(src, root))))
738
739 # Rewrite absolute links to relative and then generate the symlink
740 # ourselves. All other symlinks can be hardlinked below.
741 if tgt[0] == '/':
742 tgt = os.path.relpath(tgt, os.path.dirname(new_path))
743 os.symlink(tgt, dst)
744 continue
745
746 os.link(src, dst)
747
748 # Now see if any of the symlinks need to be wrapped.
749 for sym, tgt in sym_paths:
750 if tgt in elfs:
751 GeneratePathWrapper(output_dir, sym, tgt)
752
753 # Locate all the dependencies for all the ELFs. Stick them all in the
754 # top level "lib" dir to make the wrapper simpler. This exact path does
755 # not matter since we execute ldso directly, and we tell the ldso the
756 # exact path to search for its libraries.
757 libdir = os.path.join(output_dir, 'lib')
758 osutils.SafeMakedirs(libdir)
759 donelibs = set()
760 for elf in elfs:
Mike Frysingerea7688e2014-07-31 22:40:33 -0400761 e = lddtree.ParseELF(elf, root=root, ldpaths=ldpaths)
Mike Frysinger35247af2012-11-16 18:58:06 -0500762 interp = e['interp']
763 if interp:
764 # Generate a wrapper if it is executable.
Mike Frysingerc2ec0902013-03-26 01:28:45 -0400765 interp = os.path.join('/lib', os.path.basename(interp))
766 lddtree.GenerateLdsoWrapper(output_dir, path_rewrite_func(elf), interp,
767 libpaths=e['rpath'] + e['runpath'])
Mike Frysinger35247af2012-11-16 18:58:06 -0500768
769 for lib, lib_data in e['libs'].iteritems():
770 if lib in donelibs:
771 continue
772
773 src = path = lib_data['path']
774 if path is None:
775 cros_build_lib.Warning('%s: could not locate %s', elf, lib)
776 continue
777 donelibs.add(lib)
778
779 # Needed libs are the SONAME, but that is usually a symlink, not a
780 # real file. So link in the target rather than the symlink itself.
781 # We have to walk all the possible symlinks (SONAME could point to a
782 # symlink which points to a symlink), and we have to handle absolute
783 # ourselves (since we have a "root" argument).
784 dst = os.path.join(libdir, os.path.basename(path))
785 src = ReadlinkRoot(src, root)
786
787 os.link(root + src, dst)
788
789
790def _EnvdGetVar(envd, var):
791 """Given a Gentoo env.d file, extract a var from it
792
793 Args:
794 envd: The env.d file to load (may be a glob path)
795 var: The var to extract
Mike Frysinger1a736a82013-12-12 01:50:59 -0500796
Mike Frysinger35247af2012-11-16 18:58:06 -0500797 Returns:
798 The value of |var|
799 """
800 envds = glob.glob(envd)
801 assert len(envds) == 1, '%s: should have exactly 1 env.d file' % envd
802 envd = envds[0]
803 return cros_build_lib.LoadKeyValueFile(envd)[var]
804
805
806def _ProcessBinutilsConfig(target, output_dir):
807 """Do what binutils-config would have done"""
808 binpath = os.path.join('/bin', target + '-')
Mike Frysingerd4d40fd2014-11-06 17:30:57 -0500809
810 # Locate the bin dir holding the gold linker.
811 binutils_bin_path = os.path.join(output_dir, 'usr', toolchain.GetHostTuple(),
812 target, 'binutils-bin')
813 globpath = os.path.join(binutils_bin_path, '*-gold')
Mike Frysinger35247af2012-11-16 18:58:06 -0500814 srcpath = glob.glob(globpath)
Mike Frysingerd4d40fd2014-11-06 17:30:57 -0500815 if not srcpath:
816 # Maybe this target doesn't support gold.
817 globpath = os.path.join(binutils_bin_path, '*')
818 srcpath = glob.glob(globpath)
819 assert len(srcpath) == 1, ('%s: matched more than one path (but not *-gold)'
820 % globpath)
821 srcpath = srcpath[0]
822 ld_path = os.path.join(srcpath, 'ld')
823 assert os.path.exists(ld_path), '%s: linker is missing!' % ld_path
824 ld_path = os.path.join(srcpath, 'ld.bfd')
825 assert os.path.exists(ld_path), '%s: linker is missing!' % ld_path
826 ld_path = os.path.join(srcpath, 'ld.gold')
827 assert not os.path.exists(ld_path), ('%s: exists, but gold dir does not!'
828 % ld_path)
829
830 # Nope, no gold support to be found.
831 gold_supported = False
832 cros_build_lib.Warning('%s: binutils lacks support for the gold linker',
833 target)
834 else:
835 assert len(srcpath) == 1, '%s: did not match exactly 1 path' % globpath
836 gold_supported = True
837
Mike Frysinger35247af2012-11-16 18:58:06 -0500838 srcpath = srcpath[0][len(output_dir):]
839 gccpath = os.path.join('/usr', 'libexec', 'gcc')
840 for prog in os.listdir(output_dir + srcpath):
841 # Skip binaries already wrapped.
842 if not prog.endswith('.real'):
843 GeneratePathWrapper(output_dir, binpath + prog,
844 os.path.join(srcpath, prog))
845 GeneratePathWrapper(output_dir, os.path.join(gccpath, prog),
846 os.path.join(srcpath, prog))
847
David James27ac4ae2012-12-03 23:16:15 -0800848 libpath = os.path.join('/usr', toolchain.GetHostTuple(), target, 'lib')
Mike Frysingerd4d40fd2014-11-06 17:30:57 -0500849 envd = os.path.join(output_dir, 'etc', 'env.d', 'binutils', '*')
850 if gold_supported:
851 envd += '-gold'
Mike Frysinger35247af2012-11-16 18:58:06 -0500852 srcpath = _EnvdGetVar(envd, 'LIBPATH')
853 os.symlink(os.path.relpath(srcpath, os.path.dirname(libpath)),
854 output_dir + libpath)
855
856
857def _ProcessGccConfig(target, output_dir):
858 """Do what gcc-config would have done"""
859 binpath = '/bin'
860 envd = os.path.join(output_dir, 'etc', 'env.d', 'gcc', '*')
861 srcpath = _EnvdGetVar(envd, 'GCC_PATH')
862 for prog in os.listdir(output_dir + srcpath):
863 # Skip binaries already wrapped.
864 if (not prog.endswith('.real') and
865 not prog.endswith('.elf') and
866 prog.startswith(target)):
867 GeneratePathWrapper(output_dir, os.path.join(binpath, prog),
868 os.path.join(srcpath, prog))
869 return srcpath
870
871
872def _ProcessSysrootWrapper(_target, output_dir, srcpath):
873 """Remove chroot-specific things from our sysroot wrapper"""
874 # Disable ccache since we know it won't work outside of chroot.
875 sysroot_wrapper = glob.glob(os.path.join(
876 output_dir + srcpath, 'sysroot_wrapper*'))[0]
877 contents = osutils.ReadFile(sysroot_wrapper).splitlines()
878 for num in xrange(len(contents)):
879 if '@CCACHE_DEFAULT@' in contents[num]:
880 contents[num] = 'use_ccache = False'
881 break
882 # Can't update the wrapper in place since it's a hardlink to a file in /.
883 os.unlink(sysroot_wrapper)
884 osutils.WriteFile(sysroot_wrapper, '\n'.join(contents))
Mike Frysinger60ec1012013-10-21 00:11:10 -0400885 os.chmod(sysroot_wrapper, 0o755)
Mike Frysinger35247af2012-11-16 18:58:06 -0500886
887
888def _ProcessDistroCleanups(target, output_dir):
889 """Clean up the tree and remove all distro-specific requirements
890
891 Args:
892 target: The toolchain target name
893 output_dir: The output directory to clean up
894 """
895 _ProcessBinutilsConfig(target, output_dir)
896 gcc_path = _ProcessGccConfig(target, output_dir)
897 _ProcessSysrootWrapper(target, output_dir, gcc_path)
898
899 osutils.RmDir(os.path.join(output_dir, 'etc'))
900
901
902def CreatePackagableRoot(target, output_dir, ldpaths, root='/'):
903 """Setup a tree from the packages for the specified target
904
905 This populates a path with all the files from toolchain packages so that
906 a tarball can easily be generated from the result.
907
908 Args:
909 target: The target to create a packagable root from
910 output_dir: The output directory to place all the files
911 ldpaths: A dict of static ldpath information
912 root: The root path to pull all packages/files from
913 """
914 # Find all the files owned by the packages for this target.
915 paths, elfs = _GetFilesForTarget(target, root=root)
916
917 # Link in all the package's files, any ELF dependencies, and wrap any
918 # executable ELFs with helper scripts.
919 def MoveUsrBinToBin(path):
920 """Move /usr/bin to /bin so people can just use that toplevel dir"""
921 return path[4:] if path.startswith('/usr/bin/') else path
922 _BuildInitialPackageRoot(output_dir, paths, elfs, ldpaths,
923 path_rewrite_func=MoveUsrBinToBin, root=root)
924
925 # The packages, when part of the normal distro, have helper scripts
926 # that setup paths and such. Since we are making this standalone, we
927 # need to preprocess all that ourselves.
928 _ProcessDistroCleanups(target, output_dir)
929
930
931def CreatePackages(targets_wanted, output_dir, root='/'):
932 """Create redistributable cross-compiler packages for the specified targets
933
934 This creates toolchain packages that should be usable in conjunction with
935 a downloaded sysroot (created elsewhere).
936
937 Tarballs (one per target) will be created in $PWD.
938
939 Args:
Don Garrett25f309a2014-03-19 14:02:12 -0700940 targets_wanted: The targets to package up.
941 output_dir: The directory to put the packages in.
942 root: The root path to pull all packages/files from.
Mike Frysinger35247af2012-11-16 18:58:06 -0500943 """
Mike Frysingerd4d40fd2014-11-06 17:30:57 -0500944 cros_build_lib.Info('Writing tarballs to %s', output_dir)
Mike Frysinger35247af2012-11-16 18:58:06 -0500945 osutils.SafeMakedirs(output_dir)
946 ldpaths = lddtree.LoadLdpaths(root)
947 targets = ExpandTargets(targets_wanted)
948
David James4bc13702013-03-26 08:08:04 -0700949 with osutils.TempDir() as tempdir:
Mike Frysinger35247af2012-11-16 18:58:06 -0500950 # We have to split the root generation from the compression stages. This is
951 # because we hardlink in all the files (to avoid overhead of reading/writing
952 # the copies multiple times). But tar gets angry if a file's hardlink count
953 # changes from when it starts reading a file to when it finishes.
954 with parallel.BackgroundTaskRunner(CreatePackagableRoot) as queue:
955 for target in targets:
956 output_target_dir = os.path.join(tempdir, target)
957 queue.put([target, output_target_dir, ldpaths, root])
958
959 # Build the tarball.
960 with parallel.BackgroundTaskRunner(cros_build_lib.CreateTarball) as queue:
961 for target in targets:
962 tar_file = os.path.join(output_dir, target + '.tar.xz')
963 queue.put([tar_file, os.path.join(tempdir, target)])
964
965
Brian Harring30675052012-02-29 12:18:22 -0800966def main(argv):
Mike Frysinger0c808452014-11-06 17:30:23 -0500967 parser = commandline.ArgumentParser(description=__doc__)
968 parser.add_argument('-u', '--nousepkg',
969 action='store_false', dest='usepkg', default=True,
970 help='Use prebuilt packages if possible')
971 parser.add_argument('-d', '--deleteold',
972 action='store_true', dest='deleteold', default=False,
973 help='Unmerge deprecated packages')
974 parser.add_argument('-t', '--targets',
975 dest='targets', default='sdk',
976 help='Comma separated list of tuples. '
977 'Special keyword \'host\' is allowed. Default: sdk')
978 parser.add_argument('--include-boards',
979 dest='include_boards', default='',
980 help='Comma separated list of boards whose toolchains we'
981 ' will always include. Default: none')
982 parser.add_argument('--hostonly',
983 dest='hostonly', default=False, action='store_true',
984 help='Only setup the host toolchain. '
985 'Useful for bootstrapping chroot')
986 parser.add_argument('--show-board-cfg',
987 dest='board_cfg', default=None,
988 help='Board to list toolchain tuples for')
989 parser.add_argument('--create-packages',
990 action='store_true', default=False,
991 help='Build redistributable packages')
992 parser.add_argument('--output-dir', default=os.getcwd(), type='path',
993 help='Output directory')
994 parser.add_argument('--reconfig', default=False, action='store_true',
995 help='Reload crossdev config and reselect toolchains')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100996
Mike Frysinger0c808452014-11-06 17:30:23 -0500997 options = parser.parse_args(argv)
998 options.Freeze()
Zdenek Behan508dcce2011-12-05 15:39:32 +0100999
Mike Frysinger35247af2012-11-16 18:58:06 -05001000 # Figure out what we're supposed to do and reject conflicting options.
1001 if options.board_cfg and options.create_packages:
1002 parser.error('conflicting options: create-packages & show-board-cfg')
Mike Frysinger984d0622012-06-01 16:08:44 -04001003
Zdenek Behan508dcce2011-12-05 15:39:32 +01001004 targets = set(options.targets.split(','))
Mike Frysinger0c808452014-11-06 17:30:23 -05001005 boards = (set(options.include_boards.split(',')) if options.include_boards
1006 else set())
Mike Frysinger35247af2012-11-16 18:58:06 -05001007
1008 if options.board_cfg:
1009 ShowBoardConfig(options.board_cfg)
1010 elif options.create_packages:
1011 cros_build_lib.AssertInsideChroot()
1012 Crossdev.Load(False)
1013 CreatePackages(targets, options.output_dir)
1014 else:
1015 cros_build_lib.AssertInsideChroot()
1016 # This has to be always run as root.
1017 if os.geteuid() != 0:
1018 cros_build_lib.Die('this script must be run as root')
1019
1020 Crossdev.Load(options.reconfig)
1021 UpdateToolchains(options.usepkg, options.deleteold, options.hostonly,
1022 options.reconfig, targets, boards)
1023 Crossdev.Save()
1024
1025 return 0