blob: 462c4cbadbc1d4d4499a9ac1f9ee2b5bbde1f3ef [file] [log] [blame]
# Copyright (c) 2013 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.
# We've migrated to kmod now. Force existing builds to shift over too.
export CLEAN_DELAY=0
cleanit() {
local root=$1
sudo emerge --root "${root}" -Cq sys-apps/module-init-tools
}
cleanit / &
for board_root in /build/*; do
cleanit "${board_root}" &
done
wait