blob: 58941440b205884862858cf742d3edc6fb62fa2d [file] [log] [blame]
Scott Anderson1a5fc952012-03-07 17:15:06 -08001function hmm() {
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07002cat <<EOF
Jeff Gastonc6dfc4e2017-05-30 17:12:37 -07003
4Run "m help" for help with the build system itself.
5
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08006Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:
David Zeuthen1b126ff2015-09-30 17:10:48 -04007- lunch: lunch <product_name>-<build_variant>
Jeff Gastonc6dfc4e2017-05-30 17:12:37 -07008 Selects <product_name> as the product to build, and <build_variant> as the variant to
9 build, and stores those selections in the environment to be read by subsequent
10 invocations of 'm' etc.
Dan Willemsendd3a2732018-01-08 15:26:16 -080011- tapas: tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user]
David Zeuthen1b126ff2015-09-30 17:10:48 -040012- croot: Changes directory to the top of the tree.
13- m: Makes from the top of the tree.
14- mm: Builds all of the modules in the current directory, but not their dependencies.
15- mmm: Builds all of the modules in the supplied directories, but not their dependencies.
16 To limit the modules being built use the syntax: mmm dir/:target1,target2.
17- mma: Builds all of the modules in the current directory, and their dependencies.
18- mmma: Builds all of the modules in the supplied directories, and their dependencies.
19- provision: Flash device with all required partitions. Options will be passed on to fastboot.
20- cgrep: Greps on all local C/C++ files.
21- ggrep: Greps on all local Gradle files.
22- jgrep: Greps on all local Java files.
23- resgrep: Greps on all local res/*.xml files.
24- mangrep: Greps on all local AndroidManifest.xml files.
25- mgrep: Greps on all local Makefiles files.
26- sepgrep: Greps on all local sepolicy files.
27- sgrep: Greps on all local source files.
28- godir: Go to the directory containing a file.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070029
Roland Levillain39341922015-10-20 12:48:19 +010030Environment options:
Dan Albert4ae5d4b2014-10-31 16:23:08 -070031- SANITIZE_HOST: Set to 'true' to use ASAN for all host modules. Note that
32 ASAN_OPTIONS=detect_leaks=0 will be set by default until the
33 build is leak-check clean.
34
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070035Look at the source to view more functions. The complete list is:
36EOF
Christopher Ferris55257d22017-03-23 11:08:58 -070037 local T=$(gettop)
38 local A=""
39 local i
Jacky Cao89483b82015-05-15 22:12:53 +080040 for i in `cat $T/build/envsetup.sh | sed -n "/^[[:blank:]]*function /s/function \([a-z_]*\).*/\1/p" | sort | uniq`; do
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070041 A="$A $i"
42 done
43 echo $A
44}
45
Ying Wang08800fd2016-03-03 20:57:21 -080046# Get all the build variables needed by this script in a single call to the build system.
47function build_build_var_cache()
48{
Christopher Ferris55257d22017-03-23 11:08:58 -070049 local T=$(gettop)
Ying Wang08800fd2016-03-03 20:57:21 -080050 # Grep out the variable names from the script.
Jim Tanga881a252018-06-19 16:34:41 +080051 cached_vars=(`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`)
52 cached_abs_vars=(`cat $T/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/get_abs_build_var/) print $(i+1)}' | sort -u | tr '\n' ' '`)
Ying Wang08800fd2016-03-03 20:57:21 -080053 # Call the build system to dump the "<val>=<value>" pairs as a shell script.
Steven Moreland05402962018-01-05 12:13:11 -080054 build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \
Jim Tanga881a252018-06-19 16:34:41 +080055 --vars="${cached_vars[*]}" \
56 --abs-vars="${cached_abs_vars[*]}" \
Dan Willemsenaf88c412017-07-14 11:29:44 -070057 --var-prefix=var_cache_ \
58 --abs-var-prefix=abs_var_cache_`
Ying Wang08800fd2016-03-03 20:57:21 -080059 local ret=$?
60 if [ $ret -ne 0 ]
61 then
62 unset build_dicts_script
63 return $ret
64 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -070065 # Execute the script to store the "<val>=<value>" pairs as shell variables.
Ying Wang08800fd2016-03-03 20:57:21 -080066 eval "$build_dicts_script"
Ying Wang08800fd2016-03-03 20:57:21 -080067 ret=$?
Ying Wangf0cb3972016-03-04 13:56:23 -080068 unset build_dicts_script
Ying Wang08800fd2016-03-03 20:57:21 -080069 if [ $ret -ne 0 ]
70 then
71 return $ret
72 fi
73 BUILD_VAR_CACHE_READY="true"
74}
75
Ying Wangf0cb3972016-03-04 13:56:23 -080076# Delete the build var cache, so that we can still call into the build system
Ying Wang08800fd2016-03-03 20:57:21 -080077# to get build variables not listed in this script.
78function destroy_build_var_cache()
79{
80 unset BUILD_VAR_CACHE_READY
Christopher Ferris55257d22017-03-23 11:08:58 -070081 local v
Ying Wang08800fd2016-03-03 20:57:21 -080082 for v in $cached_vars; do
83 unset var_cache_$v
84 done
85 unset cached_vars
86 for v in $cached_abs_vars; do
87 unset abs_var_cache_$v
88 done
89 unset cached_abs_vars
90}
91
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070092# Get the value of a build variable as an absolute path.
93function get_abs_build_var()
94{
Ying Wang08800fd2016-03-03 20:57:21 -080095 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
96 then
Vishwath Mohan7d35f002016-03-11 10:00:40 -080097 eval "echo \"\${abs_var_cache_$1}\""
Ying Wang08800fd2016-03-03 20:57:21 -080098 return
99 fi
100
Christopher Ferris55257d22017-03-23 11:08:58 -0700101 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700102 if [ ! "$T" ]; then
103 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
104 return
105 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -0700106 (\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700107}
108
109# Get the exact value of a build variable.
110function get_build_var()
111{
Ying Wang08800fd2016-03-03 20:57:21 -0800112 if [ "$BUILD_VAR_CACHE_READY" = "true" ]
113 then
Vishwath Mohan7d35f002016-03-11 10:00:40 -0800114 eval "echo \"\${var_cache_$1}\""
Ying Wang08800fd2016-03-03 20:57:21 -0800115 return
116 fi
117
Christopher Ferris55257d22017-03-23 11:08:58 -0700118 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700119 if [ ! "$T" ]; then
120 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
121 return
122 fi
Dan Willemsenaf88c412017-07-14 11:29:44 -0700123 (\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800124}
125
126# check to see if the supplied product is one we can build
127function check_product()
128{
Christopher Ferris55257d22017-03-23 11:08:58 -0700129 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800130 if [ ! "$T" ]; then
131 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
132 return
133 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700134 TARGET_PRODUCT=$1 \
135 TARGET_BUILD_VARIANT= \
136 TARGET_BUILD_TYPE= \
Joe Onoratoda12daf2010-06-09 18:18:31 -0700137 TARGET_BUILD_APPS= \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800138 get_build_var TARGET_DEVICE > /dev/null
139 # hide successful answers, but allow the errors to show
140}
141
142VARIANT_CHOICES=(user userdebug eng)
143
144# check to see if the supplied variant is valid
145function check_variant()
146{
Christopher Ferris55257d22017-03-23 11:08:58 -0700147 local v
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800148 for v in ${VARIANT_CHOICES[@]}
149 do
150 if [ "$v" = "$1" ]
151 then
152 return 0
153 fi
154 done
155 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700156}
157
158function setpaths()
159{
Christopher Ferris55257d22017-03-23 11:08:58 -0700160 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700161 if [ ! "$T" ]; then
162 echo "Couldn't locate the top of the tree. Try setting TOP."
163 return
164 fi
165
166 ##################################################################
167 # #
168 # Read me before you modify this code #
169 # #
170 # This function sets ANDROID_BUILD_PATHS to what it is adding #
171 # to PATH, and the next time it is run, it removes that from #
172 # PATH. This is required so lunch can be run more than once #
173 # and still have working paths. #
174 # #
175 ##################################################################
176
Raphael Mollc639c782011-06-20 17:25:01 -0700177 # Note: on windows/cygwin, ANDROID_BUILD_PATHS will contain spaces
178 # due to "C:\Program Files" being in the path.
179
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700180 # out with the old
Raphael Mollc639c782011-06-20 17:25:01 -0700181 if [ -n "$ANDROID_BUILD_PATHS" ] ; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700182 export PATH=${PATH/$ANDROID_BUILD_PATHS/}
183 fi
Raphael Mollc639c782011-06-20 17:25:01 -0700184 if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then
Doug Zongker29034982011-04-22 08:16:56 -0700185 export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/}
Ying Wangaa1c9b52012-11-26 20:51:59 -0800186 # strip leading ':', if any
187 export PATH=${PATH/:%/}
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500188 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700189
190 # and in with the new
Christopher Ferris55257d22017-03-23 11:08:58 -0700191 local prebuiltdir=$(getprebuilt)
192 local gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS)
Raphael732936d2011-06-22 14:35:32 -0700193
Ben Cheng8bc4c432012-11-16 13:29:13 -0800194 # defined in core/config.mk
Christopher Ferris55257d22017-03-23 11:08:58 -0700195 local targetgccversion=$(get_build_var TARGET_GCC_VERSION)
196 local targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION)
Ben Cheng15266702012-12-10 16:04:39 -0800197 export TARGET_GCC_VERSION=$targetgccversion
Ben Cheng8bc4c432012-11-16 13:29:13 -0800198
Raphael Mollc639c782011-06-20 17:25:01 -0700199 # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
Ben Chengfba67bf2014-02-25 10:27:07 -0800200 export ANDROID_TOOLCHAIN=
201 export ANDROID_TOOLCHAIN_2ND_ARCH=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200202 local ARCH=$(get_build_var TARGET_ARCH)
Christopher Ferris55257d22017-03-23 11:08:58 -0700203 local toolchaindir toolchaindir2=
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200204 case $ARCH in
Pavel Chupinc1a56642013-08-23 16:49:21 +0400205 x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
Mark D Horn7d0ede72012-03-14 14:20:30 -0700206 ;;
Pavel Chupinfd82a492012-11-26 09:50:07 +0400207 x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin
208 ;;
Ben Cheng8bc4c432012-11-16 13:29:13 -0800209 arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200210 ;;
Ben Chengfba67bf2014-02-25 10:27:07 -0800211 arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin;
Colin Cross03b424a2014-05-22 11:57:43 -0700212 toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin
Ben Chengdb4fc202013-10-04 16:02:59 -0700213 ;;
Duane Sand3c4fcd82014-07-22 14:34:00 -0700214 mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin
Serban Constantinescu9b68fb22014-01-14 10:33:53 +0000215 ;;
David 'Digit' Turner2056c252012-04-17 14:50:47 +0200216 *)
217 echo "Can't find toolchain for unknown architecture: $ARCH"
218 toolchaindir=xxxxxxxxx
Mark D Horn7d0ede72012-03-14 14:20:30 -0700219 ;;
220 esac
Jing Yuf5172c72012-03-29 20:45:50 -0700221 if [ -d "$gccprebuiltdir/$toolchaindir" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800222 export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir
Raphael Mollc639c782011-06-20 17:25:01 -0700223 fi
Raphael732936d2011-06-22 14:35:32 -0700224
Christopher Ferris55257d22017-03-23 11:08:58 -0700225 if [ "$toolchaindir2" -a -d "$gccprebuiltdir/$toolchaindir2" ]; then
Ben Chengfba67bf2014-02-25 10:27:07 -0800226 export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2
227 fi
228
Jeff Vander Stoep5f50f052015-06-12 09:56:39 -0700229 export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin
Yueyao Zhuefc786a2017-04-07 14:11:54 -0700230
231 # add kernel specific binaries
232 case $(uname -s) in
233 Linux)
234 export ANDROID_DEV_SCRIPTS=$ANDROID_DEV_SCRIPTS:$T/prebuilts/misc/linux-x86/dtc:$T/prebuilts/misc/linux-x86/libufdt
235 ;;
236 *)
237 ;;
238 esac
239
Torne (Richard Coles)0091bae2017-10-03 16:31:18 -0400240 ANDROID_BUILD_PATHS=$(get_build_var ANDROID_BUILD_PATHS):$ANDROID_TOOLCHAIN
241 if [ -n "$ANDROID_TOOLCHAIN_2ND_ARCH" ]; then
242 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_TOOLCHAIN_2ND_ARCH
243 fi
244 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS:$ANDROID_DEV_SCRIPTS:
245 export ANDROID_BUILD_PATHS
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200246
247 # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH
248 # to ensure that the corresponding 'emulator' binaries are used.
249 case $(uname -s) in
250 Darwin)
251 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64
252 ;;
253 Linux)
254 ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64
255 ;;
256 *)
257 ANDROID_EMULATOR_PREBUILTS=
258 ;;
259 esac
260 if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then
Christopher Ferris7110f242014-05-20 13:56:00 -0700261 ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS:
David 'Digit' Turner94d16e52014-05-05 16:13:50 +0200262 export ANDROID_EMULATOR_PREBUILTS
263 fi
264
Ying Wangaa1c9b52012-11-26 20:51:59 -0800265 export PATH=$ANDROID_BUILD_PATHS$PATH
Dan Albertf5caa3d2015-09-18 13:23:56 -0700266 export PYTHONPATH=$T/development/python-packages:$PYTHONPATH
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800267
Colin Crosse97e6932017-06-30 16:01:45 -0700268 export ANDROID_JAVA_HOME=$(get_abs_build_var ANDROID_JAVA_HOME)
269 export JAVA_HOME=$ANDROID_JAVA_HOME
270 export ANDROID_JAVA_TOOLCHAIN=$(get_abs_build_var ANDROID_JAVA_TOOLCHAIN)
271 export ANDROID_PRE_BUILD_PATHS=$ANDROID_JAVA_TOOLCHAIN:
272 export PATH=$ANDROID_PRE_BUILD_PATHS$PATH
Jeff Hamilton4a1c70e2010-06-21 18:26:38 -0500273
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800274 unset ANDROID_PRODUCT_OUT
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700275 export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT)
276 export OUT=$ANDROID_PRODUCT_OUT
277
Jeff Brown8fd5cce2011-03-24 17:03:06 -0700278 unset ANDROID_HOST_OUT
279 export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT)
280
Simran Basidd050ed2017-02-13 13:46:48 -0800281 unset ANDROID_HOST_OUT_TESTCASES
282 export ANDROID_HOST_OUT_TESTCASES=$(get_abs_build_var HOST_OUT_TESTCASES)
283
284 unset ANDROID_TARGET_OUT_TESTCASES
285 export ANDROID_TARGET_OUT_TESTCASES=$(get_abs_build_var TARGET_OUT_TESTCASES)
286
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800287 # needed for building linux on MacOS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700288 # TODO: fix the path
289 #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include
290}
291
292function printconfig()
293{
Christopher Ferris55257d22017-03-23 11:08:58 -0700294 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800295 if [ ! "$T" ]; then
296 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
297 return
298 fi
299 get_build_var report_config
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700300}
301
302function set_stuff_for_environment()
303{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800304 setpaths
305 set_sequence_number
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700306
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800307 export ANDROID_BUILD_TOP=$(gettop)
Ben Chengaac3f812013-08-13 14:38:15 -0700308 # With this environment variable new GCC can apply colors to warnings/errors
309 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 -0700310 export ASAN_OPTIONS=detect_leaks=0
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700311}
312
313function set_sequence_number()
314{
Colin Cross88737132017-03-21 17:41:03 -0700315 export BUILD_ENV_SEQUENCE_NUMBER=13
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700316}
317
Makoto Onukida971062018-06-18 10:15:19 -0700318# Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not.
319function should_add_completion() {
Jim Tanga881a252018-06-19 16:34:41 +0800320 local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')"
Makoto Onukida971062018-06-18 10:15:19 -0700321 case :"$ENVSETUP_NO_COMPLETION": in
Jim Tanga881a252018-06-19 16:34:41 +0800322 *:"$cmd":*)
323 return 1
324 ;;
Makoto Onukida971062018-06-18 10:15:19 -0700325 esac
326 return 0
327}
328
Kenny Root52aa81c2011-07-15 11:07:06 -0700329function addcompletions()
330{
331 local T dir f
332
Jim Tanga881a252018-06-19 16:34:41 +0800333 # Keep us from trying to run in something that's neither bash nor zsh.
334 if [ -z "$BASH_VERSION" -a -z "$ZSH_VERSION" ]; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700335 return
336 fi
337
338 # Keep us from trying to run in bash that's too old.
Jim Tanga881a252018-06-19 16:34:41 +0800339 if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700340 return
341 fi
342
Jim Tanga881a252018-06-19 16:34:41 +0800343 local completion_files=(
344 system/core/adb/adb.bash
345 system/core/fastboot/fastboot.bash
346 tools/tradefederation/core/atest/atest_completion.sh
347 )
Makoto Onukida971062018-06-18 10:15:19 -0700348 # Completion can be disabled selectively to allow users to use non-standard completion.
349 # e.g.
350 # ENVSETUP_NO_COMPLETION=adb # -> disable adb completion
351 # ENVSETUP_NO_COMPLETION=adb:bit # -> disable adb and bit completion
Jim Tanga881a252018-06-19 16:34:41 +0800352 for f in ${completion_files[*]}; do
353 if [ -f "$f" ] && should_add_completion "$f"; then
Kenny Root52aa81c2011-07-15 11:07:06 -0700354 . $f
Elliott Hughesce18dd42018-04-03 13:49:48 -0700355 fi
356 done
Joe Onorato002a6c72016-10-20 16:39:49 -0700357
Makoto Onukida971062018-06-18 10:15:19 -0700358 if should_add_completion bit ; then
359 complete -C "bit --tab" bit
360 fi
Jim Tanga881a252018-06-19 16:34:41 +0800361 complete -F _lunch lunch
Kenny Root52aa81c2011-07-15 11:07:06 -0700362}
363
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700364function choosetype()
365{
366 echo "Build type choices are:"
367 echo " 1. release"
368 echo " 2. debug"
369 echo
370
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800371 local DEFAULT_NUM DEFAULT_VALUE
Jeff Browne33ba4c2011-07-11 22:11:46 -0700372 DEFAULT_NUM=1
373 DEFAULT_VALUE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700374
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800375 export TARGET_BUILD_TYPE=
376 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700377 while [ -z $TARGET_BUILD_TYPE ]
378 do
379 echo -n "Which would you like? ["$DEFAULT_NUM"] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800380 if [ -z "$1" ] ; then
381 read ANSWER
382 else
383 echo $1
384 ANSWER=$1
385 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700386 case $ANSWER in
387 "")
388 export TARGET_BUILD_TYPE=$DEFAULT_VALUE
389 ;;
390 1)
391 export TARGET_BUILD_TYPE=release
392 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800393 release)
394 export TARGET_BUILD_TYPE=release
395 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700396 2)
397 export TARGET_BUILD_TYPE=debug
398 ;;
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800399 debug)
400 export TARGET_BUILD_TYPE=debug
401 ;;
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700402 *)
403 echo
404 echo "I didn't understand your response. Please try again."
405 echo
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700406 ;;
407 esac
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800408 if [ -n "$1" ] ; then
409 break
410 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700411 done
412
Ying Wang08800fd2016-03-03 20:57:21 -0800413 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700414 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800415 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700416}
417
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800418#
419# This function isn't really right: It chooses a TARGET_PRODUCT
420# based on the list of boards. Usually, that gets you something
421# that kinda works with a generic product, but really, you should
422# pick a product by name.
423#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700424function chooseproduct()
425{
Christopher Ferris55257d22017-03-23 11:08:58 -0700426 local default_value
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700427 if [ "x$TARGET_PRODUCT" != x ] ; then
428 default_value=$TARGET_PRODUCT
429 else
Ying Wang0a76df52015-06-08 11:57:26 -0700430 default_value=aosp_arm
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700431 fi
432
Ying Wang08800fd2016-03-03 20:57:21 -0800433 export TARGET_BUILD_APPS=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800434 export TARGET_PRODUCT=
435 local ANSWER
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700436 while [ -z "$TARGET_PRODUCT" ]
437 do
Joe Onorato8849aed2009-04-29 15:56:47 -0700438 echo -n "Which product would you like? [$default_value] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800439 if [ -z "$1" ] ; then
440 read ANSWER
441 else
442 echo $1
443 ANSWER=$1
444 fi
445
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700446 if [ -z "$ANSWER" ] ; then
447 export TARGET_PRODUCT=$default_value
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800448 else
449 if check_product $ANSWER
450 then
451 export TARGET_PRODUCT=$ANSWER
452 else
453 echo "** Not a valid product: $ANSWER"
454 fi
455 fi
456 if [ -n "$1" ] ; then
457 break
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700458 fi
459 done
460
Ying Wang08800fd2016-03-03 20:57:21 -0800461 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700462 set_stuff_for_environment
Ying Wang08800fd2016-03-03 20:57:21 -0800463 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700464}
465
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800466function choosevariant()
467{
468 echo "Variant choices are:"
469 local index=1
470 local v
471 for v in ${VARIANT_CHOICES[@]}
472 do
473 # The product name is the name of the directory containing
474 # the makefile we found, above.
475 echo " $index. $v"
476 index=$(($index+1))
477 done
478
479 local default_value=eng
480 local ANSWER
481
482 export TARGET_BUILD_VARIANT=
483 while [ -z "$TARGET_BUILD_VARIANT" ]
484 do
485 echo -n "Which would you like? [$default_value] "
486 if [ -z "$1" ] ; then
487 read ANSWER
488 else
489 echo $1
490 ANSWER=$1
491 fi
492
493 if [ -z "$ANSWER" ] ; then
494 export TARGET_BUILD_VARIANT=$default_value
495 elif (echo -n $ANSWER | grep -q -e "^[0-9][0-9]*$") ; then
496 if [ "$ANSWER" -le "${#VARIANT_CHOICES[@]}" ] ; then
Kan-Ru Chen07453762010-07-05 15:53:47 +0800497 export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800498 fi
499 else
500 if check_variant $ANSWER
501 then
502 export TARGET_BUILD_VARIANT=$ANSWER
503 else
504 echo "** Not a valid variant: $ANSWER"
505 fi
506 fi
507 if [ -n "$1" ] ; then
508 break
509 fi
510 done
511}
512
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700513function choosecombo()
514{
Jeff Browne33ba4c2011-07-11 22:11:46 -0700515 choosetype $1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700516
517 echo
518 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700519 chooseproduct $2
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700520
521 echo
522 echo
Jeff Browne33ba4c2011-07-11 22:11:46 -0700523 choosevariant $3
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800524
525 echo
Ying Wang08800fd2016-03-03 20:57:21 -0800526 build_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700527 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800528 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800529 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700530}
531
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800532# Clear this variable. It will be built up again when the vendorsetup.sh
533# files are included at the end of this file.
534unset LUNCH_MENU_CHOICES
535function add_lunch_combo()
536{
537 local new_combo=$1
538 local c
539 for c in ${LUNCH_MENU_CHOICES[@]} ; do
540 if [ "$new_combo" = "$c" ] ; then
541 return
542 fi
543 done
544 LUNCH_MENU_CHOICES=(${LUNCH_MENU_CHOICES[@]} $new_combo)
545}
546
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700547function print_lunch_menu()
548{
549 local uname=$(uname)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700550 echo
551 echo "You're building on" $uname
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700552 echo
553 echo "Lunch menu... pick a combo:"
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800554
555 local i=1
556 local choice
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700557 for choice in $(TARGET_BUILD_APPS= LUNCH_MENU_CHOICES="${LUNCH_MENU_CHOICES[@]}" get_build_var COMMON_LUNCH_CHOICES)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800558 do
559 echo " $i. $choice"
560 i=$(($i+1))
561 done
562
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700563 echo
564}
565
566function lunch()
567{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800568 local answer
569
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700570 if [ "$1" ] ; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800571 answer=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700572 else
573 print_lunch_menu
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700574 echo -n "Which would you like? [aosp_arm-eng] "
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800575 read answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700576 fi
577
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800578 local selection=
579
580 if [ -z "$answer" ]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700581 then
Jean-Baptiste Queru324c1232013-03-22 15:53:54 -0700582 selection=aosp_arm-eng
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800583 elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$")
584 then
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700585 local choices=($(TARGET_BUILD_APPS= LUNCH_MENU_CHOICES="${LUNCH_MENU_CHOICES[@]}" get_build_var COMMON_LUNCH_CHOICES))
586 if [ $answer -le ${#choices[@]} ]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800587 then
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700588 selection=${choices[$(($answer-1))]}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800589 fi
Colin Cross88737132017-03-21 17:41:03 -0700590 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800591 selection=$answer
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700592 fi
593
Joe Onoratoda12daf2010-06-09 18:18:31 -0700594 export TARGET_BUILD_APPS=
595
Colin Cross88737132017-03-21 17:41:03 -0700596 local product variant_and_version variant version
597
598 product=${selection%%-*} # Trim everything after first dash
599 variant_and_version=${selection#*-} # Trim everything up to first dash
600 if [ "$variant_and_version" != "$selection" ]; then
601 variant=${variant_and_version%%-*}
602 if [ "$variant" != "$variant_and_version" ]; then
603 version=${variant_and_version#*-}
604 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700605 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800606
Colin Cross88737132017-03-21 17:41:03 -0700607 if [ -z "$product" ]
Ying Wang08800fd2016-03-03 20:57:21 -0800608 then
609 echo
Colin Cross88737132017-03-21 17:41:03 -0700610 echo "Invalid lunch combo: $selection"
Jeff Browne33ba4c2011-07-11 22:11:46 -0700611 return 1
612 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800613
Colin Cross88737132017-03-21 17:41:03 -0700614 TARGET_PRODUCT=$product \
615 TARGET_BUILD_VARIANT=$variant \
616 TARGET_PLATFORM_VERSION=$version \
617 build_build_var_cache
618 if [ $? -ne 0 ]
619 then
620 return 1
621 fi
622
623 export TARGET_PRODUCT=$(get_build_var TARGET_PRODUCT)
624 export TARGET_BUILD_VARIANT=$(get_build_var TARGET_BUILD_VARIANT)
Colin Crossb105e362017-05-01 14:21:28 -0700625 if [ -n "$version" ]; then
626 export TARGET_PLATFORM_VERSION=$(get_build_var TARGET_PLATFORM_VERSION)
627 else
628 unset TARGET_PLATFORM_VERSION
629 fi
Jeff Browne33ba4c2011-07-11 22:11:46 -0700630 export TARGET_BUILD_TYPE=release
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700631
632 echo
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800633
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700634 set_stuff_for_environment
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800635 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800636 destroy_build_var_cache
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700637}
638
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700639unset COMMON_LUNCH_CHOICES_CACHE
Jeff Davidson513d7a42010-08-02 10:00:44 -0700640# Tab completion for lunch.
641function _lunch()
642{
643 local cur prev opts
644 COMPREPLY=()
645 cur="${COMP_WORDS[COMP_CWORD]}"
646 prev="${COMP_WORDS[COMP_CWORD-1]}"
647
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700648 if [ -z "$COMMON_LUNCH_CHOICES_CACHE" ]; then
649 COMMON_LUNCH_CHOICES_CACHE=$(TARGET_BUILD_APPS= LUNCH_MENU_CHOICES="${LUNCH_MENU_CHOICES[@]}" get_build_var COMMON_LUNCH_CHOICES)
650 fi
651
652 COMPREPLY=( $(compgen -W "${COMMON_LUNCH_CHOICES_CACHE}" -- ${cur}) )
Jeff Davidson513d7a42010-08-02 10:00:44 -0700653 return 0
654}
Jeff Davidson513d7a42010-08-02 10:00:44 -0700655
Joe Onoratoda12daf2010-06-09 18:18:31 -0700656# Configures the build to build unbundled apps.
Doug Zongker0d8179e2014-04-16 11:34:34 -0700657# Run tapas with one or more app names (from LOCAL_PACKAGE_NAME)
Joe Onoratoda12daf2010-06-09 18:18:31 -0700658function tapas()
659{
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700660 local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)"
Dan Willemsendd3a2732018-01-08 15:26:16 -0800661 local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|arm64|x86_64|mips64)$' | xargs)"
Doug Zongker0d8179e2014-04-16 11:34:34 -0700662 local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)"
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700663 local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Dan Willemsendd3a2732018-01-08 15:26:16 -0800664 local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|mips|arm64|x86_64|mips64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)"
Joe Onoratoda12daf2010-06-09 18:18:31 -0700665
Jeff Gaston9fb05d82017-08-21 18:27:00 -0700666 if [ "$showHelp" != "" ]; then
667 $(gettop)/build/make/tapasHelp.sh
668 return
669 fi
670
Ying Wang67f02922012-08-22 10:25:20 -0700671 if [ $(echo $arch | wc -w) -gt 1 ]; then
672 echo "tapas: Error: Multiple build archs supplied: $arch"
673 return
674 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700675 if [ $(echo $variant | wc -w) -gt 1 ]; then
676 echo "tapas: Error: Multiple build variants supplied: $variant"
677 return
678 fi
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700679 if [ $(echo $density | wc -w) -gt 1 ]; then
680 echo "tapas: Error: Multiple densities supplied: $density"
681 return
682 fi
Ying Wang67f02922012-08-22 10:25:20 -0700683
Ying Wang0a76df52015-06-08 11:57:26 -0700684 local product=aosp_arm
Ying Wang67f02922012-08-22 10:25:20 -0700685 case $arch in
Ying Wang0a76df52015-06-08 11:57:26 -0700686 x86) product=aosp_x86;;
687 mips) product=aosp_mips;;
Ying Wangb541ab62014-05-29 17:57:40 -0700688 arm64) product=aosp_arm64;;
689 x86_64) product=aosp_x86_64;;
690 mips64) product=aosp_mips64;;
Ying Wang67f02922012-08-22 10:25:20 -0700691 esac
Joe Onoratoda12daf2010-06-09 18:18:31 -0700692 if [ -z "$variant" ]; then
693 variant=eng
694 fi
Ying Wangc048c9b2010-06-24 15:08:33 -0700695 if [ -z "$apps" ]; then
696 apps=all
697 fi
Justin Morey29d225c2014-11-04 13:35:51 -0600698 if [ -z "$density" ]; then
699 density=alldpi
700 fi
Joe Onoratoda12daf2010-06-09 18:18:31 -0700701
Ying Wang67f02922012-08-22 10:25:20 -0700702 export TARGET_PRODUCT=$product
Joe Onoratoda12daf2010-06-09 18:18:31 -0700703 export TARGET_BUILD_VARIANT=$variant
Jeff Hamilton5069bd62014-09-04 21:28:00 -0700704 export TARGET_BUILD_DENSITY=$density
Joe Onoratoda12daf2010-06-09 18:18:31 -0700705 export TARGET_BUILD_TYPE=release
706 export TARGET_BUILD_APPS=$apps
707
Ying Wang08800fd2016-03-03 20:57:21 -0800708 build_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700709 set_stuff_for_environment
710 printconfig
Ying Wang08800fd2016-03-03 20:57:21 -0800711 destroy_build_var_cache
Joe Onoratoda12daf2010-06-09 18:18:31 -0700712}
713
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700714function gettop
715{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700716 local TOPFILE=build/make/core/envsetup.mk
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700717 if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then
Brian Carlstroma5c4f172014-09-12 00:33:25 -0700718 # The following circumlocution ensures we remove symlinks from TOP.
719 (cd $TOP; PWD= /bin/pwd)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700720 else
721 if [ -f $TOPFILE ] ; then
Dan Bornsteind0b274d2009-11-24 15:48:50 -0800722 # The following circumlocution (repeated below as well) ensures
723 # that we record the true directory name and not one that is
724 # faked up with symlink names.
725 PWD= /bin/pwd
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700726 else
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800727 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700728 local T=
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700729 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang9cd17642012-12-13 10:52:07 -0800730 \cd ..
synergyb112a402013-07-05 19:47:47 -0700731 T=`PWD= /bin/pwd -P`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700732 done
Ying Wang9cd17642012-12-13 10:52:07 -0800733 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700734 if [ -f "$T/$TOPFILE" ]; then
735 echo $T
736 fi
737 fi
738 fi
739}
740
741function m()
742{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800743 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700744 if [ "$T" ]; then
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800745 _wrap_build $T/build/soong/soong_ui.bash --make-mode $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700746 else
747 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700748 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700749 fi
750}
751
752function findmakefile()
753{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700754 local TOPFILE=build/make/core/envsetup.mk
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800755 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700756 local T=
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700757 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
Ying Wang11b15b12012-10-11 15:05:07 -0700758 T=`PWD= /bin/pwd`
Colin Cross86425252016-05-26 15:32:15 -0700759 if [ -f "$T/Android.mk" -o -f "$T/Android.bp" ]; then
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700760 echo $T/Android.mk
Ying Wang9cd17642012-12-13 10:52:07 -0800761 \cd $HERE
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700762 return
763 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800764 \cd ..
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700765 done
Ying Wang9cd17642012-12-13 10:52:07 -0800766 \cd $HERE
Steven Moreland3b99ecf2018-06-13 15:31:59 -0700767 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700768}
769
770function mm()
771{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800772 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700773 # If we're sitting in the root of the build tree, just do a
Dan Willemsend41ec5a2017-07-12 16:14:50 -0700774 # normal build.
775 if [ -f build/soong/soong_ui.bash ]; then
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800776 _wrap_build $T/build/soong/soong_ui.bash --make-mode $@
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700777 else
778 # Find the closest Android.mk file.
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800779 local M=$(findmakefile)
Ying Wanga7deb082013-08-16 13:24:47 -0700780 local MODULES=
781 local GET_INSTALL_PATH=
782 local ARGS=
Robert Greenwalt3c794d72009-07-15 15:07:44 -0700783 # Remove the path to top as the makefilepath needs to be relative
784 local M=`echo $M|sed 's:'$T'/::'`
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700785 if [ ! "$T" ]; then
786 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700787 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700788 elif [ ! "$M" ]; then
789 echo "Couldn't locate a makefile from the current directory."
Ying Wang0c1374c2015-04-01 10:13:02 -0700790 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700791 else
Christopher Ferris55257d22017-03-23 11:08:58 -0700792 local ARG
Ying Wanga7deb082013-08-16 13:24:47 -0700793 for ARG in $@; do
794 case $ARG in
795 GET-INSTALL-PATH) GET_INSTALL_PATH=$ARG;;
796 esac
797 done
798 if [ -n "$GET_INSTALL_PATH" ]; then
799 MODULES=
Dan Willemsen53e38992016-08-11 17:20:33 -0700800 ARGS=GET-INSTALL-PATH-IN-$(dirname ${M})
801 ARGS=${ARGS//\//-}
Ying Wanga7deb082013-08-16 13:24:47 -0700802 else
Colin Cross86425252016-05-26 15:32:15 -0700803 MODULES=MODULES-IN-$(dirname ${M})
804 # Convert "/" to "-".
805 MODULES=${MODULES//\//-}
Ying Wanga7deb082013-08-16 13:24:47 -0700806 ARGS=$@
807 fi
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -0700808 if [ "1" = "${WITH_TIDY_ONLY}" -o "true" = "${WITH_TIDY_ONLY}" ]; then
809 MODULES=tidy_only
810 fi
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800811 ONE_SHOT_MAKEFILE=$M _wrap_build $T/build/soong/soong_ui.bash --make-mode $MODULES $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700812 fi
813 fi
814}
815
816function mmm()
817{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800818 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700819 if [ "$T" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800820 local MAKEFILE=
Alon Albert68895a92011-11-30 12:40:19 -0800821 local MODULES=
Colin Cross86425252016-05-26 15:32:15 -0700822 local MODULES_IN_PATHS=
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -0800823 local ARGS=
824 local DIR TO_CHOP
Colin Cross86425252016-05-26 15:32:15 -0700825 local DIR_MODULES
Ying Wanga7deb082013-08-16 13:24:47 -0700826 local GET_INSTALL_PATH=
Dan Willemsen53e38992016-08-11 17:20:33 -0700827 local GET_INSTALL_PATHS=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800828 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
829 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
830 for DIR in $DIRS ; do
Colin Cross86425252016-05-26 15:32:15 -0700831 DIR_MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'`
Alon Albert68895a92011-11-30 12:40:19 -0800832 DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'`
Colin Cross86425252016-05-26 15:32:15 -0700833 # Remove the leading ./ and trailing / if any exists.
834 DIR=${DIR#./}
835 DIR=${DIR%/}
836 if [ -f $DIR/Android.mk -o -f $DIR/Android.bp ]; then
Ying Wanga7deb082013-08-16 13:24:47 -0700837 local TO_CHOP=`(\cd -P -- $T && pwd -P) | wc -c | tr -d ' '`
838 local TO_CHOP=`expr $TO_CHOP + 1`
839 local START=`PWD= /bin/pwd`
Colin Cross4bfae062016-08-31 17:22:36 -0700840 local MDIR=`echo $START | cut -c${TO_CHOP}-`
841 if [ "$MDIR" = "" ] ; then
842 MDIR=$DIR
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700843 else
Colin Cross4bfae062016-08-31 17:22:36 -0700844 MDIR=$MDIR/$DIR
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700845 fi
Colin Cross4bfae062016-08-31 17:22:36 -0700846 MDIR=${MDIR%/.}
847 if [ "$DIR_MODULES" = "" ]; then
848 MODULES_IN_PATHS="$MODULES_IN_PATHS MODULES-IN-$MDIR"
849 GET_INSTALL_PATHS="$GET_INSTALL_PATHS GET-INSTALL-PATH-IN-$MDIR"
850 else
851 MODULES="$MODULES $DIR_MODULES"
852 fi
853 MAKEFILE="$MAKEFILE $MDIR/Android.mk"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700854 else
Ying Wanga7deb082013-08-16 13:24:47 -0700855 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700856 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wanga7deb082013-08-16 13:24:47 -0700857 GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;;
Abhinav1997a72a6e72015-10-18 20:25:48 +0200858 *) if [ -d $DIR ]; then
859 echo "No Android.mk in $DIR.";
860 else
861 echo "Couldn't locate the directory $DIR";
862 fi
863 return 1;;
Ying Wanga7deb082013-08-16 13:24:47 -0700864 esac
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700865 fi
866 done
Ying Wanga7deb082013-08-16 13:24:47 -0700867 if [ -n "$GET_INSTALL_PATH" ]; then
Dan Willemsen53e38992016-08-11 17:20:33 -0700868 ARGS=${GET_INSTALL_PATHS//\//-}
Ying Wanga7deb082013-08-16 13:24:47 -0700869 MODULES=
Colin Cross86425252016-05-26 15:32:15 -0700870 MODULES_IN_PATHS=
Ying Wanga7deb082013-08-16 13:24:47 -0700871 fi
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -0700872 if [ "1" = "${WITH_TIDY_ONLY}" -o "true" = "${WITH_TIDY_ONLY}" ]; then
873 MODULES=tidy_only
Colin Cross86425252016-05-26 15:32:15 -0700874 MODULES_IN_PATHS=
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -0700875 fi
Colin Cross86425252016-05-26 15:32:15 -0700876 # Convert "/" to "-".
877 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800878 ONE_SHOT_MAKEFILE="$MAKEFILE" _wrap_build $T/build/soong/soong_ui.bash --make-mode $DASH_ARGS $MODULES $MODULES_IN_PATHS $ARGS
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700879 else
880 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700881 return 1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700882 fi
883}
884
Ying Wangb607f7b2013-02-08 18:01:04 -0800885function mma()
886{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800887 local T=$(gettop)
Dan Willemsend41ec5a2017-07-12 16:14:50 -0700888 if [ -f build/soong/soong_ui.bash ]; then
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800889 _wrap_build $T/build/soong/soong_ui.bash --make-mode $@
Ying Wangb607f7b2013-02-08 18:01:04 -0800890 else
Ying Wangb607f7b2013-02-08 18:01:04 -0800891 if [ ! "$T" ]; then
892 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700893 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800894 fi
Steven Moreland3b99ecf2018-06-13 15:31:59 -0700895 local M=$(findmakefile || echo $(realpath $PWD)/Android.mk)
Colin Cross127fcea2016-09-01 15:30:18 -0700896 # Remove the path to top as the makefilepath needs to be relative
897 local M=`echo $M|sed 's:'$T'/::'`
898 local MODULES_IN_PATHS=MODULES-IN-$(dirname ${M})
Ying Wang61cd8842015-09-24 16:19:19 -0700899 # Convert "/" to "-".
900 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800901 _wrap_build $T/build/soong/soong_ui.bash --make-mode $@ $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800902 fi
903}
904
905function mmma()
906{
Andrew Hsieh906cb782013-09-10 17:37:14 +0800907 local T=$(gettop)
Ying Wangb607f7b2013-02-08 18:01:04 -0800908 if [ "$T" ]; then
909 local DASH_ARGS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^-.*$/')
910 local DIRS=$(echo "$@" | awk -v RS=" " -v ORS=" " '/^[^-].*$/')
911 local MY_PWD=`PWD= /bin/pwd`
912 if [ "$MY_PWD" = "$T" ]; then
913 MY_PWD=
914 else
915 MY_PWD=`echo $MY_PWD|sed 's:'$T'/::'`
916 fi
917 local DIR=
Ying Wangcaeaa082015-09-23 16:08:55 -0700918 local MODULES_IN_PATHS=
Ying Wangb607f7b2013-02-08 18:01:04 -0800919 local ARGS=
920 for DIR in $DIRS ; do
921 if [ -d $DIR ]; then
Ying Wangcaeaa082015-09-23 16:08:55 -0700922 # Remove the leading ./ and trailing / if any exists.
923 DIR=${DIR#./}
924 DIR=${DIR%/}
925 if [ "$MY_PWD" != "" ]; then
926 DIR=$MY_PWD/$DIR
Ying Wangb607f7b2013-02-08 18:01:04 -0800927 fi
Ying Wang61cd8842015-09-24 16:19:19 -0700928 MODULES_IN_PATHS="$MODULES_IN_PATHS MODULES-IN-$DIR"
Ying Wangb607f7b2013-02-08 18:01:04 -0800929 else
930 case $DIR in
Ying Wangcaeaa082015-09-23 16:08:55 -0700931 showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";;
Ying Wangb607f7b2013-02-08 18:01:04 -0800932 *) echo "Couldn't find directory $DIR"; return 1;;
933 esac
934 fi
935 done
Ying Wang61cd8842015-09-24 16:19:19 -0700936 # Convert "/" to "-".
937 MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-}
Chih-Hung Hsieh7ed0db82018-02-15 11:20:04 -0800938 _wrap_build $T/build/soong/soong_ui.bash --make-mode $DASH_ARGS $ARGS $MODULES_IN_PATHS
Ying Wangb607f7b2013-02-08 18:01:04 -0800939 else
940 echo "Couldn't locate the top of the tree. Try setting TOP."
Ying Wang0c1374c2015-04-01 10:13:02 -0700941 return 1
Ying Wangb607f7b2013-02-08 18:01:04 -0800942 fi
943}
944
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700945function croot()
946{
Christopher Ferris55257d22017-03-23 11:08:58 -0700947 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700948 if [ "$T" ]; then
Marie Janssen32ec50a2016-04-21 16:53:39 -0700949 if [ "$1" ]; then
950 \cd $(gettop)/$1
951 else
952 \cd $(gettop)
953 fi
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -0700954 else
955 echo "Couldn't locate the top of the tree. Try setting TOP."
956 fi
957}
958
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700959function cproj()
960{
Colin Cross6cdc5d22017-10-20 11:37:33 -0700961 local TOPFILE=build/make/core/envsetup.mk
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700962 local HERE=$PWD
Christopher Ferris55257d22017-03-23 11:08:58 -0700963 local T=
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700964 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
965 T=$PWD
966 if [ -f "$T/Android.mk" ]; then
Ying Wang9cd17642012-12-13 10:52:07 -0800967 \cd $T
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700968 return
969 fi
Ying Wang9cd17642012-12-13 10:52:07 -0800970 \cd ..
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700971 done
Ying Wang9cd17642012-12-13 10:52:07 -0800972 \cd $HERE
Joe Onorato2a5d4d82009-07-30 10:23:21 -0700973 echo "can't find Android.mk"
974}
975
Daniel Sandler47e0a882013-07-30 13:23:52 -0400976# simplified version of ps; output in the form
977# <pid> <procname>
978function qpid() {
979 local prepend=''
980 local append=''
981 if [ "$1" = "--exact" ]; then
982 prepend=' '
983 append='$'
984 shift
985 elif [ "$1" = "--help" -o "$1" = "-h" ]; then
Ying Wang08800fd2016-03-03 20:57:21 -0800986 echo "usage: qpid [[--exact] <process name|pid>"
987 return 255
988 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400989
990 local EXE="$1"
991 if [ "$EXE" ] ; then
Ying Wang08800fd2016-03-03 20:57:21 -0800992 qpid | \grep "$prepend$EXE$append"
993 else
994 adb shell ps \
995 | tr -d '\r' \
996 | sed -e 1d -e 's/^[^ ]* *\([0-9]*\).* \([^ ]*\)$/\1 \2/'
997 fi
Daniel Sandler47e0a882013-07-30 13:23:52 -0400998}
999
Iliyan Malcheve675cfb2014-11-03 17:04:47 -08001000# coredump_setup - enable core dumps globally for any process
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001001# that has the core-file-size limit set correctly
1002#
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001003# NOTE: You must call also coredump_enable for a specific process
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001004# if its core-file-size limit is not set already.
1005# NOTE: Core dumps are written to ramdisk; they will not survive a reboot!
1006
Iliyan Malcheve675cfb2014-11-03 17:04:47 -08001007function coredump_setup()
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001008{
Ying Wang08800fd2016-03-03 20:57:21 -08001009 echo "Getting root...";
1010 adb root;
1011 adb wait-for-device;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001012
Ying Wang08800fd2016-03-03 20:57:21 -08001013 echo "Remounting root partition read-write...";
1014 adb shell mount -w -o remount -t rootfs rootfs;
1015 sleep 1;
1016 adb wait-for-device;
1017 adb shell mkdir -p /cores;
1018 adb shell mount -t tmpfs tmpfs /cores;
1019 adb shell chmod 0777 /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001020
Ying Wang08800fd2016-03-03 20:57:21 -08001021 echo "Granting SELinux permission to dump in /cores...";
1022 adb shell restorecon -R /cores;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001023
Ying Wang08800fd2016-03-03 20:57:21 -08001024 echo "Set core pattern.";
1025 adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern';
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001026
Ying Wang08800fd2016-03-03 20:57:21 -08001027 echo "Done."
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001028}
1029
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001030# coredump_enable - enable core dumps for the specified process
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001031# $1 = PID of process (e.g., $(pid mediaserver))
1032#
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001033# NOTE: coredump_setup must have been called as well for a core
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001034# dump to actually be generated.
1035
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001036function coredump_enable()
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001037{
Ying Wang08800fd2016-03-03 20:57:21 -08001038 local PID=$1;
1039 if [ -z "$PID" ]; then
1040 printf "Expecting a PID!\n";
1041 return;
1042 fi;
1043 echo "Setting core limit for $PID to infinite...";
Elliott Hughes910a3552016-03-07 13:53:53 -08001044 adb shell /system/bin/ulimit -p $PID -c unlimited
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001045}
1046
1047# core - send SIGV and pull the core for process
1048# $1 = PID of process (e.g., $(pid mediaserver))
1049#
Iliyan Malchevaf5de972014-11-04 20:57:37 -08001050# NOTE: coredump_setup must be called once per boot for core dumps to be
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001051# enabled globally.
1052
1053function core()
1054{
Ying Wang08800fd2016-03-03 20:57:21 -08001055 local PID=$1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001056
Ying Wang08800fd2016-03-03 20:57:21 -08001057 if [ -z "$PID" ]; then
1058 printf "Expecting a PID!\n";
1059 return;
1060 fi;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001061
Ying Wang08800fd2016-03-03 20:57:21 -08001062 local CORENAME=core.$PID;
1063 local COREPATH=/cores/$CORENAME;
1064 local SIG=SEGV;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001065
Ying Wang08800fd2016-03-03 20:57:21 -08001066 coredump_enable $1;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001067
Ying Wang08800fd2016-03-03 20:57:21 -08001068 local done=0;
1069 while [ $(adb shell "[ -d /proc/$PID ] && echo -n yes") ]; do
1070 printf "\tSending SIG%s to %d...\n" $SIG $PID;
1071 adb shell kill -$SIG $PID;
1072 sleep 1;
1073 done;
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001074
Ying Wang08800fd2016-03-03 20:57:21 -08001075 adb shell "while [ ! -f $COREPATH ] ; do echo waiting for $COREPATH to be generated; sleep 1; done"
1076 echo "Done: core is under $COREPATH on device.";
Iliyan Malchev248f4d52014-10-28 18:00:42 -07001077}
1078
Christopher Tate744ee802009-11-12 15:33:08 -08001079# systemstack - dump the current stack trace of all threads in the system process
1080# to the usual ANR traces file
1081function systemstack()
1082{
Jeff Sharkeyf5824372013-02-19 17:00:46 -08001083 stacks system_server
1084}
1085
Michael Wrightaeed7212014-06-19 19:58:12 -07001086# Read the ELF header from /proc/$PID/exe to determine if the process is
1087# 64-bit.
Ben Chengfba67bf2014-02-25 10:27:07 -08001088function is64bit()
1089{
1090 local PID="$1"
1091 if [ "$PID" ] ; then
Michael Wrightaeed7212014-06-19 19:58:12 -07001092 if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then
Ben Chengfba67bf2014-02-25 10:27:07 -08001093 echo "64"
1094 else
1095 echo ""
1096 fi
1097 else
1098 echo ""
1099 fi
1100}
1101
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001102case `uname -s` in
1103 Darwin)
1104 function sgrep()
1105 {
Keun Soo Yim3d484752016-02-19 11:06:58 -08001106 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|S|java|xml|sh|mk|aidl|vts)' \
Mike Frysinger5e479732015-09-22 18:13:48 -04001107 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001108 }
1109
1110 ;;
1111 *)
1112 function sgrep()
1113 {
Keun Soo Yim3d484752016-02-19 11:06:58 -08001114 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\|vts\)' \
Mike Frysinger5e479732015-09-22 18:13:48 -04001115 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001116 }
1117 ;;
1118esac
1119
Raghu Gandham8da43102012-07-25 19:57:22 -07001120function gettargetarch
1121{
1122 get_build_var TARGET_ARCH
1123}
1124
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001125function ggrep()
1126{
Mike Frysinger5e479732015-09-22 18:13:48 -04001127 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
1128 -exec grep --color -n "$@" {} +
Jon Boekenoogencbca56f2014-04-07 10:57:38 -07001129}
1130
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001131function jgrep()
1132{
Mike Frysinger5e479732015-09-22 18:13:48 -04001133 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
1134 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001135}
1136
1137function cgrep()
1138{
Mike Frysinger5e479732015-09-22 18:13:48 -04001139 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' \) \
1140 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001141}
1142
1143function resgrep()
1144{
Christopher Ferris55257d22017-03-23 11:08:58 -07001145 local dir
Mike Frysinger5e479732015-09-22 18:13:48 -04001146 for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type d`; do
1147 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
1148 done
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001149}
1150
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001151function mangrep()
1152{
Mike Frysinger5e479732015-09-22 18:13:48 -04001153 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \
1154 -exec grep --color -n "$@" {} +
Jeff Sharkey50b61e92013-03-08 10:20:47 -08001155}
1156
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001157function sepgrep()
1158{
Mike Frysinger5e479732015-09-22 18:13:48 -04001159 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1160 -exec grep --color -n -r --exclude-dir=\.git "$@" {} +
Alex Klyubinba5fc8e2013-05-06 14:11:48 -07001161}
1162
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001163function rcgrep()
1164{
Mike Frysinger5e479732015-09-22 18:13:48 -04001165 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
1166 -exec grep --color -n "$@" {} +
Jeff Sharkeyea0068a2015-02-26 14:13:46 -08001167}
1168
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001169case `uname -s` in
1170 Darwin)
1171 function mgrep()
1172 {
David Grossd1d6fc52017-05-10 10:49:44 -07001173 find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regex '(.*/)?soong/[^/]*.go' \) -type f \
Mike Frysinger5e479732015-09-22 18:13:48 -04001174 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001175 }
1176
1177 function treegrep()
1178 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001179 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml)' \
1180 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001181 }
1182
1183 ;;
1184 *)
1185 function mgrep()
1186 {
David Grossd1d6fc52017-05-10 10:49:44 -07001187 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o \( -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -o -regextype posix-extended -regex '(.*/)?soong/[^/]*.go' \) -type f \
Mike Frysinger5e479732015-09-22 18:13:48 -04001188 -exec grep --color -n "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001189 }
1190
1191 function treegrep()
1192 {
Mike Frysinger5e479732015-09-22 18:13:48 -04001193 find . -name .repo -prune -o -name .git -prune -o -regextype posix-egrep -iregex '.*\.(c|h|cpp|S|java|xml)' -type f \
1194 -exec grep --color -n -i "$@" {} +
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001195 }
1196
1197 ;;
1198esac
1199
1200function getprebuilt
1201{
1202 get_abs_build_var ANDROID_PREBUILTS
1203}
1204
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001205function tracedmdump()
1206{
Christopher Ferris55257d22017-03-23 11:08:58 -07001207 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001208 if [ ! "$T" ]; then
1209 echo "Couldn't locate the top of the tree. Try setting TOP."
1210 return
1211 fi
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001212 local prebuiltdir=$(getprebuilt)
Raghu Gandham8da43102012-07-25 19:57:22 -07001213 local arch=$(gettargetarch)
1214 local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001215
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001216 local TRACE=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001217 if [ ! "$TRACE" ] ; then
1218 echo "usage: tracedmdump tracename"
1219 return
1220 fi
1221
Jack Veenstra60116fc2009-04-09 18:12:34 -07001222 if [ ! -r "$KERNEL" ] ; then
1223 echo "Error: cannot find kernel: '$KERNEL'"
1224 return
1225 fi
1226
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001227 local BASETRACE=$(basename $TRACE)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001228 if [ "$BASETRACE" = "$TRACE" ] ; then
1229 TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE
1230 fi
1231
1232 echo "post-processing traces..."
1233 rm -f $TRACE/qtrace.dexlist
1234 post_trace $TRACE
1235 if [ $? -ne 0 ]; then
1236 echo "***"
1237 echo "*** Error: malformed trace. Did you remember to exit the emulator?"
1238 echo "***"
1239 return
1240 fi
1241 echo "generating dexlist output..."
1242 /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
1243 echo "generating dmtrace data..."
1244 q2dm -r $ANDROID_PRODUCT_OUT/symbols $TRACE $KERNEL $TRACE/dmtrace || return
1245 echo "generating html file..."
1246 dmtracedump -h $TRACE/dmtrace >| $TRACE/dmtrace.html || return
1247 echo "done, see $TRACE/dmtrace.html for details"
1248 echo "or run:"
1249 echo " traceview $TRACE/dmtrace"
1250}
1251
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001252# communicate with a running device or emulator, set up necessary state,
1253# and run the hat command.
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001254function runhat()
1255{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001256 # process standard adb options
1257 local adbTarget=""
Andy McFaddenb6289852010-07-12 08:00:19 -07001258 if [ "$1" = "-d" -o "$1" = "-e" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001259 adbTarget=$1
1260 shift 1
Andy McFaddenb6289852010-07-12 08:00:19 -07001261 elif [ "$1" = "-s" ]; then
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001262 adbTarget="$1 $2"
1263 shift 2
1264 fi
1265 local adbOptions=${adbTarget}
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001266 #echo adbOptions = ${adbOptions}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001267
1268 # runhat options
1269 local targetPid=$1
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001270
1271 if [ "$targetPid" = "" ]; then
Andy McFaddenb6289852010-07-12 08:00:19 -07001272 echo "Usage: runhat [ -d | -e | -s serial ] target-pid"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001273 return
1274 fi
1275
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001276 # confirm hat is available
1277 if [ -z $(which hat) ]; then
1278 echo "hat is not available in this configuration."
1279 return
1280 fi
1281
Andy McFaddenb6289852010-07-12 08:00:19 -07001282 # issue "am" command to cause the hprof dump
Nick Kralevich9948b1e2014-07-18 15:45:38 -07001283 local devFile=/data/local/tmp/hprof-$targetPid
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001284 echo "Poking $targetPid and waiting for data..."
Dianne Hackborn6b9549f2012-09-26 15:00:59 -07001285 echo "Storing data at $devFile"
Andy McFaddenb6289852010-07-12 08:00:19 -07001286 adb ${adbOptions} shell am dumpheap $targetPid $devFile
The Android Open Source Project88b60792009-03-03 19:28:42 -08001287 echo "Press enter when logcat shows \"hprof: heap dump completed\""
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001288 echo -n "> "
1289 read
1290
The Android Open Source Project88b60792009-03-03 19:28:42 -08001291 local localFile=/tmp/$$-hprof
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001292
The Android Open Source Project88b60792009-03-03 19:28:42 -08001293 echo "Retrieving file $devFile..."
1294 adb ${adbOptions} pull $devFile $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001295
The Android Open Source Project88b60792009-03-03 19:28:42 -08001296 adb ${adbOptions} shell rm $devFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001297
The Android Open Source Project88b60792009-03-03 19:28:42 -08001298 echo "Running hat on $localFile"
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001299 echo "View the output by pointing your browser at http://localhost:7000/"
1300 echo ""
Dianne Hackborn6e4e1bb2011-11-10 15:19:51 -08001301 hat -JXmx512m $localFile
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001302}
1303
1304function getbugreports()
1305{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001306 local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001307
1308 if [ ! "$reports" ]; then
1309 echo "Could not locate any bugreports."
1310 return
1311 fi
1312
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001313 local report
1314 for report in ${reports[@]}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001315 do
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001316 echo "/sdcard/bugreports/${report}"
1317 adb pull /sdcard/bugreports/${report} ${report}
1318 gunzip ${report}
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001319 done
1320}
1321
Victoria Lease1b296b42012-08-21 15:44:06 -07001322function getsdcardpath()
1323{
1324 adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\}
1325}
1326
1327function getscreenshotpath()
1328{
1329 echo "$(getsdcardpath)/Pictures/Screenshots"
1330}
1331
1332function getlastscreenshot()
1333{
1334 local screenshot_path=$(getscreenshotpath)
1335 local screenshot=`adb ${adbOptions} ls ${screenshot_path} | grep Screenshot_[0-9-]*.*\.png | sort -rk 3 | cut -d " " -f 4 | head -n 1`
1336 if [ "$screenshot" = "" ]; then
1337 echo "No screenshots found."
1338 return
1339 fi
1340 echo "${screenshot}"
1341 adb ${adbOptions} pull ${screenshot_path}/${screenshot}
1342}
1343
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001344function startviewserver()
1345{
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001346 local port=4939
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001347 if [ $# -gt 0 ]; then
1348 port=$1
1349 fi
1350 adb shell service call window 1 i32 $port
1351}
1352
1353function stopviewserver()
1354{
1355 adb shell service call window 2
1356}
1357
1358function isviewserverstarted()
1359{
1360 adb shell service call window 3
1361}
1362
Romain Guyb84049a2010-10-04 16:56:11 -07001363function key_home()
1364{
1365 adb shell input keyevent 3
1366}
1367
1368function key_back()
1369{
1370 adb shell input keyevent 4
1371}
1372
1373function key_menu()
1374{
1375 adb shell input keyevent 82
1376}
1377
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001378function smoketest()
1379{
1380 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1381 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1382 return
1383 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001384 local T=$(gettop)
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001385 if [ ! "$T" ]; then
1386 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1387 return
1388 fi
1389
Ying Wang9cd17642012-12-13 10:52:07 -08001390 (\cd "$T" && mmm tests/SmokeTest) &&
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001391 adb uninstall com.android.smoketest > /dev/null &&
1392 adb uninstall com.android.smoketest.tests > /dev/null &&
1393 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTestApp.apk &&
1394 adb install $ANDROID_PRODUCT_OUT/data/app/SmokeTest.apk &&
1395 adb shell am instrument -w com.android.smoketest.tests/android.test.InstrumentationTestRunner
1396}
1397
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001398# simple shortcut to the runtest command
1399function runtest()
1400{
Christopher Ferris55257d22017-03-23 11:08:58 -07001401 local T=$(gettop)
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001402 if [ ! "$T" ]; then
1403 echo "Couldn't locate the top of the tree. Try setting TOP." >&2
1404 return
1405 fi
Brett Chabot3fb149d2009-10-21 20:05:26 -07001406 ("$T"/development/testrunner/runtest.py $@)
Brett Chabot762748c2009-03-27 10:25:11 -07001407}
1408
The Android Open Source Project88b60792009-03-03 19:28:42 -08001409function godir () {
1410 if [[ -z "$1" ]]; then
1411 echo "Usage: godir <regex>"
1412 return
1413 fi
Christopher Ferris55257d22017-03-23 11:08:58 -07001414 local T=$(gettop)
1415 local FILELIST
Brian Carlstromf2257422015-09-30 20:28:54 -07001416 if [ ! "$OUT_DIR" = "" ]; then
1417 mkdir -p $OUT_DIR
1418 FILELIST=$OUT_DIR/filelist
1419 else
1420 FILELIST=$T/filelist
1421 fi
1422 if [[ ! -f $FILELIST ]]; then
The Android Open Source Project88b60792009-03-03 19:28:42 -08001423 echo -n "Creating index..."
Brian Carlstromf2257422015-09-30 20:28:54 -07001424 (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001425 echo " Done"
1426 echo ""
1427 fi
1428 local lines
Brian Carlstromf2257422015-09-30 20:28:54 -07001429 lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001430 if [[ ${#lines[@]} = 0 ]]; then
1431 echo "Not found"
1432 return
1433 fi
1434 local pathname
1435 local choice
1436 if [[ ${#lines[@]} > 1 ]]; then
1437 while [[ -z "$pathname" ]]; do
1438 local index=1
1439 local line
1440 for line in ${lines[@]}; do
1441 printf "%6s %s\n" "[$index]" $line
Doug Zongker29034982011-04-22 08:16:56 -07001442 index=$(($index + 1))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001443 done
1444 echo
1445 echo -n "Select one: "
1446 unset choice
1447 read choice
1448 if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then
1449 echo "Invalid choice"
1450 continue
1451 fi
Kan-Ru Chen07453762010-07-05 15:53:47 +08001452 pathname=${lines[$(($choice-1))]}
The Android Open Source Project88b60792009-03-03 19:28:42 -08001453 done
1454 else
The Android Open Source Project88b60792009-03-03 19:28:42 -08001455 pathname=${lines[0]}
1456 fi
Ying Wang9cd17642012-12-13 10:52:07 -08001457 \cd $T/$pathname
The Android Open Source Project88b60792009-03-03 19:28:42 -08001458}
1459
Alex Rayf0d08eb2013-03-08 15:15:06 -08001460# Print colored exit condition
1461function pez {
Michael Wrighteb733842013-03-08 17:34:02 -08001462 "$@"
1463 local retval=$?
1464 if [ $retval -ne 0 ]
1465 then
Jacky Cao89483b82015-05-15 22:12:53 +08001466 echo $'\E'"[0;31mFAILURE\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001467 else
Jacky Cao89483b82015-05-15 22:12:53 +08001468 echo $'\E'"[0;32mSUCCESS\e[00m"
Michael Wrighteb733842013-03-08 17:34:02 -08001469 fi
1470 return $retval
Alex Rayf0d08eb2013-03-08 15:15:06 -08001471}
1472
Ying Wanged21d4c2014-08-24 22:14:19 -07001473function get_make_command()
1474{
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001475 # If we're in the top of an Android tree, use soong_ui.bash instead of make
1476 if [ -f build/soong/soong_ui.bash ]; then
Dan Willemsene9842242017-07-28 13:00:13 -07001477 # Always use the real make if -C is passed in
1478 for arg in "$@"; do
1479 if [[ $arg == -C* ]]; then
1480 echo command make
1481 return
1482 fi
1483 done
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001484 echo build/soong/soong_ui.bash --make-mode
1485 else
1486 echo command make
1487 fi
Ying Wanged21d4c2014-08-24 22:14:19 -07001488}
1489
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001490function _wrap_build()
Ed Heylcc6be0a2014-06-18 14:55:58 -07001491{
1492 local start_time=$(date +"%s")
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001493 "$@"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001494 local ret=$?
1495 local end_time=$(date +"%s")
1496 local tdiff=$(($end_time-$start_time))
1497 local hours=$(($tdiff / 3600 ))
1498 local mins=$((($tdiff % 3600) / 60))
1499 local secs=$(($tdiff % 60))
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001500 local ncolors=$(tput colors 2>/dev/null)
1501 if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
Jacky Cao89483b82015-05-15 22:12:53 +08001502 color_failed=$'\E'"[0;31m"
1503 color_success=$'\E'"[0;32m"
1504 color_reset=$'\E'"[00m"
Greg Hackmannd95c7f72014-06-23 14:05:06 -07001505 else
1506 color_failed=""
1507 color_success=""
1508 color_reset=""
1509 fi
Ed Heylcc6be0a2014-06-18 14:55:58 -07001510 echo
1511 if [ $ret -eq 0 ] ; then
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001512 echo -n "${color_success}#### build completed successfully "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001513 else
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001514 echo -n "${color_failed}#### failed to build some targets "
Ed Heylcc6be0a2014-06-18 14:55:58 -07001515 fi
1516 if [ $hours -gt 0 ] ; then
1517 printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs
1518 elif [ $mins -gt 0 ] ; then
1519 printf "(%02g:%02g (mm:ss))" $mins $secs
1520 elif [ $secs -gt 0 ] ; then
1521 printf "(%s seconds)" $secs
1522 fi
Jacky Cao89483b82015-05-15 22:12:53 +08001523 echo " ####${color_reset}"
Ed Heylcc6be0a2014-06-18 14:55:58 -07001524 echo
1525 return $ret
1526}
1527
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001528function make()
1529{
Dan Willemsene9842242017-07-28 13:00:13 -07001530 _wrap_build $(get_make_command "$@") "$@"
Dan Willemsend41ec5a2017-07-12 16:14:50 -07001531}
1532
David Zeuthen1b126ff2015-09-30 17:10:48 -04001533function provision()
1534{
1535 if [ ! "$ANDROID_PRODUCT_OUT" ]; then
1536 echo "Couldn't locate output files. Try running 'lunch' first." >&2
1537 return 1
1538 fi
1539 if [ ! -e "$ANDROID_PRODUCT_OUT/provision-device" ]; then
1540 echo "There is no provisioning script for the device." >&2
1541 return 1
1542 fi
1543
1544 # Check if user really wants to do this.
1545 if [ "$1" = "--no-confirmation" ]; then
1546 shift 1
1547 else
1548 echo "This action will reflash your device."
1549 echo ""
1550 echo "ALL DATA ON THE DEVICE WILL BE IRREVOCABLY ERASED."
1551 echo ""
Marie Janssen4afc2c02015-11-10 10:41:15 -08001552 echo -n "Are you sure you want to do this (yes/no)? "
1553 read
David Zeuthen1b126ff2015-09-30 17:10:48 -04001554 if [[ "${REPLY}" != "yes" ]] ; then
1555 echo "Not taking any action. Exiting." >&2
1556 return 1
1557 fi
1558 fi
1559 "$ANDROID_PRODUCT_OUT/provision-device" "$@"
1560}
1561
Simran Basi424b8762017-08-23 12:03:04 -07001562function atest()
1563{
1564 # TODO (sbasi): Replace this to be a destination in the build out when & if
1565 # atest is built by the build system. (This will be necessary if it ever
1566 # depends on external pip projects).
1567 "$(gettop)"/tools/tradefederation/core/atest/atest.py "$@"
1568}
1569
Jim Tanga881a252018-06-19 16:34:41 +08001570# Zsh needs bashcompinit called to support bash-style completion.
1571function add_zsh_completion() {
1572 autoload -U compinit && compinit
1573 autoload -U bashcompinit && bashcompinit
1574}
1575
1576function validate_current_shell() {
1577 local current_sh="$(ps -o command -p $$)"
1578 case "$current_sh" in
Raphael Moll70a86b02011-06-20 16:03:14 -07001579 *bash*)
Jim Tanga881a252018-06-19 16:34:41 +08001580 function check_type() { type -t "$1"; }
Raphael Moll70a86b02011-06-20 16:03:14 -07001581 ;;
Jim Tanga881a252018-06-19 16:34:41 +08001582 *zsh*)
1583 function check_type() { type "$1"; }
1584 add_zsh_completion ;;
Raphael Moll70a86b02011-06-20 16:03:14 -07001585 *)
Jim Tanga881a252018-06-19 16:34:41 +08001586 echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results."
Raphael Moll70a86b02011-06-20 16:03:14 -07001587 ;;
1588 esac
Jim Tanga881a252018-06-19 16:34:41 +08001589}
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001590
1591# Execute the contents of any vendorsetup.sh files we can find.
Jim Tanga881a252018-06-19 16:34:41 +08001592function source_vendorsetup() {
1593 for dir in device vendor product; do
1594 for f in $(test -d $dir && \
1595 find -L $dir -maxdepth 4 -name 'vendorsetup.sh' 2>/dev/null | sort); do
1596 echo "including $f"; . $f
1597 done
1598 done
1599}
Kenny Root52aa81c2011-07-15 11:07:06 -07001600
Jim Tanga881a252018-06-19 16:34:41 +08001601validate_current_shell
1602source_vendorsetup
Kenny Root52aa81c2011-07-15 11:07:06 -07001603addcompletions