| Scott Anderson | 1a5fc95 | 2012-03-07 17:15:06 -0800 | [diff] [blame] | 1 | function hmm() { | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2 | cat <<EOF | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 3 | Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment: | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 4 | - lunch:   lunch <product_name>-<build_variant> | 
| Ying Wang | f05c4f7 | 2013-01-31 11:16:57 -0800 | [diff] [blame] | 5 | - tapas:   tapas [<App1> <App2> ...] [arm|x86|mips|armv5] [eng|userdebug|user] | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 6 | - croot:   Changes directory to the top of the tree. | 
|  | 7 | - m:       Makes from the top of the tree. | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 8 | - mm:      Builds all of the modules in the current directory, but not their dependencies. | 
|  | 9 | - mmm:     Builds all of the modules in the supplied directories, but not their dependencies. | 
|  | 10 | - mma:     Builds all of the modules in the current directory, and their dependencies. | 
|  | 11 | - mmma:    Builds all of the modules in the supplied directories, and their dependencies. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 12 | - cgrep:   Greps on all local C/C++ files. | 
|  | 13 | - jgrep:   Greps on all local Java files. | 
|  | 14 | - resgrep: Greps on all local res/*.xml files. | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 15 | - godir:   Go to the directory containing a file. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | Look at the source to view more functions. The complete list is: | 
|  | 18 | EOF | 
|  | 19 | T=$(gettop) | 
|  | 20 | local A | 
|  | 21 | A="" | 
|  | 22 | for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do | 
|  | 23 | A="$A $i" | 
|  | 24 | done | 
|  | 25 | echo $A | 
|  | 26 | } | 
|  | 27 |  | 
|  | 28 | # Get the value of a build variable as an absolute path. | 
|  | 29 | function get_abs_build_var() | 
|  | 30 | { | 
|  | 31 | T=$(gettop) | 
|  | 32 | if [ ! "$T" ]; then | 
|  | 33 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 34 | return | 
|  | 35 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 36 | (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \ | 
| Brian Carlstrom | 177285a | 2010-04-06 13:22:02 -0700 | [diff] [blame] | 37 | make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-abs-$1) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 38 | } | 
|  | 39 |  | 
|  | 40 | # Get the exact value of a build variable. | 
|  | 41 | function get_build_var() | 
|  | 42 | { | 
|  | 43 | T=$(gettop) | 
|  | 44 | if [ ! "$T" ]; then | 
|  | 45 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 46 | return | 
|  | 47 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 48 | CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \ | 
|  | 49 | make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-$1 | 
|  | 50 | } | 
|  | 51 |  | 
|  | 52 | # check to see if the supplied product is one we can build | 
|  | 53 | function check_product() | 
|  | 54 | { | 
|  | 55 | T=$(gettop) | 
|  | 56 | if [ ! "$T" ]; then | 
|  | 57 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 58 | return | 
|  | 59 | fi | 
|  | 60 | CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \ | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 61 | TARGET_PRODUCT=$1 \ | 
|  | 62 | TARGET_BUILD_VARIANT= \ | 
|  | 63 | TARGET_BUILD_TYPE= \ | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 64 | TARGET_BUILD_APPS= \ | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 65 | get_build_var TARGET_DEVICE > /dev/null | 
|  | 66 | # hide successful answers, but allow the errors to show | 
|  | 67 | } | 
|  | 68 |  | 
|  | 69 | VARIANT_CHOICES=(user userdebug eng) | 
|  | 70 |  | 
|  | 71 | # check to see if the supplied variant is valid | 
|  | 72 | function check_variant() | 
|  | 73 | { | 
|  | 74 | for v in ${VARIANT_CHOICES[@]} | 
|  | 75 | do | 
|  | 76 | if [ "$v" = "$1" ] | 
|  | 77 | then | 
|  | 78 | return 0 | 
|  | 79 | fi | 
|  | 80 | done | 
|  | 81 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 82 | } | 
|  | 83 |  | 
|  | 84 | function setpaths() | 
|  | 85 | { | 
|  | 86 | T=$(gettop) | 
|  | 87 | if [ ! "$T" ]; then | 
|  | 88 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 89 | return | 
|  | 90 | fi | 
|  | 91 |  | 
|  | 92 | ################################################################## | 
|  | 93 | #                                                                # | 
|  | 94 | #              Read me before you modify this code               # | 
|  | 95 | #                                                                # | 
|  | 96 | #   This function sets ANDROID_BUILD_PATHS to what it is adding  # | 
|  | 97 | #   to PATH, and the next time it is run, it removes that from   # | 
|  | 98 | #   PATH.  This is required so lunch can be run more than once   # | 
|  | 99 | #   and still have working paths.                                # | 
|  | 100 | #                                                                # | 
|  | 101 | ################################################################## | 
|  | 102 |  | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 103 | # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces | 
|  | 104 | # due to "C:\Program Files" being in the path. | 
|  | 105 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 106 | # out with the old | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 107 | if [ -n "$ANDROID_BUILD_PATHS" ] ; then | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 108 | export PATH=${PATH/$ANDROID_BUILD_PATHS/} | 
|  | 109 | fi | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 110 | if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then | 
| Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 111 | export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/} | 
| Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 112 | # strip leading ':', if any | 
|  | 113 | export PATH=${PATH/:%/} | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 114 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 115 |  | 
|  | 116 | # and in with the new | 
|  | 117 | CODE_REVIEWS= | 
|  | 118 | prebuiltdir=$(getprebuilt) | 
| Jing Yu | f5172c7 | 2012-03-29 20:45:50 -0700 | [diff] [blame] | 119 | gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS) | 
| Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 120 |  | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 121 | # defined in core/config.mk | 
|  | 122 | targetgccversion=$(get_build_var TARGET_GCC_VERSION) | 
| Ben Cheng | 1526670 | 2012-12-10 16:04:39 -0800 | [diff] [blame] | 123 | export TARGET_GCC_VERSION=$targetgccversion | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 124 |  | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 125 | # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it. | 
| Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 126 | export ANDROID_EABI_TOOLCHAIN= | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 127 | local ARCH=$(get_build_var TARGET_ARCH) | 
|  | 128 | case $ARCH in | 
| Ben Cheng | 054ffd2 | 2012-12-11 14:01:10 -0800 | [diff] [blame] | 129 | x86) toolchaindir=x86/i686-linux-android-$targetgccversion/bin | 
| Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 130 | ;; | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 131 | arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 132 | ;; | 
| Ben Cheng | 054ffd2 | 2012-12-11 14:01:10 -0800 | [diff] [blame] | 133 | mips) toolchaindir=mips/mipsel-linux-android-$targetgccversion/bin | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 134 | ;; | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 135 | *) | 
|  | 136 | echo "Can't find toolchain for unknown architecture: $ARCH" | 
|  | 137 | toolchaindir=xxxxxxxxx | 
| Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 138 | ;; | 
|  | 139 | esac | 
| Jing Yu | f5172c7 | 2012-03-29 20:45:50 -0700 | [diff] [blame] | 140 | if [ -d "$gccprebuiltdir/$toolchaindir" ]; then | 
|  | 141 | export ANDROID_EABI_TOOLCHAIN=$gccprebuiltdir/$toolchaindir | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 142 | fi | 
| Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 143 |  | 
| Bruce Beare | 42ced6d | 2012-07-17 21:40:01 -0700 | [diff] [blame] | 144 | unset ARM_EABI_TOOLCHAIN ARM_EABI_TOOLCHAIN_PATH | 
| Ying Wang | 08f5e9a | 2012-04-17 18:10:11 -0700 | [diff] [blame] | 145 | case $ARCH in | 
| Bruce Beare | 42ced6d | 2012-07-17 21:40:01 -0700 | [diff] [blame] | 146 | arm) | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 147 | toolchaindir=arm/arm-eabi-$targetgccversion/bin | 
| Bruce Beare | 42ced6d | 2012-07-17 21:40:01 -0700 | [diff] [blame] | 148 | if [ -d "$gccprebuiltdir/$toolchaindir" ]; then | 
|  | 149 | export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir" | 
|  | 150 | ARM_EABI_TOOLCHAIN_PATH=":$gccprebuiltdir/$toolchaindir" | 
|  | 151 | fi | 
| Ying Wang | 08f5e9a | 2012-04-17 18:10:11 -0700 | [diff] [blame] | 152 | ;; | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 153 | mips) toolchaindir=mips/mips-eabi-4.4.3/bin | 
|  | 154 | ;; | 
| Ying Wang | 08f5e9a | 2012-04-17 18:10:11 -0700 | [diff] [blame] | 155 | *) | 
| Bruce Beare | 42ced6d | 2012-07-17 21:40:01 -0700 | [diff] [blame] | 156 | # No need to set ARM_EABI_TOOLCHAIN for other ARCHs | 
| Ying Wang | 08f5e9a | 2012-04-17 18:10:11 -0700 | [diff] [blame] | 157 | ;; | 
|  | 158 | esac | 
| Ying Wang | 08f5e9a | 2012-04-17 18:10:11 -0700 | [diff] [blame] | 159 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 160 | export ANDROID_TOOLCHAIN=$ANDROID_EABI_TOOLCHAIN | 
|  | 161 | export ANDROID_QTOOLS=$T/development/emulator/qtools | 
| Robert Greenwalt | 0987f03 | 2012-04-27 10:02:37 -0700 | [diff] [blame] | 162 | export ANDROID_DEV_SCRIPTS=$T/development/scripts | 
| Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 163 | export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN$ARM_EABI_TOOLCHAIN_PATH$CODE_REVIEWS:$ANDROID_DEV_SCRIPTS: | 
|  | 164 | export PATH=$ANDROID_BUILD_PATHS$PATH | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 165 |  | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 166 | unset ANDROID_JAVA_TOOLCHAIN | 
| Ji-Hwan Lee | 752ad06 | 2011-07-04 14:09:47 +0900 | [diff] [blame] | 167 | unset ANDROID_PRE_BUILD_PATHS | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 168 | if [ -n "$JAVA_HOME" ]; then | 
|  | 169 | export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin | 
| Ji-Hwan Lee | 752ad06 | 2011-07-04 14:09:47 +0900 | [diff] [blame] | 170 | export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN: | 
|  | 171 | export PATH=$ANDROID_PRE_BUILD_PATHS$PATH | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 172 | fi | 
|  | 173 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 174 | unset ANDROID_PRODUCT_OUT | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 175 | export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT) | 
|  | 176 | export OUT=$ANDROID_PRODUCT_OUT | 
|  | 177 |  | 
| Jeff Brown | 8fd5cce | 2011-03-24 17:03:06 -0700 | [diff] [blame] | 178 | unset ANDROID_HOST_OUT | 
|  | 179 | export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT) | 
|  | 180 |  | 
| Ben Cheng | 057fde1 | 2011-11-28 13:55:14 -0800 | [diff] [blame] | 181 | # needed for processing samples collected by perf counters | 
|  | 182 | unset OPROFILE_EVENTS_DIR | 
|  | 183 | export OPROFILE_EVENTS_DIR=$T/external/oprofile/events | 
|  | 184 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 185 | # needed for building linux on MacOS | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 186 | # TODO: fix the path | 
|  | 187 | #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include | 
|  | 188 | } | 
|  | 189 |  | 
|  | 190 | function printconfig() | 
|  | 191 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 192 | T=$(gettop) | 
|  | 193 | if [ ! "$T" ]; then | 
|  | 194 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 195 | return | 
|  | 196 | fi | 
|  | 197 | get_build_var report_config | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
|  | 200 | function set_stuff_for_environment() | 
|  | 201 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 202 | settitle | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 203 | set_java_home | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 204 | setpaths | 
|  | 205 | set_sequence_number | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 206 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 207 | export ANDROID_BUILD_TOP=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 208 | } | 
|  | 209 |  | 
|  | 210 | function set_sequence_number() | 
|  | 211 | { | 
| Joe Onorato | aee4daa | 2010-06-23 14:03:13 -0700 | [diff] [blame] | 212 | export BUILD_ENV_SEQUENCE_NUMBER=10 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 213 | } | 
|  | 214 |  | 
|  | 215 | function settitle() | 
|  | 216 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 217 | if [ "$STAY_OFF_MY_LAWN" = "" ]; then | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 218 | local arch=$(gettargetarch) | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 219 | local product=$TARGET_PRODUCT | 
|  | 220 | local variant=$TARGET_BUILD_VARIANT | 
|  | 221 | local apps=$TARGET_BUILD_APPS | 
|  | 222 | if [ -z "$apps" ]; then | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 223 | export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\"" | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 224 | else | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 225 | export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\"" | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 226 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 227 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 228 | } | 
|  | 229 |  | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 230 | function addcompletions() | 
|  | 231 | { | 
|  | 232 | local T dir f | 
|  | 233 |  | 
|  | 234 | # Keep us from trying to run in something that isn't bash. | 
|  | 235 | if [ -z "${BASH_VERSION}" ]; then | 
|  | 236 | return | 
|  | 237 | fi | 
|  | 238 |  | 
|  | 239 | # Keep us from trying to run in bash that's too old. | 
|  | 240 | if [ ${BASH_VERSINFO[0]} -lt 3 ]; then | 
|  | 241 | return | 
|  | 242 | fi | 
|  | 243 |  | 
|  | 244 | dir="sdk/bash_completion" | 
|  | 245 | if [ -d ${dir} ]; then | 
| Kenny Root | 7546d61 | 2011-07-18 13:11:34 -0700 | [diff] [blame] | 246 | for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 247 | echo "including $f" | 
|  | 248 | . $f | 
|  | 249 | done | 
|  | 250 | fi | 
|  | 251 | } | 
|  | 252 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 253 | function choosetype() | 
|  | 254 | { | 
|  | 255 | echo "Build type choices are:" | 
|  | 256 | echo "     1. release" | 
|  | 257 | echo "     2. debug" | 
|  | 258 | echo | 
|  | 259 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 260 | local DEFAULT_NUM DEFAULT_VALUE | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 261 | DEFAULT_NUM=1 | 
|  | 262 | DEFAULT_VALUE=release | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 263 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 264 | export TARGET_BUILD_TYPE= | 
|  | 265 | local ANSWER | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 266 | while [ -z $TARGET_BUILD_TYPE ] | 
|  | 267 | do | 
|  | 268 | echo -n "Which would you like? ["$DEFAULT_NUM"] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 269 | if [ -z "$1" ] ; then | 
|  | 270 | read ANSWER | 
|  | 271 | else | 
|  | 272 | echo $1 | 
|  | 273 | ANSWER=$1 | 
|  | 274 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 275 | case $ANSWER in | 
|  | 276 | "") | 
|  | 277 | export TARGET_BUILD_TYPE=$DEFAULT_VALUE | 
|  | 278 | ;; | 
|  | 279 | 1) | 
|  | 280 | export TARGET_BUILD_TYPE=release | 
|  | 281 | ;; | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 282 | release) | 
|  | 283 | export TARGET_BUILD_TYPE=release | 
|  | 284 | ;; | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 285 | 2) | 
|  | 286 | export TARGET_BUILD_TYPE=debug | 
|  | 287 | ;; | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 288 | debug) | 
|  | 289 | export TARGET_BUILD_TYPE=debug | 
|  | 290 | ;; | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 291 | *) | 
|  | 292 | echo | 
|  | 293 | echo "I didn't understand your response.  Please try again." | 
|  | 294 | echo | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 295 | ;; | 
|  | 296 | esac | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 297 | if [ -n "$1" ] ; then | 
|  | 298 | break | 
|  | 299 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 300 | done | 
|  | 301 |  | 
|  | 302 | set_stuff_for_environment | 
|  | 303 | } | 
|  | 304 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 305 | # | 
|  | 306 | # This function isn't really right:  It chooses a TARGET_PRODUCT | 
|  | 307 | # based on the list of boards.  Usually, that gets you something | 
|  | 308 | # that kinda works with a generic product, but really, you should | 
|  | 309 | # pick a product by name. | 
|  | 310 | # | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | function chooseproduct() | 
|  | 312 | { | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 313 | if [ "x$TARGET_PRODUCT" != x ] ; then | 
|  | 314 | default_value=$TARGET_PRODUCT | 
|  | 315 | else | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 316 | default_value=full | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 317 | fi | 
|  | 318 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 319 | export TARGET_PRODUCT= | 
|  | 320 | local ANSWER | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 321 | while [ -z "$TARGET_PRODUCT" ] | 
|  | 322 | do | 
| Joe Onorato | 8849aed | 2009-04-29 15:56:47 -0700 | [diff] [blame] | 323 | echo -n "Which product would you like? [$default_value] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 324 | if [ -z "$1" ] ; then | 
|  | 325 | read ANSWER | 
|  | 326 | else | 
|  | 327 | echo $1 | 
|  | 328 | ANSWER=$1 | 
|  | 329 | fi | 
|  | 330 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 331 | if [ -z "$ANSWER" ] ; then | 
|  | 332 | export TARGET_PRODUCT=$default_value | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 333 | else | 
|  | 334 | if check_product $ANSWER | 
|  | 335 | then | 
|  | 336 | export TARGET_PRODUCT=$ANSWER | 
|  | 337 | else | 
|  | 338 | echo "** Not a valid product: $ANSWER" | 
|  | 339 | fi | 
|  | 340 | fi | 
|  | 341 | if [ -n "$1" ] ; then | 
|  | 342 | break | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 343 | fi | 
|  | 344 | done | 
|  | 345 |  | 
|  | 346 | set_stuff_for_environment | 
|  | 347 | } | 
|  | 348 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 349 | function choosevariant() | 
|  | 350 | { | 
|  | 351 | echo "Variant choices are:" | 
|  | 352 | local index=1 | 
|  | 353 | local v | 
|  | 354 | for v in ${VARIANT_CHOICES[@]} | 
|  | 355 | do | 
|  | 356 | # The product name is the name of the directory containing | 
|  | 357 | # the makefile we found, above. | 
|  | 358 | echo "     $index. $v" | 
|  | 359 | index=$(($index+1)) | 
|  | 360 | done | 
|  | 361 |  | 
|  | 362 | local default_value=eng | 
|  | 363 | local ANSWER | 
|  | 364 |  | 
|  | 365 | export TARGET_BUILD_VARIANT= | 
|  | 366 | while [ -z "$TARGET_BUILD_VARIANT" ] | 
|  | 367 | do | 
|  | 368 | echo -n "Which would you like? [$default_value] " | 
|  | 369 | if [ -z "$1" ] ; then | 
|  | 370 | read ANSWER | 
|  | 371 | else | 
|  | 372 | echo $1 | 
|  | 373 | ANSWER=$1 | 
|  | 374 | fi | 
|  | 375 |  | 
|  | 376 | if [ -z "$ANSWER" ] ; then | 
|  | 377 | export TARGET_BUILD_VARIANT=$default_value | 
|  | 378 | elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then | 
|  | 379 | if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then | 
| Kan-Ru Chen | 0745376 | 2010-07-05 15:53:47 +0800 | [diff] [blame] | 380 | export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 381 | fi | 
|  | 382 | else | 
|  | 383 | if check_variant $ANSWER | 
|  | 384 | then | 
|  | 385 | export TARGET_BUILD_VARIANT=$ANSWER | 
|  | 386 | else | 
|  | 387 | echo "** Not a valid variant: $ANSWER" | 
|  | 388 | fi | 
|  | 389 | fi | 
|  | 390 | if [ -n "$1" ] ; then | 
|  | 391 | break | 
|  | 392 | fi | 
|  | 393 | done | 
|  | 394 | } | 
|  | 395 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 396 | function choosecombo() | 
|  | 397 | { | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 398 | choosetype $1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 399 |  | 
|  | 400 | echo | 
|  | 401 | echo | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 402 | chooseproduct $2 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 403 |  | 
|  | 404 | echo | 
|  | 405 | echo | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 406 | choosevariant $3 | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 407 |  | 
|  | 408 | echo | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 409 | set_stuff_for_environment | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 410 | printconfig | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 411 | } | 
|  | 412 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 413 | # Clear this variable.  It will be built up again when the vendorsetup.sh | 
|  | 414 | # files are included at the end of this file. | 
|  | 415 | unset LUNCH_MENU_CHOICES | 
|  | 416 | function add_lunch_combo() | 
|  | 417 | { | 
|  | 418 | local new_combo=$1 | 
|  | 419 | local c | 
|  | 420 | for c in ${LUNCH_MENU_CHOICES[@]} ; do | 
|  | 421 | if [ "$new_combo" = "$c" ] ; then | 
|  | 422 | return | 
|  | 423 | fi | 
|  | 424 | done | 
|  | 425 | LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo) | 
|  | 426 | } | 
|  | 427 |  | 
|  | 428 | # add the default one here | 
| Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame^] | 429 | add_lunch_combo aosp_arm-eng | 
|  | 430 | add_lunch_combo aosp_x86-eng | 
|  | 431 | add_lunch_combo aosp_mips-eng | 
| Bruce Beare | ba366c4 | 2011-02-15 16:46:08 -0800 | [diff] [blame] | 432 | add_lunch_combo vbox_x86-eng | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 433 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 434 | function print_lunch_menu() | 
|  | 435 | { | 
|  | 436 | local uname=$(uname) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 437 | echo | 
|  | 438 | echo "You're building on" $uname | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 439 | echo | 
|  | 440 | echo "Lunch menu... pick a combo:" | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 441 |  | 
|  | 442 | local i=1 | 
|  | 443 | local choice | 
|  | 444 | for choice in ${LUNCH_MENU_CHOICES[@]} | 
|  | 445 | do | 
|  | 446 | echo "     $i. $choice" | 
|  | 447 | i=$(($i+1)) | 
|  | 448 | done | 
|  | 449 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 450 | echo | 
|  | 451 | } | 
|  | 452 |  | 
|  | 453 | function lunch() | 
|  | 454 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 455 | local answer | 
|  | 456 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 457 | if [ "$1" ] ; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 458 | answer=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 459 | else | 
|  | 460 | print_lunch_menu | 
| Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame^] | 461 | echo -n "Which would you like? [aosp_arm-eng] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 462 | read answer | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 463 | fi | 
|  | 464 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 465 | local selection= | 
|  | 466 |  | 
|  | 467 | if [ -z "$answer" ] | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 468 | then | 
| Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame^] | 469 | selection=aosp_arm-eng | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 470 | elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$") | 
|  | 471 | then | 
|  | 472 | if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ] | 
|  | 473 | then | 
| Kan-Ru Chen | 0745376 | 2010-07-05 15:53:47 +0800 | [diff] [blame] | 474 | selection=${LUNCH_MENU_CHOICES[$(($answer-1))]} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 475 | fi | 
|  | 476 | elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$") | 
|  | 477 | then | 
|  | 478 | selection=$answer | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 479 | fi | 
|  | 480 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 481 | if [ -z "$selection" ] | 
|  | 482 | then | 
|  | 483 | echo | 
|  | 484 | echo "Invalid lunch combo: $answer" | 
|  | 485 | return 1 | 
|  | 486 | fi | 
|  | 487 |  | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 488 | export TARGET_BUILD_APPS= | 
|  | 489 |  | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 490 | local product=$(echo -n $selection | sed -e "s/-.*$//") | 
|  | 491 | check_product $product | 
|  | 492 | if [ $? -ne 0 ] | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 493 | then | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 494 | echo | 
|  | 495 | echo "** Don't have a product spec for: '$product'" | 
|  | 496 | echo "** Do you have the right repo manifest?" | 
|  | 497 | product= | 
|  | 498 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 499 |  | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 500 | local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//") | 
|  | 501 | check_variant $variant | 
|  | 502 | if [ $? -ne 0 ] | 
|  | 503 | then | 
|  | 504 | echo | 
|  | 505 | echo "** Invalid variant: '$variant'" | 
|  | 506 | echo "** Must be one of ${VARIANT_CHOICES[@]}" | 
|  | 507 | variant= | 
|  | 508 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 509 |  | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 510 | if [ -z "$product" -o -z "$variant" ] | 
|  | 511 | then | 
|  | 512 | echo | 
|  | 513 | return 1 | 
|  | 514 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 515 |  | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 516 | export TARGET_PRODUCT=$product | 
|  | 517 | export TARGET_BUILD_VARIANT=$variant | 
|  | 518 | export TARGET_BUILD_TYPE=release | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 519 |  | 
|  | 520 | echo | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 521 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 522 | set_stuff_for_environment | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 523 | printconfig | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 524 | } | 
|  | 525 |  | 
| Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 526 | # Tab completion for lunch. | 
|  | 527 | function _lunch() | 
|  | 528 | { | 
|  | 529 | local cur prev opts | 
|  | 530 | COMPREPLY=() | 
|  | 531 | cur="${COMP_WORDS[COMP_CWORD]}" | 
|  | 532 | prev="${COMP_WORDS[COMP_CWORD-1]}" | 
|  | 533 |  | 
|  | 534 | COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) ) | 
|  | 535 | return 0 | 
|  | 536 | } | 
|  | 537 | complete -F _lunch lunch | 
|  | 538 |  | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 539 | # Configures the build to build unbundled apps. | 
|  | 540 | # Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME) | 
|  | 541 | function tapas() | 
|  | 542 | { | 
| Ying Wang | f05c4f7 | 2013-01-31 11:16:57 -0800 | [diff] [blame] | 543 | local arch=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5)$')) | 
| Jeff Hamilton | 293f939 | 2011-11-18 17:15:25 -0600 | [diff] [blame] | 544 | local variant=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$')) | 
| Ying Wang | f05c4f7 | 2013-01-31 11:16:57 -0800 | [diff] [blame] | 545 | local apps=$(echo -n $(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5)$')) | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 546 |  | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 547 | if [ $(echo $arch | wc -w) -gt 1 ]; then | 
|  | 548 | echo "tapas: Error: Multiple build archs supplied: $arch" | 
|  | 549 | return | 
|  | 550 | fi | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 551 | if [ $(echo $variant | wc -w) -gt 1 ]; then | 
|  | 552 | echo "tapas: Error: Multiple build variants supplied: $variant" | 
|  | 553 | return | 
|  | 554 | fi | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 555 |  | 
|  | 556 | local product=full | 
|  | 557 | case $arch in | 
|  | 558 | x86)   product=full_x86;; | 
|  | 559 | mips)  product=full_mips;; | 
| Ying Wang | f05c4f7 | 2013-01-31 11:16:57 -0800 | [diff] [blame] | 560 | armv5) product=generic_armv5;; | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 561 | esac | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 562 | if [ -z "$variant" ]; then | 
|  | 563 | variant=eng | 
|  | 564 | fi | 
| Ying Wang | c048c9b | 2010-06-24 15:08:33 -0700 | [diff] [blame] | 565 | if [ -z "$apps" ]; then | 
|  | 566 | apps=all | 
|  | 567 | fi | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 568 |  | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 569 | export TARGET_PRODUCT=$product | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 570 | export TARGET_BUILD_VARIANT=$variant | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 571 | export TARGET_BUILD_TYPE=release | 
|  | 572 | export TARGET_BUILD_APPS=$apps | 
|  | 573 |  | 
|  | 574 | set_stuff_for_environment | 
|  | 575 | printconfig | 
|  | 576 | } | 
|  | 577 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 578 | function gettop | 
|  | 579 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 580 | local TOPFILE=build/core/envsetup.mk | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 581 | if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then | 
|  | 582 | echo $TOP | 
|  | 583 | else | 
|  | 584 | if [ -f $TOPFILE ] ; then | 
| Dan Bornstein | d0b274d | 2009-11-24 15:48:50 -0800 | [diff] [blame] | 585 | # The following circumlocution (repeated below as well) ensures | 
|  | 586 | # that we record the true directory name and not one that is | 
|  | 587 | # faked up with symlink names. | 
|  | 588 | PWD= /bin/pwd | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 589 | else | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 590 | local HERE=$PWD | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 591 | T= | 
|  | 592 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 593 | \cd .. | 
| Dan Bornstein | d0b274d | 2009-11-24 15:48:50 -0800 | [diff] [blame] | 594 | T=`PWD= /bin/pwd` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 595 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 596 | \cd $HERE | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 597 | if [ -f "$T/$TOPFILE" ]; then | 
|  | 598 | echo $T | 
|  | 599 | fi | 
|  | 600 | fi | 
|  | 601 | fi | 
|  | 602 | } | 
|  | 603 |  | 
|  | 604 | function m() | 
|  | 605 | { | 
|  | 606 | T=$(gettop) | 
|  | 607 | if [ "$T" ]; then | 
| Joe Onorato | fa72a60 | 2013-01-11 12:49:04 -0800 | [diff] [blame] | 608 | make -C $T -f build/core/main.mk $@ | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 609 | else | 
|  | 610 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 611 | fi | 
|  | 612 | } | 
|  | 613 |  | 
|  | 614 | function findmakefile() | 
|  | 615 | { | 
|  | 616 | TOPFILE=build/core/envsetup.mk | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 617 | local HERE=$PWD | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 618 | T= | 
|  | 619 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
| Ying Wang | 11b15b1 | 2012-10-11 15:05:07 -0700 | [diff] [blame] | 620 | T=`PWD= /bin/pwd` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 621 | if [ -f "$T/Android.mk" ]; then | 
|  | 622 | echo $T/Android.mk | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 623 | \cd $HERE | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 624 | return | 
|  | 625 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 626 | \cd .. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 627 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 628 | \cd $HERE | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 629 | } | 
|  | 630 |  | 
|  | 631 | function mm() | 
|  | 632 | { | 
|  | 633 | # If we're sitting in the root of the build tree, just do a | 
|  | 634 | # normal make. | 
|  | 635 | if [ -f build/core/envsetup.mk -a -f Makefile ]; then | 
|  | 636 | make $@ | 
|  | 637 | else | 
|  | 638 | # Find the closest Android.mk file. | 
|  | 639 | T=$(gettop) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 640 | local M=$(findmakefile) | 
| Robert Greenwalt | 3c794d7 | 2009-07-15 15:07:44 -0700 | [diff] [blame] | 641 | # Remove the path to top as the makefilepath needs to be relative | 
|  | 642 | local M=`echo $M|sed 's:'$T'/::'` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 643 | if [ ! "$T" ]; then | 
|  | 644 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 645 | elif [ ! "$M" ]; then | 
|  | 646 | echo "Couldn't locate a makefile from the current directory." | 
|  | 647 | else | 
| Joe Onorato | fa72a60 | 2013-01-11 12:49:04 -0800 | [diff] [blame] | 648 | ONE_SHOT_MAKEFILE=$M make -C $T -f build/core/main.mk all_modules $@ | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 649 | fi | 
|  | 650 | fi | 
|  | 651 | } | 
|  | 652 |  | 
|  | 653 | function mmm() | 
|  | 654 | { | 
|  | 655 | T=$(gettop) | 
|  | 656 | if [ "$T" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 657 | local MAKEFILE= | 
| Alon Albert | 68895a9 | 2011-11-30 12:40:19 -0800 | [diff] [blame] | 658 | local MODULES= | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 659 | local ARGS= | 
|  | 660 | local DIR TO_CHOP | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 661 | local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/') | 
|  | 662 | local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/') | 
|  | 663 | for DIR in $DIRS ; do | 
| Alon Albert | 68895a9 | 2011-11-30 12:40:19 -0800 | [diff] [blame] | 664 | MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'` | 
|  | 665 | if [ "$MODULES" = "" ]; then | 
|  | 666 | MODULES=all_modules | 
|  | 667 | fi | 
|  | 668 | DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 669 | if [ -f $DIR/Android.mk ]; then | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 670 | TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 671 | TO_CHOP=`expr $TO_CHOP + 1` | 
| Gilles Debunne | 8a20f58 | 2010-02-17 15:56:45 -0800 | [diff] [blame] | 672 | START=`PWD= /bin/pwd` | 
|  | 673 | MFILE=`echo $START | cut -c${TO_CHOP}-` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 674 | if [ "$MFILE" = "" ] ; then | 
|  | 675 | MFILE=$DIR/Android.mk | 
|  | 676 | else | 
|  | 677 | MFILE=$MFILE/$DIR/Android.mk | 
|  | 678 | fi | 
|  | 679 | MAKEFILE="$MAKEFILE $MFILE" | 
|  | 680 | else | 
|  | 681 | if [ "$DIR" = snod ]; then | 
|  | 682 | ARGS="$ARGS snod" | 
|  | 683 | elif [ "$DIR" = showcommands ]; then | 
|  | 684 | ARGS="$ARGS showcommands" | 
| Ying Wang | 0188414 | 2010-07-20 16:18:16 -0700 | [diff] [blame] | 685 | elif [ "$DIR" = dist ]; then | 
|  | 686 | ARGS="$ARGS dist" | 
| Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 687 | elif [ "$DIR" = incrementaljavac ]; then | 
|  | 688 | ARGS="$ARGS incrementaljavac" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 689 | else | 
|  | 690 | echo "No Android.mk in $DIR." | 
| Joe Onorato | 51e6182 | 2009-04-13 15:36:15 -0400 | [diff] [blame] | 691 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 692 | fi | 
|  | 693 | fi | 
|  | 694 | done | 
| Joe Onorato | fa72a60 | 2013-01-11 12:49:04 -0800 | [diff] [blame] | 695 | ONE_SHOT_MAKEFILE="$MAKEFILE" make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 696 | else | 
|  | 697 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 698 | fi | 
|  | 699 | } | 
|  | 700 |  | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 701 | function mma() | 
|  | 702 | { | 
|  | 703 | if [ -f build/core/envsetup.mk -a -f Makefile ]; then | 
|  | 704 | make $@ | 
|  | 705 | else | 
|  | 706 | T=$(gettop) | 
|  | 707 | if [ ! "$T" ]; then | 
|  | 708 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 709 | fi | 
|  | 710 | local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'` | 
|  | 711 | make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD" | 
|  | 712 | fi | 
|  | 713 | } | 
|  | 714 |  | 
|  | 715 | function mmma() | 
|  | 716 | { | 
|  | 717 | T=$(gettop) | 
|  | 718 | if [ "$T" ]; then | 
|  | 719 | local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/') | 
|  | 720 | local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/') | 
|  | 721 | local MY_PWD=`PWD= /bin/pwd` | 
|  | 722 | if [ "$MY_PWD" = "$T" ]; then | 
|  | 723 | MY_PWD= | 
|  | 724 | else | 
|  | 725 | MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'` | 
|  | 726 | fi | 
|  | 727 | local DIR= | 
|  | 728 | local MODULE_PATHS= | 
|  | 729 | local ARGS= | 
|  | 730 | for DIR in $DIRS ; do | 
|  | 731 | if [ -d $DIR ]; then | 
|  | 732 | if [ "$MY_PWD" = "" ]; then | 
|  | 733 | MODULE_PATHS="$MODULE_PATHS $DIR" | 
|  | 734 | else | 
|  | 735 | MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR" | 
|  | 736 | fi | 
|  | 737 | else | 
|  | 738 | case $DIR in | 
|  | 739 | showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";; | 
|  | 740 | *) echo "Couldn't find directory $DIR"; return 1;; | 
|  | 741 | esac | 
|  | 742 | fi | 
|  | 743 | done | 
|  | 744 | make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS" | 
|  | 745 | else | 
|  | 746 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 747 | fi | 
|  | 748 | } | 
|  | 749 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 750 | function croot() | 
|  | 751 | { | 
|  | 752 | T=$(gettop) | 
|  | 753 | if [ "$T" ]; then | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 754 | \cd $(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 755 | else | 
|  | 756 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 757 | fi | 
|  | 758 | } | 
|  | 759 |  | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 760 | function cproj() | 
|  | 761 | { | 
|  | 762 | TOPFILE=build/core/envsetup.mk | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 763 | local HERE=$PWD | 
|  | 764 | T= | 
|  | 765 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
|  | 766 | T=$PWD | 
|  | 767 | if [ -f "$T/Android.mk" ]; then | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 768 | \cd $T | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 769 | return | 
|  | 770 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 771 | \cd .. | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 772 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 773 | \cd $HERE | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 774 | echo "can't find Android.mk" | 
|  | 775 | } | 
|  | 776 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 777 | function pid() | 
|  | 778 | { | 
|  | 779 | local EXE="$1" | 
|  | 780 | if [ "$EXE" ] ; then | 
|  | 781 | local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'` | 
|  | 782 | echo "$PID" | 
|  | 783 | else | 
|  | 784 | echo "usage: pid name" | 
|  | 785 | fi | 
|  | 786 | } | 
|  | 787 |  | 
| Christopher Tate | 744ee80 | 2009-11-12 15:33:08 -0800 | [diff] [blame] | 788 | # systemstack - dump the current stack trace of all threads in the system process | 
|  | 789 | # to the usual ANR traces file | 
|  | 790 | function systemstack() | 
|  | 791 | { | 
| Jeff Sharkey | f582437 | 2013-02-19 17:00:46 -0800 | [diff] [blame] | 792 | stacks system_server | 
|  | 793 | } | 
|  | 794 |  | 
|  | 795 | function stacks() | 
|  | 796 | { | 
|  | 797 | if [[ $1 =~ ^[0-9]+$ ]] ; then | 
|  | 798 | local PID="$1" | 
|  | 799 | elif [ "$1" ] ; then | 
|  | 800 | local PID=$(pid $1) | 
|  | 801 | else | 
|  | 802 | echo "usage: stacks [pid|process name]" | 
|  | 803 | fi | 
|  | 804 |  | 
|  | 805 | if [ "$PID" ] ; then | 
|  | 806 | local TRACES=/data/anr/traces.txt | 
|  | 807 | local ORIG=/data/anr/traces.orig | 
|  | 808 | local TMP=/data/anr/traces.tmp | 
|  | 809 |  | 
|  | 810 | # Keep original traces to avoid clobbering | 
|  | 811 | adb shell mv $TRACES $ORIG | 
|  | 812 |  | 
|  | 813 | # Make sure we have a usable file | 
|  | 814 | adb shell touch $TRACES | 
|  | 815 | adb shell chmod 666 $TRACES | 
|  | 816 |  | 
|  | 817 | # Dump stacks and wait for dump to finish | 
|  | 818 | adb shell kill -3 $PID | 
|  | 819 | adb shell notify $TRACES | 
|  | 820 |  | 
|  | 821 | # Restore original stacks, and show current output | 
|  | 822 | adb shell mv $TRACES $TMP | 
|  | 823 | adb shell mv $ORIG $TRACES | 
|  | 824 | adb shell cat $TMP | less -S | 
|  | 825 | fi | 
| Christopher Tate | 744ee80 | 2009-11-12 15:33:08 -0800 | [diff] [blame] | 826 | } | 
|  | 827 |  | 
| John Michelau | 5020025 | 2012-11-09 11:48:04 -0600 | [diff] [blame] | 828 | function gdbwrapper() | 
|  | 829 | { | 
|  | 830 | $ANDROID_TOOLCHAIN/$GDB -x "$@" | 
|  | 831 | } | 
|  | 832 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 833 | function gdbclient() | 
|  | 834 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 835 | local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT) | 
|  | 836 | local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED) | 
|  | 837 | local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED) | 
|  | 838 | local OUT_EXE_SYMBOLS=$(get_abs_build_var TARGET_OUT_EXECUTABLES_UNSTRIPPED) | 
|  | 839 | local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS) | 
| Nick Kralevich | 0ab21d3 | 2011-11-11 09:02:01 -0800 | [diff] [blame] | 840 | local ARCH=$(get_build_var TARGET_ARCH) | 
|  | 841 | local GDB | 
|  | 842 | case "$ARCH" in | 
| Jean-Baptiste Queru | feec98b | 2012-05-16 13:18:39 -0700 | [diff] [blame] | 843 | x86) GDB=i686-linux-android-gdb;; | 
| Nick Kralevich | 0ab21d3 | 2011-11-11 09:02:01 -0800 | [diff] [blame] | 844 | arm) GDB=arm-linux-androideabi-gdb;; | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 845 | mips) GDB=mipsel-linux-android-gdb;; | 
| Nick Kralevich | 0ab21d3 | 2011-11-11 09:02:01 -0800 | [diff] [blame] | 846 | *) echo "Unknown arch $ARCH"; return 1;; | 
|  | 847 | esac | 
|  | 848 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 849 | if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then | 
|  | 850 | local EXE="$1" | 
|  | 851 | if [ "$EXE" ] ; then | 
|  | 852 | EXE=$1 | 
|  | 853 | else | 
|  | 854 | EXE="app_process" | 
|  | 855 | fi | 
|  | 856 |  | 
|  | 857 | local PORT="$2" | 
|  | 858 | if [ "$PORT" ] ; then | 
|  | 859 | PORT=$2 | 
|  | 860 | else | 
|  | 861 | PORT=":5039" | 
|  | 862 | fi | 
|  | 863 |  | 
| Chris Craik | 20c136a | 2012-11-09 18:02:19 -0800 | [diff] [blame] | 864 | local PID="$3" | 
|  | 865 | if [ "$PID" ] ; then | 
|  | 866 | if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then | 
| Grace Kloba | e9d04bf | 2011-04-30 11:04:05 -0700 | [diff] [blame] | 867 | PID=`pid $3` | 
| Chris Craik | 20c136a | 2012-11-09 18:02:19 -0800 | [diff] [blame] | 868 | if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then | 
|  | 869 | # that likely didn't work because of returning multiple processes | 
|  | 870 | # try again, filtering by root processes (don't contain colon) | 
|  | 871 | PID=`adb shell ps | grep $3 | grep -v ":" | awk '{print $2}'` | 
|  | 872 | if [[ ! "$PID" =~ ^[0-9]+$ ]] | 
|  | 873 | then | 
|  | 874 | echo "Couldn't resolve '$3' to single PID" | 
|  | 875 | return 1 | 
|  | 876 | else | 
|  | 877 | echo "" | 
|  | 878 | echo "WARNING: multiple processes matching '$3' observed, using root process" | 
|  | 879 | echo "" | 
|  | 880 | fi | 
|  | 881 | fi | 
| Grace Kloba | e9d04bf | 2011-04-30 11:04:05 -0700 | [diff] [blame] | 882 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 883 | adb forward "tcp$PORT" "tcp$PORT" | 
|  | 884 | adb shell gdbserver $PORT --attach $PID & | 
|  | 885 | sleep 2 | 
|  | 886 | else | 
|  | 887 | echo "" | 
|  | 888 | echo "If you haven't done so already, do this first on the device:" | 
|  | 889 | echo "    gdbserver $PORT /system/bin/$EXE" | 
|  | 890 | echo " or" | 
| Chris Craik | 20c136a | 2012-11-09 18:02:19 -0800 | [diff] [blame] | 891 | echo "    gdbserver $PORT --attach <PID>" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 892 | echo "" | 
|  | 893 | fi | 
|  | 894 |  | 
|  | 895 | echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS" | 
| Chris Dearman | 6858d51 | 2012-02-02 14:16:52 -0800 | [diff] [blame] | 896 | echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 897 | echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT" | 
|  | 898 | echo >>"$OUT_ROOT/gdbclient.cmds" "" | 
|  | 899 |  | 
| John Michelau | 5020025 | 2012-11-09 11:48:04 -0600 | [diff] [blame] | 900 | gdbwrapper "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 901 | else | 
|  | 902 | echo "Unable to determine build system output dir." | 
|  | 903 | fi | 
|  | 904 |  | 
|  | 905 | } | 
|  | 906 |  | 
|  | 907 | case `uname -s` in | 
|  | 908 | Darwin) | 
|  | 909 | function sgrep() | 
|  | 910 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 911 | find -E . -name .repo -prune -o -name .git -prune -o  -type f -iregex '.*\.(c|h|cpp|S|java|xml|sh|mk)' -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 912 | } | 
|  | 913 |  | 
|  | 914 | ;; | 
|  | 915 | *) | 
|  | 916 | function sgrep() | 
|  | 917 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 918 | find . -name .repo -prune -o -name .git -prune -o  -type f -iregex '.*\.\(c\|h\|cpp\|S\|java\|xml\|sh\|mk\)' -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 919 | } | 
|  | 920 | ;; | 
|  | 921 | esac | 
|  | 922 |  | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 923 | function gettargetarch | 
|  | 924 | { | 
|  | 925 | get_build_var TARGET_ARCH | 
|  | 926 | } | 
|  | 927 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 928 | function jgrep() | 
|  | 929 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 930 | find . -name .repo -prune -o -name .git -prune -o  -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 931 | } | 
|  | 932 |  | 
|  | 933 | function cgrep() | 
|  | 934 | { | 
| Mike Dodd | 0c26d34 | 2011-04-07 13:29:06 -0700 | [diff] [blame] | 935 | find . -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 936 | } | 
|  | 937 |  | 
|  | 938 | function resgrep() | 
|  | 939 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 940 | for dir in `find . -name .repo -prune -o -name .git -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done; | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 941 | } | 
|  | 942 |  | 
| Jeff Sharkey | 50b61e9 | 2013-03-08 10:20:47 -0800 | [diff] [blame] | 943 | function mangrep() | 
|  | 944 | { | 
|  | 945 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@" | 
|  | 946 | } | 
|  | 947 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 948 | case `uname -s` in | 
|  | 949 | Darwin) | 
|  | 950 | function mgrep() | 
|  | 951 | { | 
| Ying Wang | 324c2b2 | 2012-08-17 15:03:20 -0700 | [diff] [blame] | 952 | find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 953 | } | 
|  | 954 |  | 
|  | 955 | function treegrep() | 
|  | 956 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 957 | find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' -print0 | xargs -0 grep --color -n -i "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 958 | } | 
|  | 959 |  | 
|  | 960 | ;; | 
|  | 961 | *) | 
|  | 962 | function mgrep() | 
|  | 963 | { | 
| Ying Wang | 324c2b2 | 2012-08-17 15:03:20 -0700 | [diff] [blame] | 964 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f -print0 | xargs -0 grep --color -n "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 965 | } | 
|  | 966 |  | 
|  | 967 | function treegrep() | 
|  | 968 | { | 
| Joe Onorato | f50e84b | 2011-03-15 14:15:46 -0700 | [diff] [blame] | 969 | find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f -print0 | xargs -0 grep --color -n -i "$@" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 970 | } | 
|  | 971 |  | 
|  | 972 | ;; | 
|  | 973 | esac | 
|  | 974 |  | 
|  | 975 | function getprebuilt | 
|  | 976 | { | 
|  | 977 | get_abs_build_var ANDROID_PREBUILTS | 
|  | 978 | } | 
|  | 979 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 980 | function tracedmdump() | 
|  | 981 | { | 
|  | 982 | T=$(gettop) | 
|  | 983 | if [ ! "$T" ]; then | 
|  | 984 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 985 | return | 
|  | 986 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 987 | local prebuiltdir=$(getprebuilt) | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 988 | local arch=$(gettargetarch) | 
|  | 989 | local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 990 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 991 | local TRACE=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 992 | if [ ! "$TRACE" ] ; then | 
|  | 993 | echo "usage:  tracedmdump  tracename" | 
|  | 994 | return | 
|  | 995 | fi | 
|  | 996 |  | 
| Jack Veenstra | 60116fc | 2009-04-09 18:12:34 -0700 | [diff] [blame] | 997 | if [ ! -r "$KERNEL" ] ; then | 
|  | 998 | echo "Error: cannot find kernel: '$KERNEL'" | 
|  | 999 | return | 
|  | 1000 | fi | 
|  | 1001 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1002 | local BASETRACE=$(basename $TRACE) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1003 | if [ "$BASETRACE" = "$TRACE" ] ; then | 
|  | 1004 | TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE | 
|  | 1005 | fi | 
|  | 1006 |  | 
|  | 1007 | echo "post-processing traces..." | 
|  | 1008 | rm -f $TRACE/qtrace.dexlist | 
|  | 1009 | post_trace $TRACE | 
|  | 1010 | if [ $? -ne 0 ]; then | 
|  | 1011 | echo "***" | 
|  | 1012 | echo "*** Error: malformed trace.  Did you remember to exit the emulator?" | 
|  | 1013 | echo "***" | 
|  | 1014 | return | 
|  | 1015 | fi | 
|  | 1016 | echo "generating dexlist output..." | 
|  | 1017 | /bin/ls $ANDROID_PRODUCT_OUT/system/framework/*.jar $ANDROID_PRODUCT_OUT/system/app/*.apk $ANDROID_PRODUCT_OUT/data/app/*.apk 2>/dev/null | xargs dexlist > $TRACE/qtrace.dexlist | 
|  | 1018 | echo "generating dmtrace data..." | 
|  | 1019 | q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return | 
|  | 1020 | echo "generating html file..." | 
|  | 1021 | dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return | 
|  | 1022 | echo "done, see $TRACE/dmtrace.html for details" | 
|  | 1023 | echo "or run:" | 
|  | 1024 | echo "    traceview $TRACE/dmtrace" | 
|  | 1025 | } | 
|  | 1026 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1027 | # communicate with a running device or emulator, set up necessary state, | 
|  | 1028 | # and run the hat command. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1029 | function runhat() | 
|  | 1030 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1031 | # process standard adb options | 
|  | 1032 | local adbTarget="" | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1033 | if [ "$1" = "-d" -o "$1" = "-e" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1034 | adbTarget=$1 | 
|  | 1035 | shift 1 | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1036 | elif [ "$1" = "-s" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1037 | adbTarget="$1 $2" | 
|  | 1038 | shift 2 | 
|  | 1039 | fi | 
|  | 1040 | local adbOptions=${adbTarget} | 
| Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1041 | #echo adbOptions = ${adbOptions} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1042 |  | 
|  | 1043 | # runhat options | 
|  | 1044 | local targetPid=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1045 |  | 
|  | 1046 | if [ "$targetPid" = "" ]; then | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1047 | echo "Usage: runhat [ -d | -e | -s serial ] target-pid" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1048 | return | 
|  | 1049 | fi | 
|  | 1050 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1051 | # confirm hat is available | 
|  | 1052 | if [ -z $(which hat) ]; then | 
|  | 1053 | echo "hat is not available in this configuration." | 
|  | 1054 | return | 
|  | 1055 | fi | 
|  | 1056 |  | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1057 | # issue "am" command to cause the hprof dump | 
| Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1058 | local sdcard=$(adb shell echo -n '$EXTERNAL_STORAGE') | 
|  | 1059 | local devFile=$sdcard/hprof-$targetPid | 
|  | 1060 | #local devFile=/data/local/hprof-$targetPid | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1061 | echo "Poking $targetPid and waiting for data..." | 
| Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1062 | echo "Storing data at $devFile" | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1063 | adb ${adbOptions} shell am dumpheap $targetPid $devFile | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1064 | echo "Press enter when logcat shows \"hprof: heap dump completed\"" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1065 | echo -n "> " | 
|  | 1066 | read | 
|  | 1067 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1068 | local localFile=/tmp/$$-hprof | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1069 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1070 | echo "Retrieving file $devFile..." | 
|  | 1071 | adb ${adbOptions} pull $devFile $localFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1072 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1073 | adb ${adbOptions} shell rm $devFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1074 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1075 | echo "Running hat on $localFile" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1076 | echo "View the output by pointing your browser at http://localhost:7000/" | 
|  | 1077 | echo "" | 
| Dianne Hackborn | 6e4e1bb | 2011-11-10 15:19:51 -0800 | [diff] [blame] | 1078 | hat -JXmx512m $localFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1079 | } | 
|  | 1080 |  | 
|  | 1081 | function getbugreports() | 
|  | 1082 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1083 | local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1084 |  | 
|  | 1085 | if [ ! "$reports" ]; then | 
|  | 1086 | echo "Could not locate any bugreports." | 
|  | 1087 | return | 
|  | 1088 | fi | 
|  | 1089 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1090 | local report | 
|  | 1091 | for report in ${reports[@]} | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1092 | do | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1093 | echo "/sdcard/bugreports/${report}" | 
|  | 1094 | adb pull /sdcard/bugreports/${report} ${report} | 
|  | 1095 | gunzip ${report} | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1096 | done | 
|  | 1097 | } | 
|  | 1098 |  | 
| Victoria Lease | 1b296b4 | 2012-08-21 15:44:06 -0700 | [diff] [blame] | 1099 | function getsdcardpath() | 
|  | 1100 | { | 
|  | 1101 | adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\} | 
|  | 1102 | } | 
|  | 1103 |  | 
|  | 1104 | function getscreenshotpath() | 
|  | 1105 | { | 
|  | 1106 | echo "$(getsdcardpath)/Pictures/Screenshots" | 
|  | 1107 | } | 
|  | 1108 |  | 
|  | 1109 | function getlastscreenshot() | 
|  | 1110 | { | 
|  | 1111 | local screenshot_path=$(getscreenshotpath) | 
|  | 1112 | local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1` | 
|  | 1113 | if [ "$screenshot" = "" ]; then | 
|  | 1114 | echo "No screenshots found." | 
|  | 1115 | return | 
|  | 1116 | fi | 
|  | 1117 | echo "${screenshot}" | 
|  | 1118 | adb ${adbOptions} pull ${screenshot_path}/${screenshot} | 
|  | 1119 | } | 
|  | 1120 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1121 | function startviewserver() | 
|  | 1122 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1123 | local port=4939 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1124 | if [ $# -gt 0 ]; then | 
|  | 1125 | port=$1 | 
|  | 1126 | fi | 
|  | 1127 | adb shell service call window 1 i32 $port | 
|  | 1128 | } | 
|  | 1129 |  | 
|  | 1130 | function stopviewserver() | 
|  | 1131 | { | 
|  | 1132 | adb shell service call window 2 | 
|  | 1133 | } | 
|  | 1134 |  | 
|  | 1135 | function isviewserverstarted() | 
|  | 1136 | { | 
|  | 1137 | adb shell service call window 3 | 
|  | 1138 | } | 
|  | 1139 |  | 
| Romain Guy | b84049a | 2010-10-04 16:56:11 -0700 | [diff] [blame] | 1140 | function key_home() | 
|  | 1141 | { | 
|  | 1142 | adb shell input keyevent 3 | 
|  | 1143 | } | 
|  | 1144 |  | 
|  | 1145 | function key_back() | 
|  | 1146 | { | 
|  | 1147 | adb shell input keyevent 4 | 
|  | 1148 | } | 
|  | 1149 |  | 
|  | 1150 | function key_menu() | 
|  | 1151 | { | 
|  | 1152 | adb shell input keyevent 82 | 
|  | 1153 | } | 
|  | 1154 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1155 | function smoketest() | 
|  | 1156 | { | 
|  | 1157 | if [ ! "$ANDROID_PRODUCT_OUT" ]; then | 
|  | 1158 | echo "Couldn't locate output files.  Try running 'lunch' first." >&2 | 
|  | 1159 | return | 
|  | 1160 | fi | 
|  | 1161 | T=$(gettop) | 
|  | 1162 | if [ ! "$T" ]; then | 
|  | 1163 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 1164 | return | 
|  | 1165 | fi | 
|  | 1166 |  | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1167 | (\cd "$T" && mmm tests/SmokeTest) && | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1168 | adb uninstall com.android.smoketest > /dev/null && | 
|  | 1169 | adb uninstall com.android.smoketest.tests > /dev/null && | 
|  | 1170 | adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk && | 
|  | 1171 | adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk && | 
|  | 1172 | adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner | 
|  | 1173 | } | 
|  | 1174 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1175 | # simple shortcut to the runtest command | 
|  | 1176 | function runtest() | 
|  | 1177 | { | 
|  | 1178 | T=$(gettop) | 
|  | 1179 | if [ ! "$T" ]; then | 
|  | 1180 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 1181 | return | 
|  | 1182 | fi | 
| Brett Chabot | 3fb149d | 2009-10-21 20:05:26 -0700 | [diff] [blame] | 1183 | ("$T"/development/testrunner/runtest.py $@) | 
| Brett Chabot | 762748c | 2009-03-27 10:25:11 -0700 | [diff] [blame] | 1184 | } | 
|  | 1185 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1186 | function godir () { | 
|  | 1187 | if [[ -z "$1" ]]; then | 
|  | 1188 | echo "Usage: godir <regex>" | 
|  | 1189 | return | 
|  | 1190 | fi | 
| Brian Carlstrom | b9915a6 | 2010-01-29 16:39:32 -0800 | [diff] [blame] | 1191 | T=$(gettop) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1192 | if [[ ! -f $T/filelist ]]; then | 
|  | 1193 | echo -n "Creating index..." | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1194 | (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1195 | echo " Done" | 
|  | 1196 | echo "" | 
|  | 1197 | fi | 
|  | 1198 | local lines | 
| Jeff Hamilton | 293f939 | 2011-11-18 17:15:25 -0600 | [diff] [blame] | 1199 | lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq)) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1200 | if [[ ${#lines[@]} = 0 ]]; then | 
|  | 1201 | echo "Not found" | 
|  | 1202 | return | 
|  | 1203 | fi | 
|  | 1204 | local pathname | 
|  | 1205 | local choice | 
|  | 1206 | if [[ ${#lines[@]} > 1 ]]; then | 
|  | 1207 | while [[ -z "$pathname" ]]; do | 
|  | 1208 | local index=1 | 
|  | 1209 | local line | 
|  | 1210 | for line in ${lines[@]}; do | 
|  | 1211 | printf "%6s %s\n" "[$index]" $line | 
| Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 1212 | index=$(($index + 1)) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1213 | done | 
|  | 1214 | echo | 
|  | 1215 | echo -n "Select one: " | 
|  | 1216 | unset choice | 
|  | 1217 | read choice | 
|  | 1218 | if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then | 
|  | 1219 | echo "Invalid choice" | 
|  | 1220 | continue | 
|  | 1221 | fi | 
| Kan-Ru Chen | 0745376 | 2010-07-05 15:53:47 +0800 | [diff] [blame] | 1222 | pathname=${lines[$(($choice-1))]} | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1223 | done | 
|  | 1224 | else | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1225 | pathname=${lines[0]} | 
|  | 1226 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1227 | \cd $T/$pathname | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1228 | } | 
|  | 1229 |  | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 1230 | # Force JAVA_HOME to point to java 1.6 if it isn't already set | 
|  | 1231 | function set_java_home() { | 
| Andy McFadden | bd96094 | 2010-06-24 12:52:51 -0700 | [diff] [blame] | 1232 | if [ ! "$JAVA_HOME" ]; then | 
|  | 1233 | case `uname -s` in | 
|  | 1234 | Darwin) | 
|  | 1235 | export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home | 
|  | 1236 | ;; | 
|  | 1237 | *) | 
|  | 1238 | export JAVA_HOME=/usr/lib/jvm/java-6-sun | 
|  | 1239 | ;; | 
|  | 1240 | esac | 
| Jeff Hamilton | 04be0d8 | 2010-06-07 15:03:54 -0500 | [diff] [blame] | 1241 | fi | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 1242 | } | 
| Jeff Hamilton | 04be0d8 | 2010-06-07 15:03:54 -0500 | [diff] [blame] | 1243 |  | 
| Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1244 | # Print colored exit condition | 
|  | 1245 | function pez { | 
| Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1246 | "$@" | 
|  | 1247 | local retval=$? | 
|  | 1248 | if [ $retval -ne 0 ] | 
|  | 1249 | then | 
|  | 1250 | echo -e "\e[0;31mFAILURE\e[00m" | 
|  | 1251 | else | 
|  | 1252 | echo -e "\e[0;32mSUCCESS\e[00m" | 
|  | 1253 | fi | 
|  | 1254 | return $retval | 
| Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1255 | } | 
|  | 1256 |  | 
| Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1257 | if [ "x$SHELL" != "x/bin/bash" ]; then | 
|  | 1258 | case `ps -o command -p $$` in | 
|  | 1259 | *bash*) | 
|  | 1260 | ;; | 
|  | 1261 | *) | 
|  | 1262 | echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results" | 
|  | 1263 | ;; | 
|  | 1264 | esac | 
|  | 1265 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1266 |  | 
|  | 1267 | # Execute the contents of any vendorsetup.sh files we can find. | 
| Bruce Beare | 6f8410b | 2010-06-24 13:51:35 -0700 | [diff] [blame] | 1268 | for f in `/bin/ls vendor/*/vendorsetup.sh vendor/*/*/vendorsetup.sh device/*/*/vendorsetup.sh 2> /dev/null` | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1269 | do | 
|  | 1270 | echo "including $f" | 
|  | 1271 | . $f | 
|  | 1272 | done | 
|  | 1273 | unset f | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1274 |  | 
|  | 1275 | addcompletions |