blob: 322b62fda071ccd426a1f4d41b463d4d6291799c [file] [log] [blame]
Andreas Gampe554d7ee2015-09-15 08:57:12 -07001# Copyright (C) 2015 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# This script is used on the host only. It uses a common subset
16# shell dialect that should work well. It is partially derived
17# from art/tools/art.
18
19function follow_links() {
20 if [ z"$BASH_SOURCE" != z ]; then
21 file="$BASH_SOURCE"
22 else
23 file="$0"
24 fi
25 while [ -h "$file" ]; do
26 # On Mac OS, readlink -f doesn't work.
27 file="$(readlink "$file")"
28 done
29 echo "$file"
30}
31
32
33PROG_NAME="$(follow_links)"
34PROG_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
35ANDROID_ROOT=$PROG_DIR/..
36
Andreas Gampe43747492016-11-28 15:07:39 -080037java -cp $ANDROID_ROOT/framework/preload2.jar com.android.preload.Main $@