From afa1b4ca27d6e9cc6be1f3d7e0f4a5a57a7bc98c Mon Sep 17 00:00:00 2001 From: Mandeep Singh Baines Date: Thu, 24 Mar 2011 14:04:37 -0700 Subject: [PATCH] cros_workon: remove this file The version of cros_workon has been deprecated for 3 weeks. Time to remove. BUG=11507 TEST=none Change-Id: Ie843046ab616519109124b04c7b958f6c28020fb R=robotboy@chromium.org,anush@chromium.org Review URL: http://codereview.chromium.org/6676105 --- cros_workon | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 cros_workon diff --git a/cros_workon b/cros_workon deleted file mode 100755 index 38738a618f..0000000000 --- a/cros_workon +++ /dev/null @@ -1,34 +0,0 @@ -#!/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"