Andreas Gampe | 554d7ee | 2015-09-15 08:57:12 -0700 | [diff] [blame] | 1 | # 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 | |
| 19 | function 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 | |
| 33 | PROG_NAME="$(follow_links)" |
| 34 | PROG_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" |
| 35 | ANDROID_ROOT=$PROG_DIR/.. |
| 36 | |
Andreas Gampe | 4374749 | 2016-11-28 15:07:39 -0800 | [diff] [blame] | 37 | java -cp $ANDROID_ROOT/framework/preload2.jar com.android.preload.Main $@ |