flatcar-scripts/cros_workon
Mandeep Singh Baines efba42eb10 cros_workon: start process of removing cros_workon from src/scripts
All tools have been modified to use /usr/bin/cros_workon. So we can
start removing from src/scripts.

For now, print an error so users aren't caught off guard. In a couple
of weeks, I'll remove from src/scripts.

BUG=11507
TEST=none

Change-Id: Ia5f9996bc54fd97b1264cddcf4a0f945fbcb01b4

Review URL: http://codereview.chromium.org/6594132
2011-03-02 18:32:09 -08:00

35 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
# Copyright (c) 2010 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 script moves ebuilds between 'stable' and 'live' states.
# By default 'stable' ebuilds point at and build from source at the
# last known good commit. Moving an ebuild to 'live' (via cros_workon start)
# is intended to support development. The current source tip is fetched,
# source modified and built using the unstable 'live' (9999) ebuild.
# --- BEGIN COMMON.SH BOILERPLATE ---
# Load common CrOS utilities. Inside the chroot this file is installed in
# /usr/lib/crosutils. Outside the chroot we find it relative to the script's
# location.
find_common_sh() {
local common_paths=(/usr/lib/crosutils $(dirname "$(readlink -f "$0")"))
local path
SCRIPT_ROOT=
for path in "${common_paths[@]}"; do
if [ -r "${path}/common.sh" ]; then
SCRIPT_ROOT=${path}
break
fi
done
}
find_common_sh
. "${SCRIPT_ROOT}/common.sh" || (echo "Unable to load common.sh" && exit 1)
# --- END COMMON.SH BOILERPLATE ---
die "error: Please run cros_workon from chroot:/usr/bin/cros_workon"