From cc6d2e7f8591df6a5540ddb83144f61544b6e1e1 Mon Sep 17 00:00:00 2001 From: Zdenek Behan Date: Sat, 20 Aug 2011 01:18:03 +0200 Subject: [PATCH] crosutils: switch enter_chroot.sh and make_chroot for placeholders * This CL deprecates the use of enter_chroot and make_chroot completely, leaving the functionality exposed only through cros_sdk. BUG=chromium-os:18750 TEST=run them Change-Id: I864960b4e25245341431c3a3950638fa569820ed Reviewed-on: http://gerrit.chromium.org/gerrit/6358 Reviewed-by: Anush Elangovan Tested-by: Zdenek Behan --- enter_chroot.sh | 9 ++++++++- make_chroot | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) mode change 120000 => 100755 enter_chroot.sh mode change 120000 => 100755 make_chroot diff --git a/enter_chroot.sh b/enter_chroot.sh deleted file mode 120000 index b5fae54ac3..0000000000 --- a/enter_chroot.sh +++ /dev/null @@ -1 +0,0 @@ -sdk_lib/enter_chroot.sh \ No newline at end of file diff --git a/enter_chroot.sh b/enter_chroot.sh new file mode 100755 index 0000000000..fe0582b558 --- /dev/null +++ b/enter_chroot.sh @@ -0,0 +1,8 @@ +#!/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. + +echo "This command is deprecated, please run cros_sdk $*" +exit 1 diff --git a/make_chroot b/make_chroot deleted file mode 120000 index 1317388fee..0000000000 --- a/make_chroot +++ /dev/null @@ -1 +0,0 @@ -../third_party/chromiumos-overlay/chromeos/scripts/make_chroot \ No newline at end of file diff --git a/make_chroot b/make_chroot new file mode 100755 index 0000000000..e7920c1502 --- /dev/null +++ b/make_chroot @@ -0,0 +1,8 @@ +#!/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. + +echo "This command is deprecated, please run cros_sdk --download" +exit 1