blob: a809e049e067b09af53fab4fb0ca2e0e4cf319e9 [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08003Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
Ying Wang67f02922012-08-22 10:25:20 -07004- lunch: lunch <product_name>-<build_variant>
Ying Wangb541ab62014-05-29 17:57:40 -07005- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|armv5|arm64|x86_64|mips64] [eng|userdebug|user]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07006- croot: Changes directory to the top of the tree.
7- m: Makes from the top of the tree.
Ying Wangb607f7b2013-02-08 18:01:04 -08008- 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.
Primiano Tucci6a8069d2014-02-26 11:09:19 +000010 To limit the modules being built use the syntax: mmm dir/:target1,target2.
Ying Wangb607f7b2013-02-08 18:01:04 -080011- mma: Builds all of the modules in the current directory, and their dependencies.
12- mmma: Builds all of the modules in the supplied directories, and their dependencies.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070013- cgrep: Greps on all local C/C++ files.
Jon Boekenoogencbca56f2014-04-07 10:57:38 -070014- ggrep: Greps on all local Gradle files.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070015- jgrep: Greps on all local Java files.
16- resgrep: Greps on all local res/*.xml files.
Trevor Drake9c889762015-01-30 04:42:21 +000017- mangrep: Greps on all local AndroidManifest.xml files.
18- sepgrep: Greps on all local sepolicy files.
Jeff Brown46cbd202014-07-26 15:15:41 -070019- sgrep: Greps on all local source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080020- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070021
Dan Albert4ae5d4b2014-10-31 16:23:08 -070022Environemnt options:
23- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
24 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
25 build is leak-check clean.
26
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070027Look at the source to view more functions. The complete list is:
28EOF
29 T=$(gettop)
30 local A
31 A=""
Jeff Brown46cbd202014-07-26 15:15:41 -070032 for i in `cat $T/build/envsetup.sh | sed -n "/^[ \t]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070033 A="$A $i"
34 done
35 echo $A
36}
37
38# Get the value of a build variable as an absolute path.
39function get_abs_build_var()
40{
41 T=$(gettop)
42 if [ ! "$T" ]; then
43 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
44 return
45 fi
Ying Wang9cd17642012-12-13 10:52:07 -080046 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070047 command make --no-print-directory -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070048}
49
50# Get the exact value of a build variable.
51function get_build_var()
52{
53 T=$(gettop)
54 if [ ! "$T" ]; then
55 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
56 return
57 fi
Andrew Boie6905e212013-12-19 13:21:46 -080058 (\cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Ed Heylc6d11f82014-06-27 13:32:39 -070059 command make --no-print-directory -f build/core/config.mk dumpvar-$1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080060}
61
62# check to see if the supplied product is one we can build
63function check_product()
64{
65 T=$(gettop)
66 if [ ! "$T" ]; then
67 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
68 return
69 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -070070 TARGET_PRODUCT=$1 \
71 TARGET_BUILD_VARIANT= \
72 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070073 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080074 get_build_var TARGET_DEVICE > /dev/null
75 # hide successful answers, but allow the errors to show
76}
77
78VARIANT_CHOICES=(user userdebug eng)
79
80# check to see if the supplied variant is valid
81function check_variant()
82{
83 for v in ${VARIANT_CHOICES[@]}
84 do
85 if [ "$v" = "$1" ]
86 then
87 return 0
88 fi
89 done
90 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070091}
92
93function setpaths()
94{
95 T=$(gettop)
96 if [ ! "$T" ]; then
97 echo "Couldn't locate the top of the tree. Try setting TOP."
98 return
99 fi
100
101 ##################################################################
102 # #
103 # Read me before you modify this code #
104 # #
105 # This function sets ANDROID_BUILD_PATHS to what it is adding #
106 # to PATH, and the next time it is run, it removes that from #
107 # PATH. This is required so lunch can be run more than once #
108 # and still have working paths. #
109 # #
110 ##################################################################
111
Raphael Mollc639c782011-06-20 17:25:01 -0700112 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
113 # due to "C:\Program Files" being in the path.
114
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700115 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700116 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700117 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
118 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700119 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700120 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800121 # strip leading ':', if any
122 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500123 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700124
125 # and in with the new
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700126 prebuiltdir=$(getprebuilt)
Jing Yuf5172c72012-03-29 20:45:50 -0700127 gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700128
Ben Cheng8bc4c432012-11-16 13:29:13 -0800129 # defined in core/config.mk
130 targetgccversion=$(get_build_var TARGET_GCC_VERSION)
Colin Cross03b424a2014-05-22 11:57:43 -0700131 targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800132 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800133
Raphael Mollc639c782011-06-20 17:25:01 -0700134 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800135 export ANDROID_TOOLCHAIN=
136 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200137 local ARCH=$(get_build_var TARGET_ARCH)
138 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400139 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700140 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400141 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
142 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800143 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200144 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800145 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700146 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700147 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700148 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000149 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200150 *)
151 echo "Can't find toolchain for unknown architecture: $ARCH"
152 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700153 ;;
154 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700155 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800156 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700157 fi
Raphael732936d2011-06-22 14:35:32 -0700158
Ben Chengfba67bf2014-02-25 10:27:07 -0800159 if [ -d "$gccprebuiltdir/$toolchaindir2" ]; then
160 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
161 fi
162
163 unset ANDROID_KERNEL_TOOLCHAIN_PATH
Ying Wang08f5e9a2012-04-17 18:10:11 -0700164 case $ARCH in
Bruce Beare42ced6d2012-07-17 21:40:01 -0700165 arm)
Ben Chengfba67bf2014-02-25 10:27:07 -0800166 # Legacy toolchain configuration used for ARM kernel compilation
Ben Cheng8bc4c432012-11-16 13:29:13 -0800167 toolchaindir=arm/arm-eabi-$targetgccversion/bin
Bruce Beare42ced6d2012-07-17 21:40:01 -0700168 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Torne (Richard Coles)f24c3562014-04-25 16:24:22 +0100169 export ARM_EABI_TOOLCHAIN="$gccprebuiltdir/$toolchaindir"
170 ANDROID_KERNEL_TOOLCHAIN_PATH="$ARM_EABI_TOOLCHAIN":
Bruce Beare42ced6d2012-07-17 21:40:01 -0700171 fi
Ying Wang08f5e9a2012-04-17 18:10:11 -0700172 ;;
173 *)
Bruce Beare42ced6d2012-07-17 21:40:01 -0700174 # No need to set ARM_EABI_TOOLCHAIN for other ARCHs
Ying Wang08f5e9a2012-04-17 18:10:11 -0700175 ;;
176 esac
Ying Wang08f5e9a2012-04-17 18:10:11 -0700177
Ying Wang564f9122013-03-29 17:40:14 -0700178 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools
Ying Wang2a859d52014-06-30 10:25:33 -0700179 export ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN:$ANDROID_TOOLCHAIN_2ND_ARCH:$ANDROID_KERNEL_TOOLCHAIN_PATH$ANDROID_DEV_SCRIPTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200180
181 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
182 # to ensure that the corresponding 'emulator' binaries are used.
183 case $(uname -s) in
184 Darwin)
185 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
186 ;;
187 Linux)
188 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
189 ;;
190 *)
191 ANDROID_EMULATOR_PREBUILTS=
192 ;;
193 esac
194 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700195 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200196 export ANDROID_EMULATOR_PREBUILTS
197 fi
198
Ying Wangaa1c9b52012-11-26 20:51:59 -0800199 export PATH=$ANDROID_BUILD_PATHS$PATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800200
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500201 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900202 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500203 if [ -n "$JAVA_HOME" ]; then
204 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900205 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
206 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500207 fi
208
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800209 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700210 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
211 export OUT=$ANDROID_PRODUCT_OUT
212
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700213 unset ANDROID_HOST_OUT
214 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
215
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800216 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700217 # TODO: fix the path
218 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
219}
220
221function printconfig()
222{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800223 T=$(gettop)
224 if [ ! "$T" ]; then
225 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
226 return
227 fi
228 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700229}
230
231function set_stuff_for_environment()
232{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800233 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500234 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800235 setpaths
236 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700237
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800238 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700239 # With this environment variable new GCC can apply colors to warnings/errors
240 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700241 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700242}
243
244function set_sequence_number()
245{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700246 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700247}
248
249function settitle()
250{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800251 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700252 local arch=$(gettargetarch)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700253 local product=$TARGET_PRODUCT
254 local variant=$TARGET_BUILD_VARIANT
255 local apps=$TARGET_BUILD_APPS
256 if [ -z "$apps" ]; then
Raghu Gandham8da43102012-07-25 19:57:22 -0700257 export PROMPT_COMMAND="echo -ne \"\033]0;[${arch}-${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700258 else
Raghu Gandham8da43102012-07-25 19:57:22 -0700259 export PROMPT_COMMAND="echo -ne \"\033]0;[$arch $apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
Joe Onoratoda12daf2010-06-09 18:18:31 -0700260 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800261 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700262}
263
Kenny Root52aa81c2011-07-15 11:07:06 -0700264function addcompletions()
265{
266 local T dir f
267
268 # Keep us from trying to run in something that isn't bash.
269 if [ -z "${BASH_VERSION}" ]; then
270 return
271 fi
272
273 # Keep us from trying to run in bash that's too old.
274 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
275 return
276 fi
277
278 dir="sdk/bash_completion"
279 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700280 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700281 echo "including $f"
282 . $f
283 done
284 fi
285}
286
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700287function choosetype()
288{
289 echo "Build type choices are:"
290 echo " 1. release"
291 echo " 2. debug"
292 echo
293
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800294 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700295 DEFAULT_NUM=1
296 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700297
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800298 export TARGET_BUILD_TYPE=
299 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700300 while [ -z $TARGET_BUILD_TYPE ]
301 do
302 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800303 if [ -z "$1" ] ; then
304 read ANSWER
305 else
306 echo $1
307 ANSWER=$1
308 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700309 case $ANSWER in
310 "")
311 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
312 ;;
313 1)
314 export TARGET_BUILD_TYPE=release
315 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800316 release)
317 export TARGET_BUILD_TYPE=release
318 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700319 2)
320 export TARGET_BUILD_TYPE=debug
321 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800322 debug)
323 export TARGET_BUILD_TYPE=debug
324 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700325 *)
326 echo
327 echo "I didn't understand your response. Please try again."
328 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700329 ;;
330 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800331 if [ -n "$1" ] ; then
332 break
333 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700334 done
335
336 set_stuff_for_environment
337}
338
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800339#
340# This function isn't really right: It chooses a TARGET_PRODUCT
341# based on the list of boards. Usually, that gets you something
342# that kinda works with a generic product, but really, you should
343# pick a product by name.
344#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700345function chooseproduct()
346{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700347 if [ "x$TARGET_PRODUCT" != x ] ; then
348 default_value=$TARGET_PRODUCT
349 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700350 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700351 fi
352
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800353 export TARGET_PRODUCT=
354 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700355 while [ -z "$TARGET_PRODUCT" ]
356 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700357 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800358 if [ -z "$1" ] ; then
359 read ANSWER
360 else
361 echo $1
362 ANSWER=$1
363 fi
364
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700365 if [ -z "$ANSWER" ] ; then
366 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800367 else
368 if check_product $ANSWER
369 then
370 export TARGET_PRODUCT=$ANSWER
371 else
372 echo "** Not a valid product: $ANSWER"
373 fi
374 fi
375 if [ -n "$1" ] ; then
376 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700377 fi
378 done
379
380 set_stuff_for_environment
381}
382
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800383function choosevariant()
384{
385 echo "Variant choices are:"
386 local index=1
387 local v
388 for v in ${VARIANT_CHOICES[@]}
389 do
390 # The product name is the name of the directory containing
391 # the makefile we found, above.
392 echo " $index. $v"
393 index=$(($index+1))
394 done
395
396 local default_value=eng
397 local ANSWER
398
399 export TARGET_BUILD_VARIANT=
400 while [ -z "$TARGET_BUILD_VARIANT" ]
401 do
402 echo -n "Which would you like? [$default_value] "
403 if [ -z "$1" ] ; then
404 read ANSWER
405 else
406 echo $1
407 ANSWER=$1
408 fi
409
410 if [ -z "$ANSWER" ] ; then
411 export TARGET_BUILD_VARIANT=$default_value
412 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
413 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800414 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800415 fi
416 else
417 if check_variant $ANSWER
418 then
419 export TARGET_BUILD_VARIANT=$ANSWER
420 else
421 echo "** Not a valid variant: $ANSWER"
422 fi
423 fi
424 if [ -n "$1" ] ; then
425 break
426 fi
427 done
428}
429
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700430function choosecombo()
431{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700432 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700433
434 echo
435 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700436 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700437
438 echo
439 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700440 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800441
442 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700443 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800444 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700445}
446
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800447# Clear this variable. It will be built up again when the vendorsetup.sh
448# files are included at the end of this file.
449unset LUNCH_MENU_CHOICES
450function add_lunch_combo()
451{
452 local new_combo=$1
453 local c
454 for c in ${LUNCH_MENU_CHOICES[@]} ; do
455 if [ "$new_combo" = "$c" ] ; then
456 return
457 fi
458 done
459 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
460}
461
462# add the default one here
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700463add_lunch_combo aosp_arm-eng
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800464add_lunch_combo aosp_arm64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000465add_lunch_combo aosp_mips-eng
Chris Dearman1efd9e42014-02-03 15:01:24 -0800466add_lunch_combo aosp_mips64-eng
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000467add_lunch_combo aosp_x86-eng
468add_lunch_combo aosp_x86_64-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800469
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700470function print_lunch_menu()
471{
472 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700473 echo
474 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700475 echo
476 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800477
478 local i=1
479 local choice
480 for choice in ${LUNCH_MENU_CHOICES[@]}
481 do
482 echo " $i. $choice"
483 i=$(($i+1))
484 done
485
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700486 echo
487}
488
489function lunch()
490{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800491 local answer
492
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700493 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800494 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700495 else
496 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700497 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800498 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700499 fi
500
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800501 local selection=
502
503 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700504 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700505 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800506 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
507 then
508 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
509 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800510 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800511 fi
512 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
513 then
514 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700515 fi
516
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800517 if [ -z "$selection" ]
518 then
519 echo
520 echo "Invalid lunch combo: $answer"
521 return 1
522 fi
523
Joe Onoratoda12daf2010-06-09 18:18:31 -0700524 export TARGET_BUILD_APPS=
525
Jeff Browne33ba4c2011-07-11 22:11:46 -0700526 local product=$(echo -n $selection | sed -e "s/-.*$//")
527 check_product $product
528 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800529 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700530 echo
531 echo "** Don't have a product spec for: '$product'"
532 echo "** Do you have the right repo manifest?"
533 product=
534 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800535
Jeff Browne33ba4c2011-07-11 22:11:46 -0700536 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
537 check_variant $variant
538 if [ $? -ne 0 ]
539 then
540 echo
541 echo "** Invalid variant: '$variant'"
542 echo "** Must be one of ${VARIANT_CHOICES[@]}"
543 variant=
544 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800545
Jeff Browne33ba4c2011-07-11 22:11:46 -0700546 if [ -z "$product" -o -z "$variant" ]
547 then
548 echo
549 return 1
550 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800551
Jeff Browne33ba4c2011-07-11 22:11:46 -0700552 export TARGET_PRODUCT=$product
553 export TARGET_BUILD_VARIANT=$variant
554 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700555
556 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800557
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700558 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800559 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700560}
561
Jeff Davidson513d7a42010-08-02 10:00:44 -0700562# Tab completion for lunch.
563function _lunch()
564{
565 local cur prev opts
566 COMPREPLY=()
567 cur="${COMP_WORDS[COMP_CWORD]}"
568 prev="${COMP_WORDS[COMP_CWORD-1]}"
569
570 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
571 return 0
572}
573complete -F _lunch lunch
574
Joe Onoratoda12daf2010-06-09 18:18:31 -0700575# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700576# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700577function tapas()
578{
Ying Wangb541ab62014-05-29 17:57:40 -0700579 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700580 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Ying Wangb541ab62014-05-29 17:57:40 -0700581 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|armv5|arm64|x86_64|mips64)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700582
Ying Wang67f02922012-08-22 10:25:20 -0700583 if [ $(echo $arch | wc -w) -gt 1 ]; then
584 echo "tapas: Error: Multiple build archs supplied: $arch"
585 return
586 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700587 if [ $(echo $variant | wc -w) -gt 1 ]; then
588 echo "tapas: Error: Multiple build variants supplied: $variant"
589 return
590 fi
Ying Wang67f02922012-08-22 10:25:20 -0700591
592 local product=full
593 case $arch in
Ying Wangb541ab62014-05-29 17:57:40 -0700594 x86) product=full_x86;;
595 mips) product=full_mips;;
596 armv5) product=generic_armv5;;
597 arm64) product=aosp_arm64;;
598 x86_64) product=aosp_x86_64;;
599 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700600 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700601 if [ -z "$variant" ]; then
602 variant=eng
603 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700604 if [ -z "$apps" ]; then
605 apps=all
606 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700607
Ying Wang67f02922012-08-22 10:25:20 -0700608 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700609 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700610 export TARGET_BUILD_TYPE=release
611 export TARGET_BUILD_APPS=$apps
612
613 set_stuff_for_environment
614 printconfig
615}
616
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700617function gettop
618{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800619 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700620 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700621 # The following circumlocution ensures we remove symlinks from TOP.
622 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700623 else
624 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800625 # The following circumlocution (repeated below as well) ensures
626 # that we record the true directory name and not one that is
627 # faked up with symlink names.
628 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700629 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800630 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700631 T=
632 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800633 \cd ..
synergyb112a402013-07-05 19:47:47 -0700634 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700635 done
Ying Wang9cd17642012-12-13 10:52:07 -0800636 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700637 if [ -f "$T/$TOPFILE" ]; then
638 echo $T
639 fi
640 fi
641 fi
642}
643
Andrew Hsieh906cb782013-09-10 17:37:14 +0800644# Return driver for "make", if any (eg. static analyzer)
645function getdriver()
646{
647 local T="$1"
648 test "$WITH_STATIC_ANALYZER" = "0" && unset WITH_STATIC_ANALYZER
649 if [ -n "$WITH_STATIC_ANALYZER" ]; then
650 echo "\
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800651$T/prebuilts/misc/linux-x86/analyzer/tools/scan-build/scan-build \
652--use-analyzer $T/prebuilts/misc/linux-x86/analyzer/bin/analyzer \
Andrew Hsieh906cb782013-09-10 17:37:14 +0800653--status-bugs \
654--top=$T"
655 fi
656}
657
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700658function m()
659{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800660 local T=$(gettop)
661 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700662 if [ "$T" ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800663 $DRV make -C $T -f build/core/main.mk $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700664 else
665 echo "Couldn't locate the top of the tree. Try setting TOP."
666 fi
667}
668
669function findmakefile()
670{
671 TOPFILE=build/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800672 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700673 T=
674 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700675 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700676 if [ -f "$T/Android.mk" ]; then
677 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800678 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700679 return
680 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800681 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700682 done
Ying Wang9cd17642012-12-13 10:52:07 -0800683 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700684}
685
686function mm()
687{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800688 local T=$(gettop)
689 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700690 # If we're sitting in the root of the build tree, just do a
691 # normal make.
692 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800693 $DRV make $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700694 else
695 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800696 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700697 local MODULES=
698 local GET_INSTALL_PATH=
699 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700700 # Remove the path to top as the makefilepath needs to be relative
701 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700702 if [ ! "$T" ]; then
703 echo "Couldn't locate the top of the tree. Try setting TOP."
704 elif [ ! "$M" ]; then
705 echo "Couldn't locate a makefile from the current directory."
706 else
Ying Wanga7deb082013-08-16 13:24:47 -0700707 for ARG in $@; do
708 case $ARG in
709 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
710 esac
711 done
712 if [ -n "$GET_INSTALL_PATH" ]; then
713 MODULES=
714 ARGS=GET-INSTALL-PATH
715 else
716 MODULES=all_modules
717 ARGS=$@
718 fi
Andrew Hsieh246daf72013-09-10 18:07:23 -0700719 ONE_SHOT_MAKEFILE=$M $DRV make -C $T -f build/core/main.mk $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700720 fi
721 fi
722}
723
724function mmm()
725{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800726 local T=$(gettop)
727 local DRV=$(getdriver $T)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700728 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800729 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800730 local MODULES=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800731 local ARGS=
732 local DIR TO_CHOP
Ying Wanga7deb082013-08-16 13:24:47 -0700733 local GET_INSTALL_PATH=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800734 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
735 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
736 for DIR in $DIRS ; do
Alon Albert68895a92011-11-30 12:40:19 -0800737 MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
738 if [ "$MODULES" = "" ]; then
739 MODULES=all_modules
740 fi
741 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700742 if [ -f $DIR/Android.mk ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700743 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
744 local TO_CHOP=`expr $TO_CHOP + 1`
745 local START=`PWD= /bin/pwd`
746 local MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700747 if [ "$MFILE" = "" ] ; then
748 MFILE=$DIR/Android.mk
749 else
750 MFILE=$MFILE/$DIR/Android.mk
751 fi
752 MAKEFILE="$MAKEFILE $MFILE"
753 else
Ying Wanga7deb082013-08-16 13:24:47 -0700754 case $DIR in
755 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
756 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
757 *) echo "No Android.mk in $DIR."; return 1;;
758 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700759 fi
760 done
Ying Wanga7deb082013-08-16 13:24:47 -0700761 if [ -n "$GET_INSTALL_PATH" ]; then
762 ARGS=$GET_INSTALL_PATH
763 MODULES=
764 fi
Andrew Hsieh906cb782013-09-10 17:37:14 +0800765 ONE_SHOT_MAKEFILE="$MAKEFILE" $DRV make -C $T -f build/core/main.mk $DASH_ARGS $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700766 else
767 echo "Couldn't locate the top of the tree. Try setting TOP."
768 fi
769}
770
Ying Wangb607f7b2013-02-08 18:01:04 -0800771function mma()
772{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800773 local T=$(gettop)
774 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800775 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
Andrew Hsieh906cb782013-09-10 17:37:14 +0800776 $DRV make $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800777 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800778 if [ ! "$T" ]; then
779 echo "Couldn't locate the top of the tree. Try setting TOP."
780 fi
781 local MY_PWD=`PWD= /bin/pwd|sed 's:'$T'/::'`
Andrew Hsieh906cb782013-09-10 17:37:14 +0800782 $DRV make -C $T -f build/core/main.mk $@ all_modules BUILD_MODULES_IN_PATHS="$MY_PWD"
Ying Wangb607f7b2013-02-08 18:01:04 -0800783 fi
784}
785
786function mmma()
787{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800788 local T=$(gettop)
789 local DRV=$(getdriver $T)
Ying Wangb607f7b2013-02-08 18:01:04 -0800790 if [ "$T" ]; then
791 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
792 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
793 local MY_PWD=`PWD= /bin/pwd`
794 if [ "$MY_PWD" = "$T" ]; then
795 MY_PWD=
796 else
797 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
798 fi
799 local DIR=
800 local MODULE_PATHS=
801 local ARGS=
802 for DIR in $DIRS ; do
803 if [ -d $DIR ]; then
804 if [ "$MY_PWD" = "" ]; then
805 MODULE_PATHS="$MODULE_PATHS $DIR"
806 else
807 MODULE_PATHS="$MODULE_PATHS $MY_PWD/$DIR"
808 fi
809 else
810 case $DIR in
811 showcommands | snod | dist | incrementaljavac) ARGS="$ARGS $DIR";;
812 *) echo "Couldn't find directory $DIR"; return 1;;
813 esac
814 fi
815 done
Andrew Hsieh906cb782013-09-10 17:37:14 +0800816 $DRV make -C $T -f build/core/main.mk $DASH_ARGS $ARGS all_modules BUILD_MODULES_IN_PATHS="$MODULE_PATHS"
Ying Wangb607f7b2013-02-08 18:01:04 -0800817 else
818 echo "Couldn't locate the top of the tree. Try setting TOP."
819 fi
820}
821
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700822function croot()
823{
824 T=$(gettop)
825 if [ "$T" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800826 \cd $(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700827 else
828 echo "Couldn't locate the top of the tree. Try setting TOP."
829 fi
830}
831
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700832function cproj()
833{
834 TOPFILE=build/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700835 local HERE=$PWD
836 T=
837 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
838 T=$PWD
839 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800840 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700841 return
842 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800843 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700844 done
Ying Wang9cd17642012-12-13 10:52:07 -0800845 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700846 echo "can't find Android.mk"
847}
848
Daniel Sandler47e0a882013-07-30 13:23:52 -0400849# simplified version of ps; output in the form
850# <pid> <procname>
851function qpid() {
852 local prepend=''
853 local append=''
854 if [ "$1" = "--exact" ]; then
855 prepend=' '
856 append='$'
857 shift
858 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
859 echo "usage: qpid [[--exact] <process name|pid>"
860 return 255
861 fi
862
863 local EXE="$1"
864 if [ "$EXE" ] ; then
Mathias Agopian44583272013-08-27 14:15:50 -0700865 qpid | \grep "$prepend$EXE$append"
Daniel Sandler47e0a882013-07-30 13:23:52 -0400866 else
867 adb shell ps \
868 | tr -d '\r' \
869 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
870 fi
871}
872
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700873function pid()
874{
Daniel Sandler47e0a882013-07-30 13:23:52 -0400875 local prepend=''
876 local append=''
877 if [ "$1" = "--exact" ]; then
878 prepend=' '
879 append='$'
880 shift
881 fi
882 local EXE="$1"
883 if [ "$EXE" ] ; then
884 local PID=`adb shell ps \
885 | tr -d '\r' \
Mathias Agopian44583272013-08-27 14:15:50 -0700886 | \grep "$prepend$EXE$append" \
Daniel Sandler47e0a882013-07-30 13:23:52 -0400887 | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'`
888 echo "$PID"
889 else
890 echo "usage: pid [--exact] <process name>"
891 return 255
892 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700893}
894
Christopher Tate744ee802009-11-12 15:33:08 -0800895# systemstack - dump the current stack trace of all threads in the system process
896# to the usual ANR traces file
897function systemstack()
898{
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800899 stacks system_server
900}
901
902function stacks()
903{
904 if [[ $1 =~ ^[0-9]+$ ]] ; then
905 local PID="$1"
906 elif [ "$1" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700907 local PIDLIST="$(pid $1)"
908 if [[ $PIDLIST =~ ^[0-9]+$ ]] ; then
909 local PID="$PIDLIST"
910 elif [ "$PIDLIST" ] ; then
911 echo "more than one process: $1"
912 else
913 echo "no such process: $1"
914 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800915 else
916 echo "usage: stacks [pid|process name]"
917 fi
918
919 if [ "$PID" ] ; then
Jeff Brownb12c2e52013-08-19 15:14:16 -0700920 # Determine whether the process is native
921 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then
922 # Dump stacks of Dalvik process
923 local TRACES=/data/anr/traces.txt
924 local ORIG=/data/anr/traces.orig
925 local TMP=/data/anr/traces.tmp
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800926
Jeff Brownb12c2e52013-08-19 15:14:16 -0700927 # Keep original traces to avoid clobbering
928 adb shell mv $TRACES $ORIG
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800929
Jeff Brownb12c2e52013-08-19 15:14:16 -0700930 # Make sure we have a usable file
931 adb shell touch $TRACES
932 adb shell chmod 666 $TRACES
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800933
Jeff Brownb12c2e52013-08-19 15:14:16 -0700934 # Dump stacks and wait for dump to finish
935 adb shell kill -3 $PID
936 adb shell notify $TRACES >/dev/null
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800937
Jeff Brownb12c2e52013-08-19 15:14:16 -0700938 # Restore original stacks, and show current output
939 adb shell mv $TRACES $TMP
940 adb shell mv $ORIG $TRACES
941 adb shell cat $TMP
942 else
943 # Dump stacks of native process
Michael Wrightaeed7212014-06-19 19:58:12 -0700944 local USE64BIT="$(is64bit $PID)"
945 adb shell debuggerd$USE64BIT -b $PID
Jeff Brownb12c2e52013-08-19 15:14:16 -0700946 fi
Jeff Sharkeyf5824372013-02-19 17:00:46 -0800947 fi
Christopher Tate744ee802009-11-12 15:33:08 -0800948}
949
John Michelau50200252012-11-09 11:48:04 -0600950function gdbwrapper()
951{
Ben Chengfba67bf2014-02-25 10:27:07 -0800952 local GDB_CMD="$1"
953 shift 1
954 $GDB_CMD -x "$@"
John Michelau50200252012-11-09 11:48:04 -0600955}
956
Brigid Smith0a2712d2014-05-28 14:36:43 -0700957function get_symbols_directory()
958{
959 echo $(get_abs_build_var TARGET_OUT_UNSTRIPPED)
960}
961
Michael Wrightaeed7212014-06-19 19:58:12 -0700962# Read the ELF header from /proc/$PID/exe to determine if the process is
963# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -0800964function is64bit()
965{
966 local PID="$1"
967 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -0700968 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800969 echo "64"
970 else
971 echo ""
972 fi
973 else
974 echo ""
975 fi
976}
977
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -0700978function adb_get_product_device() {
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -0800979 local candidate=`adb shell getprop ro.product.device | sed s/.$//`
980 if [ -z $candidate ]; then
981 candidate=`adb shell getprop ro.hardware | sed s/.$//`
982 fi
983 echo $candidate
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -0700984}
985
986# returns 0 when process is not traced
987function adb_get_traced_by() {
988 echo `adb shell cat /proc/$1/status | grep -e "^TracerPid:" | sed "s/^TracerPid:\t//" | sed s/.$//`
989}
990
991function gdbclient() {
992 # TODO:
993 # 1. Check for ANDROID_SERIAL/multiple devices
994 local PROCESS_NAME="n/a"
995 local PID=$1
996 local PORT=5039
997 if [ -z "$PID" ]; then
998 echo "Usage: gdbclient <pid|processname> [port number]"
999 return -1
1000 fi
1001 local DEVICE=$(adb_get_product_device)
1002
1003 if [ -z "$DEVICE" ]; then
1004 echo "Error: Unable to get device name. Please check if device is connected and ANDROID_SERIAL is set."
1005 return -2
1006 fi
1007
1008 if [ -n "$2" ]; then
1009 PORT=$2
1010 fi
1011
1012 local ROOT=$(gettop)
1013 if [ -z "$ROOT" ]; then
1014 # This is for the situation with downloaded symbols (from the build server)
1015 # we check if they are available.
1016 ROOT=`realpath .`
1017 fi
1018
1019 local OUT_ROOT="$ROOT/out/target/product/$DEVICE"
1020 local SYMBOLS_DIR="$OUT_ROOT/symbols"
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001021 local IS_TAPAS_USER="$(get_build_var TARGET_BUILD_APPS)"
1022 local TAPAS_SYMBOLS_DIR=
1023
1024 if [ $IS_TAPAS_USER ]; then
1025 TAPAS_SYMBOLS_DIR=$(get_symbols_directory)
1026 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001027
1028 if [ ! -d $SYMBOLS_DIR ]; then
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001029 if [ $IS_TAPAS_USER ]; then
1030 mkdir -p $SYMBOLS_DIR/system/bin
1031 else
1032 echo "Error: couldn't find symbols: $SYMBOLS_DIR does not exist or is not a directory."
1033 return -3
1034 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001035 fi
1036
1037 # let's figure out which executable we are about to debug
1038
1039 # check if user specified a name -> resolve to pid
1040 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1041 PROCESS_NAME=$PID
1042 PID=$(pid --exact $PROCESS_NAME)
1043 if [ -z "$PID" ]; then
1044 echo "Error: couldn't resolve pid by process name: $PROCESS_NAME"
1045 return -4
Dmitriy Ivanovdfff1702015-01-22 13:22:17 -08001046 else
1047 echo "Resolved pid for $PROCESS_NAME is $PID"
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001048 fi
1049 fi
1050
1051 local EXE=`adb shell readlink /proc/$PID/exe | sed s/.$//`
Dmitriy Ivanovdfff1702015-01-22 13:22:17 -08001052
1053 if [ -z "$EXE" ]; then
1054 echo "Error: no such pid=$PID - is process still alive?"
1055 return -4
1056 fi
1057
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001058 local LOCAL_EXE_PATH=$SYMBOLS_DIR$EXE
1059
1060 if [ ! -f $LOCAL_EXE_PATH ]; then
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001061 if [ $IS_TAPAS_USER ]; then
1062 adb pull $EXE $LOCAL_EXE_PATH
1063 else
1064 echo "Error: unable to find symbols for executable $EXE: file $LOCAL_EXE_PATH does not exist"
1065 return -5
1066 fi
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001067 fi
1068
1069 local USE64BIT=""
1070
1071 if [[ "$(file $LOCAL_EXE_PATH)" =~ 64-bit ]]; then
1072 USE64BIT="64"
1073 fi
1074
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001075 # and now linker for tapas users...
1076 if [ -n "$IS_TAPAS_USER" -a ! -f "$SYMBOLS_DIR/system/bin/linker$USE64BIT" ]; then
1077 adb pull /system/bin/linker$USE64BIT $SYMBOLS_DIR/system/bin/linker$USE64BIT
1078 fi
1079
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001080 local GDB=
1081 local GDB64=
1082 local CPU_ABI=`adb shell getprop ro.product.cpu.abilist | sed s/.$//`
1083 # TODO: we assume these are available via $PATH
1084 if [[ $CPU_ABI =~ (^|,)arm64 ]]; then
1085 GDB=arm-linux-androideabi-gdb
1086 GDB64=aarch64-linux-android-gdb
1087 elif [[ $CPU_ABI =~ (^|,)arm ]]; then
1088 GDB=arm-linux-androideabi-gdb
1089 elif [[ $CPU_ABI =~ (^|,)x86_64 ]]; then
Pirama Arumuga Nainar8c346f62015-01-05 14:33:33 -08001090 GDB=x86_64-linux-android-gdb
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001091 elif [[ $CPU_ABI =~ (^|,)x86 ]]; then
Pirama Arumuga Nainar8c346f62015-01-05 14:33:33 -08001092 GDB=x86_64-linux-android-gdb
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001093 elif [[ $CPU_ABI =~ (^|,)mips64 ]]; then
1094 GDB=mipsel-linux-android-gdb
1095 GDB64=mips64el-linux-android-gdb
1096 elif [[ $CPU_ABI =~ (^|,)mips ]]; then
1097 GDB=mipsel-linux-android-gdb
1098 else
1099 echo "Error: unrecognized cpu.abilist: $CPU_ABI"
1100 return -6
1101 fi
1102
1103 # TODO: check if tracing process is gdbserver and not some random strace...
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001104 if [ "$(adb_get_traced_by $PID)" -eq 0 ]; then
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001105 # start gdbserver
1106 echo "Starting gdbserver..."
1107 # TODO: check if adb is already listening $PORT
1108 # to avoid unnecessary calls
1109 echo ". adb forward for port=$PORT..."
1110 adb forward tcp:$PORT tcp:$PORT
1111 echo ". starting gdbserver to attach to pid=$PID..."
1112 adb shell gdbserver$USE64BIT :$PORT --attach $PID &
1113 echo ". give it couple of seconds to start..."
1114 sleep 2
1115 echo ". done"
1116 else
1117 echo "It looks like gdbserver is already attached to $PID (process is traced), trying to connect to it using local port=$PORT"
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001118 adb forward tcp:$PORT tcp:$PORT
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001119 fi
1120
1121 local OUT_SO_SYMBOLS=$SYMBOLS_DIR/system/lib$USE64BIT
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001122 local TAPAS_OUT_SO_SYMBOLS=$TAPAS_SYMBOLS_DIR/system/lib$USE64BIT
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001123 local OUT_VENDOR_SO_SYMBOLS=$SYMBOLS_DIR/vendor/lib$USE64BIT
1124 local ART_CMD=""
1125
Dmitriy Ivanov8cde5282014-11-12 14:16:12 -08001126 local SOLIB_SYSROOT=$SYMBOLS_DIR
1127 local SOLIB_SEARCHPATH=$OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl
1128
1129 if [ $IS_TAPAS_USER ]; then
1130 SOLIB_SYSROOT=$TAPAS_SYMBOLS_DIR:$SOLIB_SYSROOT
1131 SOLIB_SEARCHPATH=$TAPAS_OUT_SO_SYMBOLS:$SOLIB_SEARCHPATH
1132 fi
1133
1134 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $SOLIB_SYSROOT"
1135 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $SOLIB_SEARCHPATH"
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001136 local DALVIK_GDB_SCRIPT=$ROOT/development/scripts/gdb/dalvik.gdb
1137 if [ -f $DALVIK_GDB_SCRIPT ]; then
1138 echo >>"$OUT_ROOT/gdbclient.cmds" "source $DALVIK_GDB_SCRIPT"
1139 ART_CMD="art-on"
1140 else
1141 echo "Warning: couldn't find $DALVIK_GDB_SCRIPT - ART debugging options will not be available"
1142 fi
1143 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote :$PORT"
1144 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1145 echo >> "$OUT_ROOT/gdbclient.cmds" $ART_CMD
1146 fi
1147
1148 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1149
1150 local WHICH_GDB=$GDB
1151
1152 if [ -n "$USE64BIT" -a -n "$GDB64" ]; then
1153 WHICH_GDB=$GDB64
1154 fi
1155
1156 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$LOCAL_EXE_PATH"
1157}
1158
Ben Chengfba67bf2014-02-25 10:27:07 -08001159# gdbclient now determines whether the user wants to debug a 32-bit or 64-bit
1160# executable, set up the approriate gdbserver, then invokes the proper host
1161# gdb.
Dmitriy Ivanov9b8e4b32014-10-30 22:00:17 -07001162function gdbclient_old()
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001163{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001164 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
1165 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
1166 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
Colin Cross3655a682014-05-22 11:59:10 -07001167 local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED)
Brigid Smith0a2712d2014-05-28 14:36:43 -07001168 local OUT_EXE_SYMBOLS=$(get_symbols_directory)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001169 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001170 local ARCH=$(get_build_var TARGET_ARCH)
1171 local GDB
1172 case "$ARCH" in
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001173 arm) GDB=arm-linux-androideabi-gdb;;
Ben Chengfba67bf2014-02-25 10:27:07 -08001174 arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;;
Duane Sand3c4fcd82014-07-22 14:34:00 -07001175 mips|mips64) GDB=mips64el-linux-android-gdb;;
Serban Constantinescu9b68fb22014-01-14 10:33:53 +00001176 x86) GDB=x86_64-linux-android-gdb;;
1177 x86_64) GDB=x86_64-linux-android-gdb;;
Nick Kralevich0ab21d32011-11-11 09:02:01 -08001178 *) echo "Unknown arch $ARCH"; return 1;;
1179 esac
1180
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001181 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
1182 local EXE="$1"
1183 if [ "$EXE" ] ; then
1184 EXE=$1
Brigid Smith7a569a62014-06-20 14:12:12 -07001185 if [[ $EXE =~ ^[^/].* ]] ; then
1186 EXE="system/bin/"$EXE
1187 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001188 else
1189 EXE="app_process"
1190 fi
1191
1192 local PORT="$2"
1193 if [ "$PORT" ] ; then
1194 PORT=$2
1195 else
1196 PORT=":5039"
1197 fi
1198
Chris Craik20c136a2012-11-09 18:02:19 -08001199 local PID="$3"
1200 if [ "$PID" ] ; then
1201 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -07001202 PID=`pid $3`
Chris Craik20c136a2012-11-09 18:02:19 -08001203 if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then
1204 # that likely didn't work because of returning multiple processes
1205 # try again, filtering by root processes (don't contain colon)
Mathias Agopian44583272013-08-27 14:15:50 -07001206 PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'`
Chris Craik20c136a2012-11-09 18:02:19 -08001207 if [[ ! "$PID" =~ ^[0-9]+$ ]]
1208 then
1209 echo "Couldn't resolve '$3' to single PID"
1210 return 1
1211 else
1212 echo ""
1213 echo "WARNING: multiple processes matching '$3' observed, using root process"
1214 echo ""
1215 fi
1216 fi
Grace Klobae9d04bf2011-04-30 11:04:05 -07001217 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001218 adb forward "tcp$PORT" "tcp$PORT"
Ben Chengfba67bf2014-02-25 10:27:07 -08001219 local USE64BIT="$(is64bit $PID)"
1220 adb shell gdbserver$USE64BIT $PORT --attach $PID &
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001221 sleep 2
1222 else
1223 echo ""
1224 echo "If you haven't done so already, do this first on the device:"
1225 echo " gdbserver $PORT /system/bin/$EXE"
1226 echo " or"
Chris Craik20c136a2012-11-09 18:02:19 -08001227 echo " gdbserver $PORT --attach <PID>"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001228 echo ""
1229 fi
1230
Colin Cross84480ad2014-04-10 12:51:39 -07001231 OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT
Colin Crossa58f8e02014-06-20 13:33:36 -07001232 OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT
Colin Cross84480ad2014-04-10 12:51:39 -07001233
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001234 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
Colin Cross3655a682014-05-22 11:59:10 -07001235 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:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl"
Ben Cheng72398162013-06-24 14:36:21 -07001236 echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001237 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
Christopher Ferris855d27f2014-10-03 17:29:27 -07001238 # Enable special debugging for ART processes.
1239 if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then
1240 echo >> "$OUT_ROOT/gdbclient.cmds" "art-on"
1241 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001242 echo >>"$OUT_ROOT/gdbclient.cmds" ""
1243
Ben Chengfba67bf2014-02-25 10:27:07 -08001244 local WHICH_GDB=
1245 # 64-bit exe found
1246 if [ "$USE64BIT" != "" ] ; then
1247 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64
1248 # 32-bit exe / 32-bit platform
1249 elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then
1250 WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB
1251 # 32-bit exe / 64-bit platform
1252 else
1253 WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB
1254 fi
Brigid Smith0a2712d2014-05-28 14:36:43 -07001255
Ben Chengfba67bf2014-02-25 10:27:07 -08001256 gdbwrapper $WHICH_GDB "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001257 else
1258 echo "Unable to determine build system output dir."
1259 fi
1260
1261}
1262
1263case `uname -s` in
1264 Darwin)
1265 function sgrep()
1266 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001267 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001268 }
1269
1270 ;;
1271 *)
1272 function sgrep()
1273 {
Jeff Brown46cbd202014-07-26 15:15:41 -07001274 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\)' -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001275 }
1276 ;;
1277esac
1278
Raghu Gandham8da43102012-07-25 19:57:22 -07001279function gettargetarch
1280{
1281 get_build_var TARGET_ARCH
1282}
1283
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001284function ggrep()
1285{
1286 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" -print0 | xargs -0 grep --color -n "$@"
1287}
1288
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001289function jgrep()
1290{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001291 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001292}
1293
1294function cgrep()
1295{
Dan Albert01961192014-11-22 10:16:01 -08001296 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp' \) -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001297}
1298
1299function resgrep()
1300{
Anatolii Shuba91c72d22013-07-05 16:09:25 +03001301 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@"; done;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001302}
1303
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001304function mangrep()
1305{
1306 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' -print0 | xargs -0 grep --color -n "$@"
1307}
1308
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001309function sepgrep()
1310{
1311 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d -print0 | xargs -0 grep --color -n -r --exclude-dir=\.git "$@"
1312}
1313
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001314case `uname -s` in
1315 Darwin)
1316 function mgrep()
1317 {
Ying Wang324c2b22012-08-17 15:03:20 -07001318 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 Projectb6c1cf62008-10-21 07:00:00 -07001319 }
1320
1321 function treegrep()
1322 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001323 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 Projectb6c1cf62008-10-21 07:00:00 -07001324 }
1325
1326 ;;
1327 *)
1328 function mgrep()
1329 {
Ying Wang324c2b22012-08-17 15:03:20 -07001330 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 Projectb6c1cf62008-10-21 07:00:00 -07001331 }
1332
1333 function treegrep()
1334 {
Joe Onoratof50e84b2011-03-15 14:15:46 -07001335 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 Projectb6c1cf62008-10-21 07:00:00 -07001336 }
1337
1338 ;;
1339esac
1340
1341function getprebuilt
1342{
1343 get_abs_build_var ANDROID_PREBUILTS
1344}
1345
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001346function tracedmdump()
1347{
1348 T=$(gettop)
1349 if [ ! "$T" ]; then
1350 echo "Couldn't locate the top of the tree. Try setting TOP."
1351 return
1352 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001353 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001354 local arch=$(gettargetarch)
1355 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001356
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001357 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001358 if [ ! "$TRACE" ] ; then
1359 echo "usage: tracedmdump tracename"
1360 return
1361 fi
1362
Jack Veenstra60116fc2009-04-09 18:12:34 -07001363 if [ ! -r "$KERNEL" ] ; then
1364 echo "Error: cannot find kernel: '$KERNEL'"
1365 return
1366 fi
1367
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001368 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001369 if [ "$BASETRACE" = "$TRACE" ] ; then
1370 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1371 fi
1372
1373 echo "post-processing traces..."
1374 rm -f $TRACE/qtrace.dexlist
1375 post_trace $TRACE
1376 if [ $? -ne 0 ]; then
1377 echo "***"
1378 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1379 echo "***"
1380 return
1381 fi
1382 echo "generating dexlist output..."
1383 /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
1384 echo "generating dmtrace data..."
1385 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1386 echo "generating html file..."
1387 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1388 echo "done, see $TRACE/dmtrace.html for details"
1389 echo "or run:"
1390 echo " traceview $TRACE/dmtrace"
1391}
1392
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001393# communicate with a running device or emulator, set up necessary state,
1394# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001395function runhat()
1396{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001397 # process standard adb options
1398 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001399 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001400 adbTarget=$1
1401 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001402 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001403 adbTarget="$1 $2"
1404 shift 2
1405 fi
1406 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001407 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001408
1409 # runhat options
1410 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001411
1412 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001413 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001414 return
1415 fi
1416
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001417 # confirm hat is available
1418 if [ -z $(which hat) ]; then
1419 echo "hat is not available in this configuration."
1420 return
1421 fi
1422
Andy McFaddenb6289852010-07-12 08:00:19 -07001423 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001424 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001425 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001426 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001427 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001428 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001429 echo -n "> "
1430 read
1431
The Android Open Source Project88b60792009-03-03 19:28:42 -08001432 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001433
The Android Open Source Project88b60792009-03-03 19:28:42 -08001434 echo "Retrieving file $devFile..."
1435 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001436
The Android Open Source Project88b60792009-03-03 19:28:42 -08001437 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001438
The Android Open Source Project88b60792009-03-03 19:28:42 -08001439 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001440 echo "View the output by pointing your browser at http://localhost:7000/"
1441 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001442 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001443}
1444
1445function getbugreports()
1446{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001447 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001448
1449 if [ ! "$reports" ]; then
1450 echo "Could not locate any bugreports."
1451 return
1452 fi
1453
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001454 local report
1455 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001456 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001457 echo "/sdcard/bugreports/${report}"
1458 adb pull /sdcard/bugreports/${report} ${report}
1459 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001460 done
1461}
1462
Victoria Lease1b296b42012-08-21 15:44:06 -07001463function getsdcardpath()
1464{
1465 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1466}
1467
1468function getscreenshotpath()
1469{
1470 echo "$(getsdcardpath)/Pictures/Screenshots"
1471}
1472
1473function getlastscreenshot()
1474{
1475 local screenshot_path=$(getscreenshotpath)
1476 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1477 if [ "$screenshot" = "" ]; then
1478 echo "No screenshots found."
1479 return
1480 fi
1481 echo "${screenshot}"
1482 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1483}
1484
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001485function startviewserver()
1486{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001487 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001488 if [ $# -gt 0 ]; then
1489 port=$1
1490 fi
1491 adb shell service call window 1 i32 $port
1492}
1493
1494function stopviewserver()
1495{
1496 adb shell service call window 2
1497}
1498
1499function isviewserverstarted()
1500{
1501 adb shell service call window 3
1502}
1503
Romain Guyb84049a2010-10-04 16:56:11 -07001504function key_home()
1505{
1506 adb shell input keyevent 3
1507}
1508
1509function key_back()
1510{
1511 adb shell input keyevent 4
1512}
1513
1514function key_menu()
1515{
1516 adb shell input keyevent 82
1517}
1518
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001519function smoketest()
1520{
1521 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1522 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1523 return
1524 fi
1525 T=$(gettop)
1526 if [ ! "$T" ]; then
1527 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1528 return
1529 fi
1530
Ying Wang9cd17642012-12-13 10:52:07 -08001531 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001532 adb uninstall com.android.smoketest > /dev/null &&
1533 adb uninstall com.android.smoketest.tests > /dev/null &&
1534 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1535 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1536 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1537}
1538
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001539# simple shortcut to the runtest command
1540function runtest()
1541{
1542 T=$(gettop)
1543 if [ ! "$T" ]; then
1544 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1545 return
1546 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001547 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001548}
1549
The Android Open Source Project88b60792009-03-03 19:28:42 -08001550function godir () {
1551 if [[ -z "$1" ]]; then
1552 echo "Usage: godir <regex>"
1553 return
1554 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001555 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001556 if [[ ! -f $T/filelist ]]; then
1557 echo -n "Creating index..."
Ying Wang9cd17642012-12-13 10:52:07 -08001558 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001559 echo " Done"
1560 echo ""
1561 fi
1562 local lines
Jeff Hamilton293f9392011-11-18 17:15:25 -06001563 lines=($(\grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001564 if [[ ${#lines[@]} = 0 ]]; then
1565 echo "Not found"
1566 return
1567 fi
1568 local pathname
1569 local choice
1570 if [[ ${#lines[@]} > 1 ]]; then
1571 while [[ -z "$pathname" ]]; do
1572 local index=1
1573 local line
1574 for line in ${lines[@]}; do
1575 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001576 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001577 done
1578 echo
1579 echo -n "Select one: "
1580 unset choice
1581 read choice
1582 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1583 echo "Invalid choice"
1584 continue
1585 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001586 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001587 done
1588 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001589 pathname=${lines[0]}
1590 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001591 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001592}
1593
Neil Fuller46e00ea2014-10-16 10:23:03 +01001594# Force JAVA_HOME to point to java 1.7 if it isn't already set.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001595#
1596# Note that the MacOS path for java 1.7 includes a minor revision number (sigh).
1597# For some reason, installing the JDK doesn't make it show up in the
1598# JavaVM.framework/Versions/1.7/ folder.
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001599function set_java_home() {
Narayan Kamath9260bba2014-01-17 10:05:25 +00001600 # Clear the existing JAVA_HOME value if we set it ourselves, so that
Narayan Kamathc84889b2014-04-01 14:16:26 +01001601 # we can reset it later, depending on the version of java the build
1602 # system needs.
Narayan Kamath9260bba2014-01-17 10:05:25 +00001603 #
1604 # If we don't do this, the JAVA_HOME value set by the first call to
1605 # build/envsetup.sh will persist forever.
1606 if [ -n "$ANDROID_SET_JAVA_HOME" ]; then
1607 export JAVA_HOME=""
1608 fi
1609
Andy McFaddenbd960942010-06-24 12:52:51 -07001610 if [ ! "$JAVA_HOME" ]; then
Neil Fuller46e00ea2014-10-16 10:23:03 +01001611 case `uname -s` in
1612 Darwin)
1613 export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
1614 ;;
1615 *)
1616 export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
1617 ;;
1618 esac
Narayan Kamath9260bba2014-01-17 10:05:25 +00001619
1620 # Keep track of the fact that we set JAVA_HOME ourselves, so that
1621 # we can change it on the next envsetup.sh, if required.
1622 export ANDROID_SET_JAVA_HOME=true
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001623 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001624}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001625
Alex Rayf0d08eb2013-03-08 15:15:06 -08001626# Print colored exit condition
1627function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001628 "$@"
1629 local retval=$?
1630 if [ $retval -ne 0 ]
1631 then
1632 echo -e "\e[0;31mFAILURE\e[00m"
1633 else
1634 echo -e "\e[0;32mSUCCESS\e[00m"
1635 fi
1636 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001637}
1638
Ying Wanged21d4c2014-08-24 22:14:19 -07001639function get_make_command()
1640{
1641 echo command make
1642}
1643
Ed Heylcc6be0a2014-06-18 14:55:58 -07001644function make()
1645{
1646 local start_time=$(date +"%s")
Ying Wanged21d4c2014-08-24 22:14:19 -07001647 $(get_make_command) "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001648 local ret=$?
1649 local end_time=$(date +"%s")
1650 local tdiff=$(($end_time-$start_time))
1651 local hours=$(($tdiff / 3600 ))
1652 local mins=$((($tdiff % 3600) / 60))
1653 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001654 local ncolors=$(tput colors 2>/dev/null)
1655 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
1656 color_failed="\e[0;31m"
1657 color_success="\e[0;32m"
1658 color_reset="\e[00m"
1659 else
1660 color_failed=""
1661 color_success=""
1662 color_reset=""
1663 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001664 echo
1665 if [ $ret -eq 0 ] ; then
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001666 echo -n -e "${color_success}#### make completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001667 else
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001668 echo -n -e "${color_failed}#### make failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001669 fi
1670 if [ $hours -gt 0 ] ; then
1671 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1672 elif [ $mins -gt 0 ] ; then
1673 printf "(%02g:%02g (mm:ss))" $mins $secs
1674 elif [ $secs -gt 0 ] ; then
1675 printf "(%s seconds)" $secs
1676 fi
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001677 echo -e " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001678 echo
1679 return $ret
1680}
1681
Raphael Moll70a86b02011-06-20 16:03:14 -07001682if [ "x$SHELL" != "x/bin/bash" ]; then
1683 case `ps -o command -p $$` in
1684 *bash*)
1685 ;;
1686 *)
1687 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1688 ;;
1689 esac
1690fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001691
1692# Execute the contents of any vendorsetup.sh files we can find.
Ying Wang506410a2014-07-09 15:37:34 -07001693for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
1694 `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001695do
1696 echo "including $f"
1697 . $f
1698done
1699unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001700
1701addcompletions