mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 22:16:58 +02:00
These files need not be +x to work since we source them directly. BUG=None TEST=update chroot from ver 12 to ver 13 Change-Id: I3133cf532286bed63308e82767f0c95900f54e84 Reviewed-on: http://gerrit.chromium.org/gerrit/10342 Reviewed-by: Sonny Rao <sonnyrao@chromium.org> Reviewed-by: David James <davidjames@chromium.org> Commit-Ready: Mike Frysinger <vapier@chromium.org> Tested-by: Mike Frysinger <vapier@chromium.org>
11 lines
345 B
Plaintext
11 lines
345 B
Plaintext
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
for toolchain in i686-pc-linux-gnu x86_64-cros-linux-gnu; do
|
|
if label=$(binutils-config -c $toolchain); then
|
|
sudo binutils-config ${label%-gold}-gold
|
|
fi
|
|
done
|
|
exit 0
|