mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 05:56:58 +02:00
by mobile-providers. BUG=none TEST=./build_packages Change-Id: I07a2fc91f0782d6a03f535333a8925f9fe6283c1 Reviewed-on: http://gerrit.chromium.org/gerrit/3973 Tested-by: Nathan J. Williams <njw@chromium.org> Reviewed-by: David James <davidjames@chromium.org>
17 lines
581 B
Plaintext
17 lines
581 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.
|
|
|
|
# Unmerge net-misc/mobile-broadband-provider-info because it's
|
|
# been replaced by chromeos-base/mobile-providers.
|
|
for board_root in /build/*; do
|
|
if [ -d "${board_root}" ]; then
|
|
board=$(basename "${board_root}")
|
|
CLEAN_DELAY=0 emerge-${board} \
|
|
--unmerge net-misc/mobile-broadband-provider-info || true
|
|
fi
|
|
done
|
|
|
|
info "Chroot upgraded to version 6: mobile-broadband-provider-info removed"
|
|
exit 0
|