blob: 8f31b8b1fb1e336ad5151995cc7de18f2a7cbd9e [file] [log] [blame]
# Copyright (c) 2012 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.
# This is meant to happen immediately after we update these boards
# from 32bit to 64bit. It moves the existing build root out of the
# way and re-creates the build root. The user must remove the copy
# of the old build root manually if it is not needed.
for board in kiev; do
build="/build/${board}"
if [[ -d ${build} ]] ; then
info "Moving 32bit ${board} to ${board}.32bit"
info "If you don't need it, please run "
info "sudo rm -rf --one-file-system ${build}.32bit"
sudo mv ${build}{,.32bit}
info "Running setup_board --board=${board}"
~/trunk/src/scripts/setup_board --board=${board} --skip_chroot_upgrade
fi
done