blob: 92728b75e2d55adbe2fec145caeed275f8d93301 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001function help() {
2cat <<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:
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07004- croot: Changes directory to the top of the tree.
5- m: Makes from the top of the tree.
6- mm: Builds all of the modules in the current directory.
7- mmm: Builds all of the modules in the supplied directories.
8- cgrep: Greps on all local C/C++ files.
9- jgrep: Greps on all local Java files.
10- resgrep: Greps on all local res/*.xml files.
The Android Open Source Project88b60792009-03-03 19:28:42 -080011- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070012
13Look at the source to view more functions. The complete list is:
14EOF
15 T=$(gettop)
16 local A
17 A=""
18 for i in `cat $T/build/envsetup.sh | sed -n "/^function /s/function \([a-z_]*\).*/\1/p" | sort`; do
19 A="$A $i"
20 done
21 echo $A
22}
23
24# Get the value of a build variable as an absolute path.
25function get_abs_build_var()
26{
27 T=$(gettop)
28 if [ ! "$T" ]; then
29 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
30 return
31 fi
Brian Carlstrom177285a2010-04-06 13:22:02 -070032 (cd $T; CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
33 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-abs-$1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070034}
35
36# Get the exact value of a build variable.
37function get_build_var()
38{
39 T=$(gettop)
40 if [ ! "$T" ]; then
41 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
42 return
43 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080044 CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
45 make --no-print-directory -C "$T" -f build/core/config.mk dumpvar-$1
46}
47
48# check to see if the supplied product is one we can build
49function check_product()
50{
51 T=$(gettop)
52 if [ ! "$T" ]; then
53 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
54 return
55 fi
56 CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core \
Jeff Browne33ba4c2011-07-11 22:11:46 -070057 TARGET_PRODUCT=$1 \
58 TARGET_BUILD_VARIANT= \
59 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -070060 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080061 get_build_var TARGET_DEVICE > /dev/null
62 # hide successful answers, but allow the errors to show
63}
64
65VARIANT_CHOICES=(user userdebug eng)
66
67# check to see if the supplied variant is valid
68function check_variant()
69{
70 for v in ${VARIANT_CHOICES[@]}
71 do
72 if [ "$v" = "$1" ]
73 then
74 return 0
75 fi
76 done
77 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070078}
79
80function setpaths()
81{
82 T=$(gettop)
83 if [ ! "$T" ]; then
84 echo "Couldn't locate the top of the tree. Try setting TOP."
85 return
86 fi
87
88 ##################################################################
89 # #
90 # Read me before you modify this code #
91 # #
92 # This function sets ANDROID_BUILD_PATHS to what it is adding #
93 # to PATH, and the next time it is run, it removes that from #
94 # PATH. This is required so lunch can be run more than once #
95 # and still have working paths. #
96 # #
97 ##################################################################
98
Raphael Mollc639c782011-06-20 17:25:01 -070099 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
100 # due to "C:\Program Files" being in the path.
101
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700102 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700103 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700104 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
105 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700106 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700107 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
108 # strip trailing ':', if any
109 export PATH=${PATH/%:/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500110 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700111
112 # and in with the new
113 CODE_REVIEWS=
114 prebuiltdir=$(getprebuilt)
Raphael732936d2011-06-22 14:35:32 -0700115
Raphael Mollc639c782011-06-20 17:25:01 -0700116 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Raphael732936d2011-06-22 14:35:32 -0700117 export ANDROID_EABI_TOOLCHAIN=
118 toolchaindir=toolchain/arm-linux-androideabi-4.4.x/bin
Raphael Mollc639c782011-06-20 17:25:01 -0700119 if [ -d "$prebuiltdir/$toolchaindir" ]; then
120 export ANDROID_EABI_TOOLCHAIN=$prebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700121 fi
Raphael732936d2011-06-22 14:35:32 -0700122
123 export ARM_EABI_TOOLCHAIN=
124 toolchaindir=toolchain/arm-eabi-4.4.3/bin
125 if [ -d "$prebuiltdir/$toolchaindir" ]; then
126 export ARM_EABI_TOOLCHAIN=$prebuiltdir/$toolchaindir
127 fi
128
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700129 export ANDROID_TOOLCHAIN=$ANDROID_EABI_TOOLCHAIN
130 export ANDROID_QTOOLS=$T/development/emulator/qtools
Jing Yu9d396e32010-07-29 15:07:31 -0700131 export ANDROID_BUILD_PATHS=:$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_QTOOLS:$ANDROID_TOOLCHAIN:$ARM_EABI_TOOLCHAIN$CODE_REVIEWS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700132 export PATH=$PATH$ANDROID_BUILD_PATHS
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800133
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500134 unset ANDROID_JAVA_TOOLCHAIN
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900135 unset ANDROID_PRE_BUILD_PATHS
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500136 if [ -n "$JAVA_HOME" ]; then
137 export ANDROID_JAVA_TOOLCHAIN=$JAVA_HOME/bin
Ji-Hwan Lee752ad062011-07-04 14:09:47 +0900138 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
139 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500140 fi
141
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800142 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700143 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
144 export OUT=$ANDROID_PRODUCT_OUT
145
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700146 unset ANDROID_HOST_OUT
147 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
148
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800149 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700150 # TODO: fix the path
151 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
152}
153
154function printconfig()
155{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800156 T=$(gettop)
157 if [ ! "$T" ]; then
158 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
159 return
160 fi
161 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700162}
163
164function set_stuff_for_environment()
165{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800166 settitle
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500167 set_java_home
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800168 setpaths
169 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700170
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800171 export ANDROID_BUILD_TOP=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700172}
173
174function set_sequence_number()
175{
Joe Onoratoaee4daa2010-06-23 14:03:13 -0700176 export BUILD_ENV_SEQUENCE_NUMBER=10
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700177}
178
179function settitle()
180{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800181 if [ "$STAY_OFF_MY_LAWN" = "" ]; then
Joe Onoratoda12daf2010-06-09 18:18:31 -0700182 local product=$TARGET_PRODUCT
183 local variant=$TARGET_BUILD_VARIANT
184 local apps=$TARGET_BUILD_APPS
185 if [ -z "$apps" ]; then
186 export PROMPT_COMMAND="echo -ne \"\033]0;[${product}-${variant}] ${USER}@${HOSTNAME}: ${PWD}\007\""
187 else
188 export PROMPT_COMMAND="echo -ne \"\033]0;[$apps $variant] ${USER}@${HOSTNAME}: ${PWD}\007\""
189 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800190 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700191}
192
Kenny Root52aa81c2011-07-15 11:07:06 -0700193function addcompletions()
194{
195 local T dir f
196
197 # Keep us from trying to run in something that isn't bash.
198 if [ -z "${BASH_VERSION}" ]; then
199 return
200 fi
201
202 # Keep us from trying to run in bash that's too old.
203 if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
204 return
205 fi
206
207 dir="sdk/bash_completion"
208 if [ -d ${dir} ]; then
Kenny Root7546d612011-07-18 13:11:34 -0700209 for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
Kenny Root52aa81c2011-07-15 11:07:06 -0700210 echo "including $f"
211 . $f
212 done
213 fi
214}
215
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700216function choosetype()
217{
218 echo "Build type choices are:"
219 echo " 1. release"
220 echo " 2. debug"
221 echo
222
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800223 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700224 DEFAULT_NUM=1
225 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700226
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800227 export TARGET_BUILD_TYPE=
228 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700229 while [ -z $TARGET_BUILD_TYPE ]
230 do
231 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800232 if [ -z "$1" ] ; then
233 read ANSWER
234 else
235 echo $1
236 ANSWER=$1
237 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700238 case $ANSWER in
239 "")
240 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
241 ;;
242 1)
243 export TARGET_BUILD_TYPE=release
244 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800245 release)
246 export TARGET_BUILD_TYPE=release
247 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700248 2)
249 export TARGET_BUILD_TYPE=debug
250 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800251 debug)
252 export TARGET_BUILD_TYPE=debug
253 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700254 *)
255 echo
256 echo "I didn't understand your response. Please try again."
257 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700258 ;;
259 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800260 if [ -n "$1" ] ; then
261 break
262 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700263 done
264
265 set_stuff_for_environment
266}
267
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800268#
269# This function isn't really right: It chooses a TARGET_PRODUCT
270# based on the list of boards. Usually, that gets you something
271# that kinda works with a generic product, but really, you should
272# pick a product by name.
273#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700274function chooseproduct()
275{
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700276 if [ "x$TARGET_PRODUCT" != x ] ; then
277 default_value=$TARGET_PRODUCT
278 else
Jeff Browne33ba4c2011-07-11 22:11:46 -0700279 default_value=full
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700280 fi
281
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800282 export TARGET_PRODUCT=
283 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700284 while [ -z "$TARGET_PRODUCT" ]
285 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700286 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800287 if [ -z "$1" ] ; then
288 read ANSWER
289 else
290 echo $1
291 ANSWER=$1
292 fi
293
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700294 if [ -z "$ANSWER" ] ; then
295 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800296 else
297 if check_product $ANSWER
298 then
299 export TARGET_PRODUCT=$ANSWER
300 else
301 echo "** Not a valid product: $ANSWER"
302 fi
303 fi
304 if [ -n "$1" ] ; then
305 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700306 fi
307 done
308
309 set_stuff_for_environment
310}
311
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800312function choosevariant()
313{
314 echo "Variant choices are:"
315 local index=1
316 local v
317 for v in ${VARIANT_CHOICES[@]}
318 do
319 # The product name is the name of the directory containing
320 # the makefile we found, above.
321 echo " $index. $v"
322 index=$(($index+1))
323 done
324
325 local default_value=eng
326 local ANSWER
327
328 export TARGET_BUILD_VARIANT=
329 while [ -z "$TARGET_BUILD_VARIANT" ]
330 do
331 echo -n "Which would you like? [$default_value] "
332 if [ -z "$1" ] ; then
333 read ANSWER
334 else
335 echo $1
336 ANSWER=$1
337 fi
338
339 if [ -z "$ANSWER" ] ; then
340 export TARGET_BUILD_VARIANT=$default_value
341 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
342 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800343 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800344 fi
345 else
346 if check_variant $ANSWER
347 then
348 export TARGET_BUILD_VARIANT=$ANSWER
349 else
350 echo "** Not a valid variant: $ANSWER"
351 fi
352 fi
353 if [ -n "$1" ] ; then
354 break
355 fi
356 done
357}
358
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700359function choosecombo()
360{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700361 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700362
363 echo
364 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700365 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700366
367 echo
368 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700369 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800370
371 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700372 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800373 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700374}
375
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800376# Clear this variable. It will be built up again when the vendorsetup.sh
377# files are included at the end of this file.
378unset LUNCH_MENU_CHOICES
379function add_lunch_combo()
380{
381 local new_combo=$1
382 local c
383 for c in ${LUNCH_MENU_CHOICES[@]} ; do
384 if [ "$new_combo" = "$c" ] ; then
385 return
386 fi
387 done
388 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
389}
390
391# add the default one here
Jean-Baptiste Queru45038e02010-07-01 09:22:53 -0700392add_lunch_combo full-eng
Jean-Baptiste Queru6c2df3e2010-07-15 14:04:39 -0700393add_lunch_combo full_x86-eng
Bruce Beareba366c42011-02-15 16:46:08 -0800394add_lunch_combo vbox_x86-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800395
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700396function print_lunch_menu()
397{
398 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700399 echo
400 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700401 echo
402 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800403
404 local i=1
405 local choice
406 for choice in ${LUNCH_MENU_CHOICES[@]}
407 do
408 echo " $i. $choice"
409 i=$(($i+1))
410 done
411
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700412 echo
413}
414
415function lunch()
416{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800417 local answer
418
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700419 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800420 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700421 else
422 print_lunch_menu
Jean-Baptiste Queru0332f0a2010-10-22 09:52:09 -0700423 echo -n "Which would you like? [full-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800424 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700425 fi
426
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800427 local selection=
428
429 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700430 then
Jean-Baptiste Queru0332f0a2010-10-22 09:52:09 -0700431 selection=full-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800432 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
433 then
434 if [ $answer -le ${#LUNCH_MENU_CHOICES[@]} ]
435 then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800436 selection=${LUNCH_MENU_CHOICES[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800437 fi
438 elif (echo -n $answer | grep -q -e "^[^\-][^\-]*-[^\-][^\-]*$")
439 then
440 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700441 fi
442
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800443 if [ -z "$selection" ]
444 then
445 echo
446 echo "Invalid lunch combo: $answer"
447 return 1
448 fi
449
Joe Onoratoda12daf2010-06-09 18:18:31 -0700450 export TARGET_BUILD_APPS=
451
Jeff Browne33ba4c2011-07-11 22:11:46 -0700452 local product=$(echo -n $selection | sed -e "s/-.*$//")
453 check_product $product
454 if [ $? -ne 0 ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800455 then
Jeff Browne33ba4c2011-07-11 22:11:46 -0700456 echo
457 echo "** Don't have a product spec for: '$product'"
458 echo "** Do you have the right repo manifest?"
459 product=
460 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800461
Jeff Browne33ba4c2011-07-11 22:11:46 -0700462 local variant=$(echo -n $selection | sed -e "s/^[^\-]*-//")
463 check_variant $variant
464 if [ $? -ne 0 ]
465 then
466 echo
467 echo "** Invalid variant: '$variant'"
468 echo "** Must be one of ${VARIANT_CHOICES[@]}"
469 variant=
470 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800471
Jeff Browne33ba4c2011-07-11 22:11:46 -0700472 if [ -z "$product" -o -z "$variant" ]
473 then
474 echo
475 return 1
476 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800477
Jeff Browne33ba4c2011-07-11 22:11:46 -0700478 export TARGET_PRODUCT=$product
479 export TARGET_BUILD_VARIANT=$variant
480 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700481
482 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800483
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700484 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800485 printconfig
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700486}
487
Jeff Davidson513d7a42010-08-02 10:00:44 -0700488# Tab completion for lunch.
489function _lunch()
490{
491 local cur prev opts
492 COMPREPLY=()
493 cur="${COMP_WORDS[COMP_CWORD]}"
494 prev="${COMP_WORDS[COMP_CWORD-1]}"
495
496 COMPREPLY=( $(compgen -W "${LUNCH_MENU_CHOICES[*]}" -- ${cur}) )
497 return 0
498}
499complete -F _lunch lunch
500
Joe Onoratoda12daf2010-06-09 18:18:31 -0700501# Configures the build to build unbundled apps.
502# Run tapas with one ore more app names (from LOCAL_PACKAGE_NAME)
503function tapas()
504{
505 local variant=$(echo -n $(echo $* | xargs -n 1 echo | grep -E '^(user|userdebug|eng)$'))
506 local apps=$(echo -n $(echo $* | xargs -n 1 echo | grep -E -v '^(user|userdebug|eng)$'))
507
508 if [ $(echo $variant | wc -w) -gt 1 ]; then
509 echo "tapas: Error: Multiple build variants supplied: $variant"
510 return
511 fi
512 if [ -z "$variant" ]; then
513 variant=eng
514 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700515 if [ -z "$apps" ]; then
516 apps=all
517 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700518
Jean-Baptiste Queru0332f0a2010-10-22 09:52:09 -0700519 export TARGET_PRODUCT=full
Joe Onoratoda12daf2010-06-09 18:18:31 -0700520 export TARGET_BUILD_VARIANT=$variant
Joe Onoratoda12daf2010-06-09 18:18:31 -0700521 export TARGET_BUILD_TYPE=release
522 export TARGET_BUILD_APPS=$apps
523
524 set_stuff_for_environment
525 printconfig
526}
527
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700528function gettop
529{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800530 local TOPFILE=build/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700531 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
532 echo $TOP
533 else
534 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800535 # The following circumlocution (repeated below as well) ensures
536 # that we record the true directory name and not one that is
537 # faked up with symlink names.
538 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700539 else
540 # We redirect cd to /dev/null in case it's aliased to
541 # a command that prints something as a side-effect
542 # (like pushd)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800543 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700544 T=
545 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
546 cd .. > /dev/null
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800547 T=`PWD= /bin/pwd`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700548 done
549 cd $HERE > /dev/null
550 if [ -f "$T/$TOPFILE" ]; then
551 echo $T
552 fi
553 fi
554 fi
555}
556
557function m()
558{
559 T=$(gettop)
560 if [ "$T" ]; then
561 make -C $T $@
562 else
563 echo "Couldn't locate the top of the tree. Try setting TOP."
564 fi
565}
566
567function findmakefile()
568{
569 TOPFILE=build/core/envsetup.mk
570 # We redirect cd to /dev/null in case it's aliased to
571 # a command that prints something as a side-effect
572 # (like pushd)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800573 local HERE=$PWD
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700574 T=
575 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
576 T=$PWD
577 if [ -f "$T/Android.mk" ]; then
578 echo $T/Android.mk
579 cd $HERE > /dev/null
580 return
581 fi
582 cd .. > /dev/null
583 done
584 cd $HERE > /dev/null
585}
586
587function mm()
588{
589 # If we're sitting in the root of the build tree, just do a
590 # normal make.
591 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
592 make $@
593 else
594 # Find the closest Android.mk file.
595 T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800596 local M=$(findmakefile)
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700597 # Remove the path to top as the makefilepath needs to be relative
598 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700599 if [ ! "$T" ]; then
600 echo "Couldn't locate the top of the tree. Try setting TOP."
601 elif [ ! "$M" ]; then
602 echo "Couldn't locate a makefile from the current directory."
603 else
Ying Wang01884142010-07-20 16:18:16 -0700604 ONE_SHOT_MAKEFILE=$M make -C $T all_modules $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700605 fi
606 fi
607}
608
609function mmm()
610{
611 T=$(gettop)
612 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800613 local MAKEFILE=
614 local ARGS=
615 local DIR TO_CHOP
The Android Open Source Project88b60792009-03-03 19:28:42 -0800616 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
617 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
618 for DIR in $DIRS ; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700619 DIR=`echo $DIR | sed -e 's:/$::'`
620 if [ -f $DIR/Android.mk ]; then
Brian Carlstromc634d2c2010-09-17 12:25:50 -0700621 TO_CHOP=`(cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700622 TO_CHOP=`expr $TO_CHOP + 1`
Gilles Debunne8a20f582010-02-17 15:56:45 -0800623 START=`PWD= /bin/pwd`
624 MFILE=`echo $START | cut -c${TO_CHOP}-`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700625 if [ "$MFILE" = "" ] ; then
626 MFILE=$DIR/Android.mk
627 else
628 MFILE=$MFILE/$DIR/Android.mk
629 fi
630 MAKEFILE="$MAKEFILE $MFILE"
631 else
632 if [ "$DIR" = snod ]; then
633 ARGS="$ARGS snod"
634 elif [ "$DIR" = showcommands ]; then
635 ARGS="$ARGS showcommands"
Ying Wang01884142010-07-20 16:18:16 -0700636 elif [ "$DIR" = dist ]; then
637 ARGS="$ARGS dist"
Ying Wang015edd22011-01-20 15:01:56 -0800638 elif [ "$DIR" = incrementaljavac ]; then
639 ARGS="$ARGS incrementaljavac"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700640 else
641 echo "No Android.mk in $DIR."
Joe Onorato51e61822009-04-13 15:36:15 -0400642 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700643 fi
644 fi
645 done
Ying Wang01884142010-07-20 16:18:16 -0700646 ONE_SHOT_MAKEFILE="$MAKEFILE" make -C $T $DASH_ARGS all_modules $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700647 else
648 echo "Couldn't locate the top of the tree. Try setting TOP."
649 fi
650}
651
652function croot()
653{
654 T=$(gettop)
655 if [ "$T" ]; then
656 cd $(gettop)
657 else
658 echo "Couldn't locate the top of the tree. Try setting TOP."
659 fi
660}
661
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700662function cproj()
663{
664 TOPFILE=build/core/envsetup.mk
665 # We redirect cd to /dev/null in case it's aliased to
666 # a command that prints something as a side-effect
667 # (like pushd)
668 local HERE=$PWD
669 T=
670 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
671 T=$PWD
672 if [ -f "$T/Android.mk" ]; then
673 cd $T
674 return
675 fi
676 cd .. > /dev/null
677 done
678 cd $HERE > /dev/null
679 echo "can't find Android.mk"
680}
681
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700682function pid()
683{
684 local EXE="$1"
685 if [ "$EXE" ] ; then
686 local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'`
687 echo "$PID"
688 else
689 echo "usage: pid name"
690 fi
691}
692
Christopher Tate744ee802009-11-12 15:33:08 -0800693# systemstack - dump the current stack trace of all threads in the system process
694# to the usual ANR traces file
695function systemstack()
696{
697 adb shell echo '""' '>>' /data/anr/traces.txt && adb shell chmod 776 /data/anr/traces.txt && adb shell kill -3 $(pid system_server)
698}
699
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700700function gdbclient()
701{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800702 local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)
703 local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED)
704 local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)
705 local OUT_EXE_SYMBOLS=$(get_abs_build_var TARGET_OUT_EXECUTABLES_UNSTRIPPED)
706 local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS)
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800707 local ARCH=$(get_build_var TARGET_ARCH)
708 local GDB
709 case "$ARCH" in
710 x86) GDB=i686-android-linux-gdb;;
711 arm) GDB=arm-linux-androideabi-gdb;;
712 *) echo "Unknown arch $ARCH"; return 1;;
713 esac
714
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700715 if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then
716 local EXE="$1"
717 if [ "$EXE" ] ; then
718 EXE=$1
719 else
720 EXE="app_process"
721 fi
722
723 local PORT="$2"
724 if [ "$PORT" ] ; then
725 PORT=$2
726 else
727 PORT=":5039"
728 fi
729
730 local PID
731 local PROG="$3"
732 if [ "$PROG" ] ; then
Grace Klobae9d04bf2011-04-30 11:04:05 -0700733 if [[ "$PROG" =~ ^[0-9]+$ ]] ; then
734 PID="$3"
735 else
736 PID=`pid $3`
737 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700738 adb forward "tcp$PORT" "tcp$PORT"
739 adb shell gdbserver $PORT --attach $PID &
740 sleep 2
741 else
742 echo ""
743 echo "If you haven't done so already, do this first on the device:"
744 echo " gdbserver $PORT /system/bin/$EXE"
745 echo " or"
746 echo " gdbserver $PORT --attach $PID"
747 echo ""
748 fi
749
750 echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS"
751 echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS"
752 echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT"
753 echo >>"$OUT_ROOT/gdbclient.cmds" ""
754
Nick Kralevich0ab21d32011-11-11 09:02:01 -0800755 $GDB -x "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700756 else
757 echo "Unable to determine build system output dir."
758 fi
759
760}
761
762case `uname -s` in
763 Darwin)
764 function sgrep()
765 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700766 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 Projectb6c1cf62008-10-21 07:00:00 -0700767 }
768
769 ;;
770 *)
771 function sgrep()
772 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700773 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 Projectb6c1cf62008-10-21 07:00:00 -0700774 }
775 ;;
776esac
777
778function jgrep()
779{
Joe Onoratof50e84b2011-03-15 14:15:46 -0700780 find . -name .repo -prune -o -name .git -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700781}
782
783function cgrep()
784{
Mike Dodd0c26d342011-04-07 13:29:06 -0700785 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 Projectb6c1cf62008-10-21 07:00:00 -0700786}
787
788function resgrep()
789{
Joe Onoratof50e84b2011-03-15 14:15:46 -0700790 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 Projectb6c1cf62008-10-21 07:00:00 -0700791}
792
793case `uname -s` in
794 Darwin)
795 function mgrep()
796 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700797 find -E . -name .repo -prune -o -name .git -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 -0700798 }
799
800 function treegrep()
801 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700802 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 -0700803 }
804
805 ;;
806 *)
807 function mgrep()
808 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700809 find . -name .repo -prune -o -name .git -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 -0700810 }
811
812 function treegrep()
813 {
Joe Onoratof50e84b2011-03-15 14:15:46 -0700814 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 -0700815 }
816
817 ;;
818esac
819
820function getprebuilt
821{
822 get_abs_build_var ANDROID_PREBUILTS
823}
824
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700825function tracedmdump()
826{
827 T=$(gettop)
828 if [ ! "$T" ]; then
829 echo "Couldn't locate the top of the tree. Try setting TOP."
830 return
831 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800832 local prebuiltdir=$(getprebuilt)
Jack Veenstra60116fc2009-04-09 18:12:34 -0700833 local KERNEL=$T/prebuilt/android-arm/kernel/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700834
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800835 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700836 if [ ! "$TRACE" ] ; then
837 echo "usage: tracedmdump tracename"
838 return
839 fi
840
Jack Veenstra60116fc2009-04-09 18:12:34 -0700841 if [ ! -r "$KERNEL" ] ; then
842 echo "Error: cannot find kernel: '$KERNEL'"
843 return
844 fi
845
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800846 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700847 if [ "$BASETRACE" = "$TRACE" ] ; then
848 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
849 fi
850
851 echo "post-processing traces..."
852 rm -f $TRACE/qtrace.dexlist
853 post_trace $TRACE
854 if [ $? -ne 0 ]; then
855 echo "***"
856 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
857 echo "***"
858 return
859 fi
860 echo "generating dexlist output..."
861 /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
862 echo "generating dmtrace data..."
863 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
864 echo "generating html file..."
865 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
866 echo "done, see $TRACE/dmtrace.html for details"
867 echo "or run:"
868 echo " traceview $TRACE/dmtrace"
869}
870
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800871# communicate with a running device or emulator, set up necessary state,
872# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700873function runhat()
874{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800875 # process standard adb options
876 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -0700877 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800878 adbTarget=$1
879 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -0700880 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800881 adbTarget="$1 $2"
882 shift 2
883 fi
884 local adbOptions=${adbTarget}
885 echo adbOptions = ${adbOptions}
886
887 # runhat options
888 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700889
890 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -0700891 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700892 return
893 fi
894
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800895 # confirm hat is available
896 if [ -z $(which hat) ]; then
897 echo "hat is not available in this configuration."
898 return
899 fi
900
Andy McFaddenb6289852010-07-12 08:00:19 -0700901 # issue "am" command to cause the hprof dump
902 local devFile=/sdcard/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700903 echo "Poking $targetPid and waiting for data..."
Andy McFaddenb6289852010-07-12 08:00:19 -0700904 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -0800905 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700906 echo -n "> "
907 read
908
The Android Open Source Project88b60792009-03-03 19:28:42 -0800909 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700910
The Android Open Source Project88b60792009-03-03 19:28:42 -0800911 echo "Retrieving file $devFile..."
912 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700913
The Android Open Source Project88b60792009-03-03 19:28:42 -0800914 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700915
The Android Open Source Project88b60792009-03-03 19:28:42 -0800916 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700917 echo "View the output by pointing your browser at http://localhost:7000/"
918 echo ""
The Android Open Source Project88b60792009-03-03 19:28:42 -0800919 hat $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700920}
921
922function getbugreports()
923{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800924 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700925
926 if [ ! "$reports" ]; then
927 echo "Could not locate any bugreports."
928 return
929 fi
930
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800931 local report
932 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700933 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800934 echo "/sdcard/bugreports/${report}"
935 adb pull /sdcard/bugreports/${report} ${report}
936 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700937 done
938}
939
940function startviewserver()
941{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800942 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700943 if [ $# -gt 0 ]; then
944 port=$1
945 fi
946 adb shell service call window 1 i32 $port
947}
948
949function stopviewserver()
950{
951 adb shell service call window 2
952}
953
954function isviewserverstarted()
955{
956 adb shell service call window 3
957}
958
Romain Guyb84049a2010-10-04 16:56:11 -0700959function key_home()
960{
961 adb shell input keyevent 3
962}
963
964function key_back()
965{
966 adb shell input keyevent 4
967}
968
969function key_menu()
970{
971 adb shell input keyevent 82
972}
973
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700974function smoketest()
975{
976 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
977 echo "Couldn't locate output files. Try running 'lunch' first." >&2
978 return
979 fi
980 T=$(gettop)
981 if [ ! "$T" ]; then
982 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
983 return
984 fi
985
986 (cd "$T" && mmm tests/SmokeTest) &&
987 adb uninstall com.android.smoketest > /dev/null &&
988 adb uninstall com.android.smoketest.tests > /dev/null &&
989 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
990 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
991 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
992}
993
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800994# simple shortcut to the runtest command
995function runtest()
996{
997 T=$(gettop)
998 if [ ! "$T" ]; then
999 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1000 return
1001 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001002 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001003}
1004
The Android Open Source Project88b60792009-03-03 19:28:42 -08001005function godir () {
1006 if [[ -z "$1" ]]; then
1007 echo "Usage: godir <regex>"
1008 return
1009 fi
Brian Carlstromb9915a62010-01-29 16:39:32 -08001010 T=$(gettop)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001011 if [[ ! -f $T/filelist ]]; then
1012 echo -n "Creating index..."
Brian Carlstrom259e5b72010-01-30 11:45:03 -08001013 (cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > filelist)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001014 echo " Done"
1015 echo ""
1016 fi
1017 local lines
Doug Zongker29034982011-04-22 08:16:56 -07001018 lines=($(grep "$1" $T/filelist | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001019 if [[ ${#lines[@]} = 0 ]]; then
1020 echo "Not found"
1021 return
1022 fi
1023 local pathname
1024 local choice
1025 if [[ ${#lines[@]} > 1 ]]; then
1026 while [[ -z "$pathname" ]]; do
1027 local index=1
1028 local line
1029 for line in ${lines[@]}; do
1030 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001031 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001032 done
1033 echo
1034 echo -n "Select one: "
1035 unset choice
1036 read choice
1037 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1038 echo "Invalid choice"
1039 continue
1040 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001041 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001042 done
1043 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001044 pathname=${lines[0]}
1045 fi
1046 cd $T/$pathname
1047}
1048
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001049# Force JAVA_HOME to point to java 1.6 if it isn't already set
1050function set_java_home() {
Andy McFaddenbd960942010-06-24 12:52:51 -07001051 if [ ! "$JAVA_HOME" ]; then
1052 case `uname -s` in
1053 Darwin)
1054 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
1055 ;;
1056 *)
1057 export JAVA_HOME=/usr/lib/jvm/java-6-sun
1058 ;;
1059 esac
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001060 fi
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -05001061}
Jeff Hamilton04be0d82010-06-07 15:03:54 -05001062
Raphael Moll70a86b02011-06-20 16:03:14 -07001063if [ "x$SHELL" != "x/bin/bash" ]; then
1064 case `ps -o command -p $$` in
1065 *bash*)
1066 ;;
1067 *)
1068 echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
1069 ;;
1070 esac
1071fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001072
1073# Execute the contents of any vendorsetup.sh files we can find.
Bruce Beare6f8410b2010-06-24 13:51:35 -07001074for f in `/bin/ls vendor/*/vendorsetup.sh vendor/*/*/vendorsetup.sh device/*/*/vendorsetup.sh 2> /dev/null`
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001075do
1076 echo "including $f"
1077 . $f
1078done
1079unset f
Kenny Root52aa81c2011-07-15 11:07:06 -07001080
1081addcompletions