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 <anush@chromium.org>
Tested-by: Zdenek Behan <zbehan@chromium.org>
This commit is contained in:
Zdenek Behan 2011-08-20 01:18:03 +02:00
parent 50637eebb8
commit cc6d2e7f85
2 changed files with 16 additions and 2 deletions

View File

@ -1 +0,0 @@
sdk_lib/enter_chroot.sh

8
enter_chroot.sh Executable file
View File

@ -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

View File

@ -1 +0,0 @@
../third_party/chromiumos-overlay/chromeos/scripts/make_chroot

8
make_chroot Executable file
View File

@ -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