| Scott Anderson | 1a5fc95 | 2012-03-07 17:15:06 -0800 | [diff] [blame] | 1 | function hmm() { | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 2 | cat <<EOF | 
| Jeff Gaston | c6dfc4e | 2017-05-30 17:12:37 -0700 | [diff] [blame] | 3 |  | 
|  | 4 | Run "m help" for help with the build system itself. | 
|  | 5 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 6 | Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment: | 
| David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 7 | - lunch:     lunch <product_name>-<build_variant> | 
| Jeff Gaston | c6dfc4e | 2017-05-30 17:12:37 -0700 | [diff] [blame] | 8 | 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 Willemsen | dd3a273 | 2018-01-08 15:26:16 -0800 | [diff] [blame] | 11 | - tapas:     tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user] | 
| David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 12 | - 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 29 |  | 
| Roland Levillain | 3934192 | 2015-10-20 12:48:19 +0100 | [diff] [blame] | 30 | Environment options: | 
| Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 31 | - 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 35 | Look at the source to view more functions. The complete list is: | 
|  | 36 | EOF | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 37 | local T=$(gettop) | 
|  | 38 | local A="" | 
|  | 39 | local i | 
| Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 40 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 41 | A="$A $i" | 
|  | 42 | done | 
|  | 43 | echo $A | 
|  | 44 | } | 
|  | 45 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 46 | # Get all the build variables needed by this script in a single call to the build system. | 
|  | 47 | function build_build_var_cache() | 
|  | 48 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 49 | local T=$(gettop) | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 50 | # Grep out the variable names from the script. | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 51 | 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 Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 53 | # Call the build system to dump the "<val>=<value>" pairs as a shell script. | 
| Steven Moreland | 0540296 | 2018-01-05 12:13:11 -0800 | [diff] [blame] | 54 | build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \ | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 55 | --vars="${cached_vars[*]}" \ | 
|  | 56 | --abs-vars="${cached_abs_vars[*]}" \ | 
| Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 57 | --var-prefix=var_cache_ \ | 
|  | 58 | --abs-var-prefix=abs_var_cache_` | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 59 | local ret=$? | 
|  | 60 | if [ $ret -ne 0 ] | 
|  | 61 | then | 
|  | 62 | unset build_dicts_script | 
|  | 63 | return $ret | 
|  | 64 | fi | 
| Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 65 | # Execute the script to store the "<val>=<value>" pairs as shell variables. | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 66 | eval "$build_dicts_script" | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 67 | ret=$? | 
| Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 68 | unset build_dicts_script | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 69 | if [ $ret -ne 0 ] | 
|  | 70 | then | 
|  | 71 | return $ret | 
|  | 72 | fi | 
|  | 73 | BUILD_VAR_CACHE_READY="true" | 
|  | 74 | } | 
|  | 75 |  | 
| Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 76 | # Delete the build var cache, so that we can still call into the build system | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 77 | # to get build variables not listed in this script. | 
|  | 78 | function destroy_build_var_cache() | 
|  | 79 | { | 
|  | 80 | unset BUILD_VAR_CACHE_READY | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 81 | local v | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 82 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 92 | # Get the value of a build variable as an absolute path. | 
|  | 93 | function get_abs_build_var() | 
|  | 94 | { | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 95 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] | 
|  | 96 | then | 
| Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 97 | eval "echo \"\${abs_var_cache_$1}\"" | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 98 | return | 
|  | 99 | fi | 
|  | 100 |  | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 101 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 102 | if [ ! "$T" ]; then | 
|  | 103 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 104 | return | 
|  | 105 | fi | 
| Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 106 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 107 | } | 
|  | 108 |  | 
|  | 109 | # Get the exact value of a build variable. | 
|  | 110 | function get_build_var() | 
|  | 111 | { | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 112 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] | 
|  | 113 | then | 
| Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 114 | eval "echo \"\${var_cache_$1}\"" | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 115 | return | 
|  | 116 | fi | 
|  | 117 |  | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 118 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 119 | if [ ! "$T" ]; then | 
|  | 120 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 121 | return | 
|  | 122 | fi | 
| Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 123 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 124 | } | 
|  | 125 |  | 
|  | 126 | # check to see if the supplied product is one we can build | 
|  | 127 | function check_product() | 
|  | 128 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 129 | local T=$(gettop) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 130 | if [ ! "$T" ]; then | 
|  | 131 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 132 | return | 
|  | 133 | fi | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 134 | TARGET_PRODUCT=$1 \ | 
|  | 135 | TARGET_BUILD_VARIANT= \ | 
|  | 136 | TARGET_BUILD_TYPE= \ | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 137 | TARGET_BUILD_APPS= \ | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 138 | get_build_var TARGET_DEVICE > /dev/null | 
|  | 139 | # hide successful answers, but allow the errors to show | 
|  | 140 | } | 
|  | 141 |  | 
|  | 142 | VARIANT_CHOICES=(user userdebug eng) | 
|  | 143 |  | 
|  | 144 | # check to see if the supplied variant is valid | 
|  | 145 | function check_variant() | 
|  | 146 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 147 | local v | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 148 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 156 | } | 
|  | 157 |  | 
|  | 158 | function setpaths() | 
|  | 159 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 160 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 161 | 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 Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 177 | # 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 180 | # out with the old | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 181 | if [ -n "$ANDROID_BUILD_PATHS" ] ; then | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 182 | export PATH=${PATH/$ANDROID_BUILD_PATHS/} | 
|  | 183 | fi | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 184 | if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then | 
| Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 185 | export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/} | 
| Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 186 | # strip leading ':', if any | 
|  | 187 | export PATH=${PATH/:%/} | 
| Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 188 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 189 |  | 
|  | 190 | # and in with the new | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 191 | local prebuiltdir=$(getprebuilt) | 
|  | 192 | local gccprebuiltdir=$(get_abs_build_var ANDROID_GCC_PREBUILTS) | 
| Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 193 |  | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 194 | # defined in core/config.mk | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 195 | local targetgccversion=$(get_build_var TARGET_GCC_VERSION) | 
|  | 196 | local targetgccversion2=$(get_build_var 2ND_TARGET_GCC_VERSION) | 
| Ben Cheng | 1526670 | 2012-12-10 16:04:39 -0800 | [diff] [blame] | 197 | export TARGET_GCC_VERSION=$targetgccversion | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 198 |  | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 199 | # The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it. | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 200 | export ANDROID_TOOLCHAIN= | 
|  | 201 | export ANDROID_TOOLCHAIN_2ND_ARCH= | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 202 | local ARCH=$(get_build_var TARGET_ARCH) | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 203 | local toolchaindir toolchaindir2= | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 204 | case $ARCH in | 
| Pavel Chupin | c1a5664 | 2013-08-23 16:49:21 +0400 | [diff] [blame] | 205 | x86) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin | 
| Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 206 | ;; | 
| Pavel Chupin | fd82a49 | 2012-11-26 09:50:07 +0400 | [diff] [blame] | 207 | x86_64) toolchaindir=x86/x86_64-linux-android-$targetgccversion/bin | 
|  | 208 | ;; | 
| Ben Cheng | 8bc4c43 | 2012-11-16 13:29:13 -0800 | [diff] [blame] | 209 | arm) toolchaindir=arm/arm-linux-androideabi-$targetgccversion/bin | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 210 | ;; | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 211 | arm64) toolchaindir=aarch64/aarch64-linux-android-$targetgccversion/bin; | 
| Colin Cross | 03b424a | 2014-05-22 11:57:43 -0700 | [diff] [blame] | 212 | toolchaindir2=arm/arm-linux-androideabi-$targetgccversion2/bin | 
| Ben Cheng | db4fc20 | 2013-10-04 16:02:59 -0700 | [diff] [blame] | 213 | ;; | 
| Duane Sand | 3c4fcd8 | 2014-07-22 14:34:00 -0700 | [diff] [blame] | 214 | mips|mips64) toolchaindir=mips/mips64el-linux-android-$targetgccversion/bin | 
| Serban Constantinescu | 9b68fb2 | 2014-01-14 10:33:53 +0000 | [diff] [blame] | 215 | ;; | 
| David 'Digit' Turner | 2056c25 | 2012-04-17 14:50:47 +0200 | [diff] [blame] | 216 | *) | 
|  | 217 | echo "Can't find toolchain for unknown architecture: $ARCH" | 
|  | 218 | toolchaindir=xxxxxxxxx | 
| Mark D Horn | 7d0ede7 | 2012-03-14 14:20:30 -0700 | [diff] [blame] | 219 | ;; | 
|  | 220 | esac | 
| Jing Yu | f5172c7 | 2012-03-29 20:45:50 -0700 | [diff] [blame] | 221 | if [ -d "$gccprebuiltdir/$toolchaindir" ]; then | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 222 | export ANDROID_TOOLCHAIN=$gccprebuiltdir/$toolchaindir | 
| Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 223 | fi | 
| Raphael | 732936d | 2011-06-22 14:35:32 -0700 | [diff] [blame] | 224 |  | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 225 | if [ "$toolchaindir2" -a -d "$gccprebuiltdir/$toolchaindir2" ]; then | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 226 | export ANDROID_TOOLCHAIN_2ND_ARCH=$gccprebuiltdir/$toolchaindir2 | 
|  | 227 | fi | 
|  | 228 |  | 
| Jeff Vander Stoep | 5f50f05 | 2015-06-12 09:56:39 -0700 | [diff] [blame] | 229 | export ANDROID_DEV_SCRIPTS=$T/development/scripts:$T/prebuilts/devtools/tools:$T/external/selinux/prebuilts/bin | 
| Yueyao Zhu | efc786a | 2017-04-07 14:11:54 -0700 | [diff] [blame] | 230 |  | 
|  | 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) | 0091bae | 2017-10-03 16:31:18 -0400 | [diff] [blame] | 240 | 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' Turner | 94d16e5 | 2014-05-05 16:13:50 +0200 | [diff] [blame] | 246 |  | 
|  | 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 Ferris | 7110f24 | 2014-05-20 13:56:00 -0700 | [diff] [blame] | 261 | ANDROID_BUILD_PATHS=$ANDROID_BUILD_PATHS$ANDROID_EMULATOR_PREBUILTS: | 
| David 'Digit' Turner | 94d16e5 | 2014-05-05 16:13:50 +0200 | [diff] [blame] | 262 | export ANDROID_EMULATOR_PREBUILTS | 
|  | 263 | fi | 
|  | 264 |  | 
| Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 265 | export PATH=$ANDROID_BUILD_PATHS$PATH | 
| Dan Albert | f5caa3d | 2015-09-18 13:23:56 -0700 | [diff] [blame] | 266 | export PYTHONPATH=$T/development/python-packages:$PYTHONPATH | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 267 |  | 
| Colin Cross | e97e693 | 2017-06-30 16:01:45 -0700 | [diff] [blame] | 268 | 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 Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 273 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 274 | unset ANDROID_PRODUCT_OUT | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 275 | export ANDROID_PRODUCT_OUT=$(get_abs_build_var PRODUCT_OUT) | 
|  | 276 | export OUT=$ANDROID_PRODUCT_OUT | 
|  | 277 |  | 
| Jeff Brown | 8fd5cce | 2011-03-24 17:03:06 -0700 | [diff] [blame] | 278 | unset ANDROID_HOST_OUT | 
|  | 279 | export ANDROID_HOST_OUT=$(get_abs_build_var HOST_OUT) | 
|  | 280 |  | 
| Simran Basi | dd050ed | 2017-02-13 13:46:48 -0800 | [diff] [blame] | 281 | 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 Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 287 | # needed for building linux on MacOS | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 288 | # TODO: fix the path | 
|  | 289 | #export HOST_EXTRACFLAGS="-I "$T/system/kernel_headers/host_include | 
|  | 290 | } | 
|  | 291 |  | 
|  | 292 | function printconfig() | 
|  | 293 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 294 | local T=$(gettop) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 295 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 300 | } | 
|  | 301 |  | 
|  | 302 | function set_stuff_for_environment() | 
|  | 303 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 304 | setpaths | 
|  | 305 | set_sequence_number | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 306 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 307 | export ANDROID_BUILD_TOP=$(gettop) | 
| Ben Cheng | aac3f81 | 2013-08-13 14:38:15 -0700 | [diff] [blame] | 308 | # 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 Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 310 | export ASAN_OPTIONS=detect_leaks=0 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | } | 
|  | 312 |  | 
|  | 313 | function set_sequence_number() | 
|  | 314 | { | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 315 | export BUILD_ENV_SEQUENCE_NUMBER=13 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 316 | } | 
|  | 317 |  | 
| Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 318 | # Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not. | 
|  | 319 | function should_add_completion() { | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 320 | local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')" | 
| Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 321 | case :"$ENVSETUP_NO_COMPLETION": in | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 322 | *:"$cmd":*) | 
|  | 323 | return 1 | 
|  | 324 | ;; | 
| Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 325 | esac | 
|  | 326 | return 0 | 
|  | 327 | } | 
|  | 328 |  | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 329 | function addcompletions() | 
|  | 330 | { | 
|  | 331 | local T dir f | 
|  | 332 |  | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 333 | # 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 Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 335 | return | 
|  | 336 | fi | 
|  | 337 |  | 
|  | 338 | # Keep us from trying to run in bash that's too old. | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 339 | if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 340 | return | 
|  | 341 | fi | 
|  | 342 |  | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 343 | 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 Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 348 | # 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 Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 352 | for f in ${completion_files[*]}; do | 
|  | 353 | if [ -f "$f" ] && should_add_completion "$f"; then | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 354 | . $f | 
| Elliott Hughes | ce18dd4 | 2018-04-03 13:49:48 -0700 | [diff] [blame] | 355 | fi | 
|  | 356 | done | 
| Joe Onorato | 002a6c7 | 2016-10-20 16:39:49 -0700 | [diff] [blame] | 357 |  | 
| Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 358 | if should_add_completion bit ; then | 
|  | 359 | complete -C "bit --tab" bit | 
|  | 360 | fi | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 361 | complete -F _lunch lunch | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 362 | } | 
|  | 363 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 364 | function choosetype() | 
|  | 365 | { | 
|  | 366 | echo "Build type choices are:" | 
|  | 367 | echo "     1. release" | 
|  | 368 | echo "     2. debug" | 
|  | 369 | echo | 
|  | 370 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 371 | local DEFAULT_NUM DEFAULT_VALUE | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 372 | DEFAULT_NUM=1 | 
|  | 373 | DEFAULT_VALUE=release | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 374 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 375 | export TARGET_BUILD_TYPE= | 
|  | 376 | local ANSWER | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 377 | while [ -z $TARGET_BUILD_TYPE ] | 
|  | 378 | do | 
|  | 379 | echo -n "Which would you like? ["$DEFAULT_NUM"] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 380 | if [ -z "$1" ] ; then | 
|  | 381 | read ANSWER | 
|  | 382 | else | 
|  | 383 | echo $1 | 
|  | 384 | ANSWER=$1 | 
|  | 385 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 386 | 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 Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 393 | release) | 
|  | 394 | export TARGET_BUILD_TYPE=release | 
|  | 395 | ;; | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 396 | 2) | 
|  | 397 | export TARGET_BUILD_TYPE=debug | 
|  | 398 | ;; | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 399 | debug) | 
|  | 400 | export TARGET_BUILD_TYPE=debug | 
|  | 401 | ;; | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 402 | *) | 
|  | 403 | echo | 
|  | 404 | echo "I didn't understand your response.  Please try again." | 
|  | 405 | echo | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 406 | ;; | 
|  | 407 | esac | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 408 | if [ -n "$1" ] ; then | 
|  | 409 | break | 
|  | 410 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 411 | done | 
|  | 412 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 413 | build_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 414 | set_stuff_for_environment | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 415 | destroy_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 416 | } | 
|  | 417 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 418 | # | 
|  | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 424 | function chooseproduct() | 
|  | 425 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 426 | local default_value | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 427 | if [ "x$TARGET_PRODUCT" != x ] ; then | 
|  | 428 | default_value=$TARGET_PRODUCT | 
|  | 429 | else | 
| Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 430 | default_value=aosp_arm | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 431 | fi | 
|  | 432 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 433 | export TARGET_BUILD_APPS= | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 434 | export TARGET_PRODUCT= | 
|  | 435 | local ANSWER | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 436 | while [ -z "$TARGET_PRODUCT" ] | 
|  | 437 | do | 
| Joe Onorato | 8849aed | 2009-04-29 15:56:47 -0700 | [diff] [blame] | 438 | echo -n "Which product would you like? [$default_value] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 439 | if [ -z "$1" ] ; then | 
|  | 440 | read ANSWER | 
|  | 441 | else | 
|  | 442 | echo $1 | 
|  | 443 | ANSWER=$1 | 
|  | 444 | fi | 
|  | 445 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 446 | if [ -z "$ANSWER" ] ; then | 
|  | 447 | export TARGET_PRODUCT=$default_value | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 448 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 458 | fi | 
|  | 459 | done | 
|  | 460 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 461 | build_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 462 | set_stuff_for_environment | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 463 | destroy_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 464 | } | 
|  | 465 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 466 | function 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 Chen | 0745376 | 2010-07-05 15:53:47 +0800 | [diff] [blame] | 497 | export TARGET_BUILD_VARIANT=${VARIANT_CHOICES[$(($ANSWER-1))]} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 498 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 513 | function choosecombo() | 
|  | 514 | { | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 515 | choosetype $1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 516 |  | 
|  | 517 | echo | 
|  | 518 | echo | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 519 | chooseproduct $2 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 520 |  | 
|  | 521 | echo | 
|  | 522 | echo | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 523 | choosevariant $3 | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 524 |  | 
|  | 525 | echo | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 526 | build_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 527 | set_stuff_for_environment | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 528 | printconfig | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 529 | destroy_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 530 | } | 
|  | 531 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 532 | # Clear this variable.  It will be built up again when the vendorsetup.sh | 
|  | 533 | # files are included at the end of this file. | 
|  | 534 | unset LUNCH_MENU_CHOICES | 
|  | 535 | function 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 547 | function print_lunch_menu() | 
|  | 548 | { | 
|  | 549 | local uname=$(uname) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 550 | echo | 
|  | 551 | echo "You're building on" $uname | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 552 | echo | 
|  | 553 | echo "Lunch menu... pick a combo:" | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 554 |  | 
|  | 555 | local i=1 | 
|  | 556 | local choice | 
| Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 557 | for choice in $(TARGET_BUILD_APPS= LUNCH_MENU_CHOICES="${LUNCH_MENU_CHOICES[@]}" get_build_var COMMON_LUNCH_CHOICES) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 558 | do | 
|  | 559 | echo "     $i. $choice" | 
|  | 560 | i=$(($i+1)) | 
|  | 561 | done | 
|  | 562 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 563 | echo | 
|  | 564 | } | 
|  | 565 |  | 
|  | 566 | function lunch() | 
|  | 567 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 568 | local answer | 
|  | 569 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 570 | if [ "$1" ] ; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 571 | answer=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 572 | else | 
|  | 573 | print_lunch_menu | 
| Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame] | 574 | echo -n "Which would you like? [aosp_arm-eng] " | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 575 | read answer | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 576 | fi | 
|  | 577 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 578 | local selection= | 
|  | 579 |  | 
|  | 580 | if [ -z "$answer" ] | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 581 | then | 
| Jean-Baptiste Queru | 324c123 | 2013-03-22 15:53:54 -0700 | [diff] [blame] | 582 | selection=aosp_arm-eng | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 583 | elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$") | 
|  | 584 | then | 
| Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 585 | 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 Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 587 | then | 
| Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 588 | selection=${choices[$(($answer-1))]} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 589 | fi | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 590 | else | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 591 | selection=$answer | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 592 | fi | 
|  | 593 |  | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 594 | export TARGET_BUILD_APPS= | 
|  | 595 |  | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 596 | 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 Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 605 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 606 |  | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 607 | if [ -z "$product" ] | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 608 | then | 
|  | 609 | echo | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 610 | echo "Invalid lunch combo: $selection" | 
| Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 611 | return 1 | 
|  | 612 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 613 |  | 
| Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 614 | 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 Cross | b105e36 | 2017-05-01 14:21:28 -0700 | [diff] [blame] | 625 | 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 Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 630 | export TARGET_BUILD_TYPE=release | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 631 |  | 
|  | 632 | echo | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 633 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 634 | set_stuff_for_environment | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 635 | printconfig | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 636 | destroy_build_var_cache | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 637 | } | 
|  | 638 |  | 
| Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 639 | unset COMMON_LUNCH_CHOICES_CACHE | 
| Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 640 | # Tab completion for lunch. | 
|  | 641 | function _lunch() | 
|  | 642 | { | 
|  | 643 | local cur prev opts | 
|  | 644 | COMPREPLY=() | 
|  | 645 | cur="${COMP_WORDS[COMP_CWORD]}" | 
|  | 646 | prev="${COMP_WORDS[COMP_CWORD-1]}" | 
|  | 647 |  | 
| Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 648 | 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 Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 653 | return 0 | 
|  | 654 | } | 
| Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 655 |  | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 656 | # Configures the build to build unbundled apps. | 
| Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 657 | # Run tapas with one or more app names (from LOCAL_PACKAGE_NAME) | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 658 | function tapas() | 
|  | 659 | { | 
| Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 660 | local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)" | 
| Dan Willemsen | dd3a273 | 2018-01-08 15:26:16 -0800 | [diff] [blame] | 661 | local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|mips|arm64|x86_64|mips64)$' | xargs)" | 
| Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 662 | local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)" | 
| Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 663 | local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)" | 
| Dan Willemsen | dd3a273 | 2018-01-08 15:26:16 -0800 | [diff] [blame] | 664 | 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 Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 665 |  | 
| Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 666 | if [ "$showHelp" != "" ]; then | 
|  | 667 | $(gettop)/build/make/tapasHelp.sh | 
|  | 668 | return | 
|  | 669 | fi | 
|  | 670 |  | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 671 | if [ $(echo $arch | wc -w) -gt 1 ]; then | 
|  | 672 | echo "tapas: Error: Multiple build archs supplied: $arch" | 
|  | 673 | return | 
|  | 674 | fi | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 675 | if [ $(echo $variant | wc -w) -gt 1 ]; then | 
|  | 676 | echo "tapas: Error: Multiple build variants supplied: $variant" | 
|  | 677 | return | 
|  | 678 | fi | 
| Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 679 | if [ $(echo $density | wc -w) -gt 1 ]; then | 
|  | 680 | echo "tapas: Error: Multiple densities supplied: $density" | 
|  | 681 | return | 
|  | 682 | fi | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 683 |  | 
| Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 684 | local product=aosp_arm | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 685 | case $arch in | 
| Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 686 | x86)    product=aosp_x86;; | 
|  | 687 | mips)   product=aosp_mips;; | 
| Ying Wang | b541ab6 | 2014-05-29 17:57:40 -0700 | [diff] [blame] | 688 | arm64)  product=aosp_arm64;; | 
|  | 689 | x86_64) product=aosp_x86_64;; | 
|  | 690 | mips64)  product=aosp_mips64;; | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 691 | esac | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 692 | if [ -z "$variant" ]; then | 
|  | 693 | variant=eng | 
|  | 694 | fi | 
| Ying Wang | c048c9b | 2010-06-24 15:08:33 -0700 | [diff] [blame] | 695 | if [ -z "$apps" ]; then | 
|  | 696 | apps=all | 
|  | 697 | fi | 
| Justin Morey | 29d225c | 2014-11-04 13:35:51 -0600 | [diff] [blame] | 698 | if [ -z "$density" ]; then | 
|  | 699 | density=alldpi | 
|  | 700 | fi | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 701 |  | 
| Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 702 | export TARGET_PRODUCT=$product | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 703 | export TARGET_BUILD_VARIANT=$variant | 
| Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 704 | export TARGET_BUILD_DENSITY=$density | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 705 | export TARGET_BUILD_TYPE=release | 
|  | 706 | export TARGET_BUILD_APPS=$apps | 
|  | 707 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 708 | build_build_var_cache | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 709 | set_stuff_for_environment | 
|  | 710 | printconfig | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 711 | destroy_build_var_cache | 
| Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 712 | } | 
|  | 713 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 714 | function gettop | 
|  | 715 | { | 
| Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 716 | local TOPFILE=build/make/core/envsetup.mk | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 717 | if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then | 
| Brian Carlstrom | a5c4f17 | 2014-09-12 00:33:25 -0700 | [diff] [blame] | 718 | # The following circumlocution ensures we remove symlinks from TOP. | 
|  | 719 | (cd $TOP; PWD= /bin/pwd) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 720 | else | 
|  | 721 | if [ -f $TOPFILE ] ; then | 
| Dan Bornstein | d0b274d | 2009-11-24 15:48:50 -0800 | [diff] [blame] | 722 | # 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 726 | else | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 727 | local HERE=$PWD | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 728 | local T= | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 729 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 730 | \cd .. | 
| synergy | b112a40 | 2013-07-05 19:47:47 -0700 | [diff] [blame] | 731 | T=`PWD= /bin/pwd -P` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 732 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 733 | \cd $HERE | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 734 | if [ -f "$T/$TOPFILE" ]; then | 
|  | 735 | echo $T | 
|  | 736 | fi | 
|  | 737 | fi | 
|  | 738 | fi | 
|  | 739 | } | 
|  | 740 |  | 
|  | 741 | function m() | 
|  | 742 | { | 
| Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 743 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 744 | if [ "$T" ]; then | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 745 | _wrap_build $T/build/soong/soong_ui.bash --make-mode $@ | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 746 | else | 
|  | 747 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 748 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 749 | fi | 
|  | 750 | } | 
|  | 751 |  | 
|  | 752 | function findmakefile() | 
|  | 753 | { | 
| Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 754 | local TOPFILE=build/make/core/envsetup.mk | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 755 | local HERE=$PWD | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 756 | local T= | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 757 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
| Ying Wang | 11b15b1 | 2012-10-11 15:05:07 -0700 | [diff] [blame] | 758 | T=`PWD= /bin/pwd` | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 759 | if [ -f "$T/Android.mk" -o -f "$T/Android.bp" ]; then | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 760 | echo $T/Android.mk | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 761 | \cd $HERE | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 762 | return | 
|  | 763 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 764 | \cd .. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 765 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 766 | \cd $HERE | 
| Steven Moreland | 3b99ecf | 2018-06-13 15:31:59 -0700 | [diff] [blame] | 767 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 768 | } | 
|  | 769 |  | 
|  | 770 | function mm() | 
|  | 771 | { | 
| Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 772 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 773 | # If we're sitting in the root of the build tree, just do a | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 774 | # normal build. | 
|  | 775 | if [ -f build/soong/soong_ui.bash ]; then | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 776 | _wrap_build $T/build/soong/soong_ui.bash --make-mode $@ | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 777 | else | 
|  | 778 | # Find the closest Android.mk file. | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 779 | local M=$(findmakefile) | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 780 | local MODULES= | 
|  | 781 | local GET_INSTALL_PATH= | 
|  | 782 | local ARGS= | 
| Robert Greenwalt | 3c794d7 | 2009-07-15 15:07:44 -0700 | [diff] [blame] | 783 | # Remove the path to top as the makefilepath needs to be relative | 
|  | 784 | local M=`echo $M|sed 's:'$T'/::'` | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 785 | if [ ! "$T" ]; then | 
|  | 786 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 787 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 788 | elif [ ! "$M" ]; then | 
|  | 789 | echo "Couldn't locate a makefile from the current directory." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 790 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 791 | else | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 792 | local ARG | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 793 | 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 Willemsen | 53e3899 | 2016-08-11 17:20:33 -0700 | [diff] [blame] | 800 | ARGS=GET-INSTALL-PATH-IN-$(dirname ${M}) | 
|  | 801 | ARGS=${ARGS//\//-} | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 802 | else | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 803 | MODULES=MODULES-IN-$(dirname ${M}) | 
|  | 804 | # Convert "/" to "-". | 
|  | 805 | MODULES=${MODULES//\//-} | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 806 | ARGS=$@ | 
|  | 807 | fi | 
| Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 808 | if [ "1" = "${WITH_TIDY_ONLY}" -o "true" = "${WITH_TIDY_ONLY}" ]; then | 
|  | 809 | MODULES=tidy_only | 
|  | 810 | fi | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 811 | ONE_SHOT_MAKEFILE=$M _wrap_build $T/build/soong/soong_ui.bash --make-mode $MODULES $ARGS | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 812 | fi | 
|  | 813 | fi | 
|  | 814 | } | 
|  | 815 |  | 
|  | 816 | function mmm() | 
|  | 817 | { | 
| Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 818 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 819 | if [ "$T" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 820 | local MAKEFILE= | 
| Alon Albert | 68895a9 | 2011-11-30 12:40:19 -0800 | [diff] [blame] | 821 | local MODULES= | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 822 | local MODULES_IN_PATHS= | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 823 | local ARGS= | 
|  | 824 | local DIR TO_CHOP | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 825 | local DIR_MODULES | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 826 | local GET_INSTALL_PATH= | 
| Dan Willemsen | 53e3899 | 2016-08-11 17:20:33 -0700 | [diff] [blame] | 827 | local GET_INSTALL_PATHS= | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 828 | 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 Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 831 | DIR_MODULES=`echo $DIR | sed -n -e 's/.*:\(.*$\)/\1/p' | sed 's/,/ /'` | 
| Alon Albert | 68895a9 | 2011-11-30 12:40:19 -0800 | [diff] [blame] | 832 | DIR=`echo $DIR | sed -e 's/:.*//' -e 's:/$::'` | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 833 | # 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 Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 837 | 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 Cross | 4bfae06 | 2016-08-31 17:22:36 -0700 | [diff] [blame] | 840 | local MDIR=`echo $START | cut -c${TO_CHOP}-` | 
|  | 841 | if [ "$MDIR" = "" ] ; then | 
|  | 842 | MDIR=$DIR | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 843 | else | 
| Colin Cross | 4bfae06 | 2016-08-31 17:22:36 -0700 | [diff] [blame] | 844 | MDIR=$MDIR/$DIR | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 845 | fi | 
| Colin Cross | 4bfae06 | 2016-08-31 17:22:36 -0700 | [diff] [blame] | 846 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 854 | else | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 855 | case $DIR in | 
| Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 856 | showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";; | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 857 | GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;; | 
| Abhinav1997 | a72a6e7 | 2015-10-18 20:25:48 +0200 | [diff] [blame] | 858 | *) 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 Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 864 | esac | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 865 | fi | 
|  | 866 | done | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 867 | if [ -n "$GET_INSTALL_PATH" ]; then | 
| Dan Willemsen | 53e3899 | 2016-08-11 17:20:33 -0700 | [diff] [blame] | 868 | ARGS=${GET_INSTALL_PATHS//\//-} | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 869 | MODULES= | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 870 | MODULES_IN_PATHS= | 
| Ying Wang | a7deb08 | 2013-08-16 13:24:47 -0700 | [diff] [blame] | 871 | fi | 
| Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 872 | if [ "1" = "${WITH_TIDY_ONLY}" -o "true" = "${WITH_TIDY_ONLY}" ]; then | 
|  | 873 | MODULES=tidy_only | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 874 | MODULES_IN_PATHS= | 
| Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 875 | fi | 
| Colin Cross | 8642525 | 2016-05-26 15:32:15 -0700 | [diff] [blame] | 876 | # Convert "/" to "-". | 
|  | 877 | MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-} | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 878 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 879 | else | 
|  | 880 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 881 | return 1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 882 | fi | 
|  | 883 | } | 
|  | 884 |  | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 885 | function mma() | 
|  | 886 | { | 
| Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 887 | local T=$(gettop) | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 888 | if [ -f build/soong/soong_ui.bash ]; then | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 889 | _wrap_build $T/build/soong/soong_ui.bash --make-mode $@ | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 890 | else | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 891 | if [ ! "$T" ]; then | 
|  | 892 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 893 | return 1 | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 894 | fi | 
| Steven Moreland | 3b99ecf | 2018-06-13 15:31:59 -0700 | [diff] [blame] | 895 | local M=$(findmakefile || echo $(realpath $PWD)/Android.mk) | 
| Colin Cross | 127fcea | 2016-09-01 15:30:18 -0700 | [diff] [blame] | 896 | # 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 Wang | 61cd884 | 2015-09-24 16:19:19 -0700 | [diff] [blame] | 899 | # Convert "/" to "-". | 
|  | 900 | MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-} | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 901 | _wrap_build $T/build/soong/soong_ui.bash --make-mode $@ $MODULES_IN_PATHS | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 902 | fi | 
|  | 903 | } | 
|  | 904 |  | 
|  | 905 | function mmma() | 
|  | 906 | { | 
| Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 907 | local T=$(gettop) | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 908 | 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 Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 918 | local MODULES_IN_PATHS= | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 919 | local ARGS= | 
|  | 920 | for DIR in $DIRS ; do | 
|  | 921 | if [ -d $DIR ]; then | 
| Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 922 | # 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 Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 927 | fi | 
| Ying Wang | 61cd884 | 2015-09-24 16:19:19 -0700 | [diff] [blame] | 928 | MODULES_IN_PATHS="$MODULES_IN_PATHS MODULES-IN-$DIR" | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 929 | else | 
|  | 930 | case $DIR in | 
| Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 931 | showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";; | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 932 | *) echo "Couldn't find directory $DIR"; return 1;; | 
|  | 933 | esac | 
|  | 934 | fi | 
|  | 935 | done | 
| Ying Wang | 61cd884 | 2015-09-24 16:19:19 -0700 | [diff] [blame] | 936 | # Convert "/" to "-". | 
|  | 937 | MODULES_IN_PATHS=${MODULES_IN_PATHS//\//-} | 
| Chih-Hung Hsieh | 7ed0db8 | 2018-02-15 11:20:04 -0800 | [diff] [blame] | 938 | _wrap_build $T/build/soong/soong_ui.bash --make-mode $DASH_ARGS $ARGS $MODULES_IN_PATHS | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 939 | else | 
|  | 940 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
| Ying Wang | 0c1374c | 2015-04-01 10:13:02 -0700 | [diff] [blame] | 941 | return 1 | 
| Ying Wang | b607f7b | 2013-02-08 18:01:04 -0800 | [diff] [blame] | 942 | fi | 
|  | 943 | } | 
|  | 944 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 945 | function croot() | 
|  | 946 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 947 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 948 | if [ "$T" ]; then | 
| Marie Janssen | 32ec50a | 2016-04-21 16:53:39 -0700 | [diff] [blame] | 949 | if [ "$1" ]; then | 
|  | 950 | \cd $(gettop)/$1 | 
|  | 951 | else | 
|  | 952 | \cd $(gettop) | 
|  | 953 | fi | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 954 | else | 
|  | 955 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 956 | fi | 
|  | 957 | } | 
|  | 958 |  | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 959 | function cproj() | 
|  | 960 | { | 
| Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 961 | local TOPFILE=build/make/core/envsetup.mk | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 962 | local HERE=$PWD | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 963 | local T= | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 964 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do | 
|  | 965 | T=$PWD | 
|  | 966 | if [ -f "$T/Android.mk" ]; then | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 967 | \cd $T | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 968 | return | 
|  | 969 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 970 | \cd .. | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 971 | done | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 972 | \cd $HERE | 
| Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 973 | echo "can't find Android.mk" | 
|  | 974 | } | 
|  | 975 |  | 
| Daniel Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 976 | # simplified version of ps; output in the form | 
|  | 977 | # <pid> <procname> | 
|  | 978 | function 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 Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 986 | echo "usage: qpid [[--exact] <process name|pid>" | 
|  | 987 | return 255 | 
|  | 988 | fi | 
| Daniel Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 989 |  | 
|  | 990 | local EXE="$1" | 
|  | 991 | if [ "$EXE" ] ; then | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 992 | 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 Sandler | 47e0a88 | 2013-07-30 13:23:52 -0400 | [diff] [blame] | 998 | } | 
|  | 999 |  | 
| Iliyan Malchev | e675cfb | 2014-11-03 17:04:47 -0800 | [diff] [blame] | 1000 | # coredump_setup - enable core dumps globally for any process | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1001 | #                  that has the core-file-size limit set correctly | 
|  | 1002 | # | 
| Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 1003 | # NOTE: You must call also coredump_enable for a specific process | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1004 | #       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 Malchev | e675cfb | 2014-11-03 17:04:47 -0800 | [diff] [blame] | 1007 | function coredump_setup() | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1008 | { | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1009 | echo "Getting root..."; | 
|  | 1010 | adb root; | 
|  | 1011 | adb wait-for-device; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1012 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1013 | 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 Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1020 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1021 | echo "Granting SELinux permission to dump in /cores..."; | 
|  | 1022 | adb shell restorecon -R /cores; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1023 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1024 | echo "Set core pattern."; | 
|  | 1025 | adb shell 'echo /cores/core.%p > /proc/sys/kernel/core_pattern'; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1026 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1027 | echo "Done." | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1028 | } | 
|  | 1029 |  | 
| Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 1030 | # coredump_enable - enable core dumps for the specified process | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1031 | # $1 = PID of process (e.g., $(pid mediaserver)) | 
|  | 1032 | # | 
| Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 1033 | # NOTE: coredump_setup must have been called as well for a core | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1034 | #       dump to actually be generated. | 
|  | 1035 |  | 
| Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 1036 | function coredump_enable() | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1037 | { | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1038 | 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 Hughes | 910a355 | 2016-03-07 13:53:53 -0800 | [diff] [blame] | 1044 | adb shell /system/bin/ulimit -p $PID -c unlimited | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1045 | } | 
|  | 1046 |  | 
|  | 1047 | # core - send SIGV and pull the core for process | 
|  | 1048 | # $1 = PID of process (e.g., $(pid mediaserver)) | 
|  | 1049 | # | 
| Iliyan Malchev | af5de97 | 2014-11-04 20:57:37 -0800 | [diff] [blame] | 1050 | # NOTE: coredump_setup must be called once per boot for core dumps to be | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1051 | #       enabled globally. | 
|  | 1052 |  | 
|  | 1053 | function core() | 
|  | 1054 | { | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1055 | local PID=$1; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1056 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1057 | if [ -z "$PID" ]; then | 
|  | 1058 | printf "Expecting a PID!\n"; | 
|  | 1059 | return; | 
|  | 1060 | fi; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1061 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1062 | local CORENAME=core.$PID; | 
|  | 1063 | local COREPATH=/cores/$CORENAME; | 
|  | 1064 | local SIG=SEGV; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1065 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1066 | coredump_enable $1; | 
| Iliyan Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1067 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1068 | 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 Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1074 |  | 
| Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 1075 | 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 Malchev | 248f4d5 | 2014-10-28 18:00:42 -0700 | [diff] [blame] | 1077 | } | 
|  | 1078 |  | 
| Christopher Tate | 744ee80 | 2009-11-12 15:33:08 -0800 | [diff] [blame] | 1079 | # systemstack - dump the current stack trace of all threads in the system process | 
|  | 1080 | # to the usual ANR traces file | 
|  | 1081 | function systemstack() | 
|  | 1082 | { | 
| Jeff Sharkey | f582437 | 2013-02-19 17:00:46 -0800 | [diff] [blame] | 1083 | stacks system_server | 
|  | 1084 | } | 
|  | 1085 |  | 
| Michael Wright | aeed721 | 2014-06-19 19:58:12 -0700 | [diff] [blame] | 1086 | # Read the ELF header from /proc/$PID/exe to determine if the process is | 
|  | 1087 | # 64-bit. | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 1088 | function is64bit() | 
|  | 1089 | { | 
|  | 1090 | local PID="$1" | 
|  | 1091 | if [ "$PID" ] ; then | 
| Michael Wright | aeed721 | 2014-06-19 19:58:12 -0700 | [diff] [blame] | 1092 | if [[ "$(adb shell cat /proc/$PID/exe | xxd -l 1 -s 4 -ps)" -eq "02" ]] ; then | 
| Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 1093 | echo "64" | 
|  | 1094 | else | 
|  | 1095 | echo "" | 
|  | 1096 | fi | 
|  | 1097 | else | 
|  | 1098 | echo "" | 
|  | 1099 | fi | 
|  | 1100 | } | 
|  | 1101 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1102 | case `uname -s` in | 
|  | 1103 | Darwin) | 
|  | 1104 | function sgrep() | 
|  | 1105 | { | 
| Keun Soo Yim | 3d48475 | 2016-02-19 11:06:58 -0800 | [diff] [blame] | 1106 | 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 Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1107 | -exec grep --color -n "$@" {} + | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1108 | } | 
|  | 1109 |  | 
|  | 1110 | ;; | 
|  | 1111 | *) | 
|  | 1112 | function sgrep() | 
|  | 1113 | { | 
| Keun Soo Yim | 3d48475 | 2016-02-19 11:06:58 -0800 | [diff] [blame] | 1114 | find . -name .repo -prune -o -name .git -prune -o  -type f -iregex '.*\.\(c\|h\|cc\|cpp\|S\|java\|xml\|sh\|mk\|aidl\|vts\)' \ | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1115 | -exec grep --color -n "$@" {} + | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1116 | } | 
|  | 1117 | ;; | 
|  | 1118 | esac | 
|  | 1119 |  | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 1120 | function gettargetarch | 
|  | 1121 | { | 
|  | 1122 | get_build_var TARGET_ARCH | 
|  | 1123 | } | 
|  | 1124 |  | 
| Jon Boekenoogen | cbca56f | 2014-04-07 10:57:38 -0700 | [diff] [blame] | 1125 | function ggrep() | 
|  | 1126 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1127 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \ | 
|  | 1128 | -exec grep --color -n "$@" {} + | 
| Jon Boekenoogen | cbca56f | 2014-04-07 10:57:38 -0700 | [diff] [blame] | 1129 | } | 
|  | 1130 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1131 | function jgrep() | 
|  | 1132 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1133 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1135 | } | 
|  | 1136 |  | 
|  | 1137 | function cgrep() | 
|  | 1138 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1139 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1141 | } | 
|  | 1142 |  | 
|  | 1143 | function resgrep() | 
|  | 1144 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1145 | local dir | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1146 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1149 | } | 
|  | 1150 |  | 
| Jeff Sharkey | 50b61e9 | 2013-03-08 10:20:47 -0800 | [diff] [blame] | 1151 | function mangrep() | 
|  | 1152 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1153 | find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidManifest.xml' \ | 
|  | 1154 | -exec grep --color -n "$@" {} + | 
| Jeff Sharkey | 50b61e9 | 2013-03-08 10:20:47 -0800 | [diff] [blame] | 1155 | } | 
|  | 1156 |  | 
| Alex Klyubin | ba5fc8e | 2013-05-06 14:11:48 -0700 | [diff] [blame] | 1157 | function sepgrep() | 
|  | 1158 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1159 | 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 Klyubin | ba5fc8e | 2013-05-06 14:11:48 -0700 | [diff] [blame] | 1161 | } | 
|  | 1162 |  | 
| Jeff Sharkey | ea0068a | 2015-02-26 14:13:46 -0800 | [diff] [blame] | 1163 | function rcgrep() | 
|  | 1164 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1165 | find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \ | 
|  | 1166 | -exec grep --color -n "$@" {} + | 
| Jeff Sharkey | ea0068a | 2015-02-26 14:13:46 -0800 | [diff] [blame] | 1167 | } | 
|  | 1168 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1169 | case `uname -s` in | 
|  | 1170 | Darwin) | 
|  | 1171 | function mgrep() | 
|  | 1172 | { | 
| David Gross | d1d6fc5 | 2017-05-10 10:49:44 -0700 | [diff] [blame] | 1173 | 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 Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1174 | -exec grep --color -n "$@" {} + | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1175 | } | 
|  | 1176 |  | 
|  | 1177 | function treegrep() | 
|  | 1178 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1179 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1181 | } | 
|  | 1182 |  | 
|  | 1183 | ;; | 
|  | 1184 | *) | 
|  | 1185 | function mgrep() | 
|  | 1186 | { | 
| David Gross | d1d6fc5 | 2017-05-10 10:49:44 -0700 | [diff] [blame] | 1187 | 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 Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1188 | -exec grep --color -n "$@" {} + | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1189 | } | 
|  | 1190 |  | 
|  | 1191 | function treegrep() | 
|  | 1192 | { | 
| Mike Frysinger | 5e47973 | 2015-09-22 18:13:48 -0400 | [diff] [blame] | 1193 | 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1195 | } | 
|  | 1196 |  | 
|  | 1197 | ;; | 
|  | 1198 | esac | 
|  | 1199 |  | 
|  | 1200 | function getprebuilt | 
|  | 1201 | { | 
|  | 1202 | get_abs_build_var ANDROID_PREBUILTS | 
|  | 1203 | } | 
|  | 1204 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1205 | function tracedmdump() | 
|  | 1206 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1207 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1208 | if [ ! "$T" ]; then | 
|  | 1209 | echo "Couldn't locate the top of the tree.  Try setting TOP." | 
|  | 1210 | return | 
|  | 1211 | fi | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1212 | local prebuiltdir=$(getprebuilt) | 
| Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 1213 | local arch=$(gettargetarch) | 
|  | 1214 | local KERNEL=$T/prebuilts/qemu-kernel/$arch/vmlinux-qemu | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1215 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1216 | local TRACE=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1217 | if [ ! "$TRACE" ] ; then | 
|  | 1218 | echo "usage:  tracedmdump  tracename" | 
|  | 1219 | return | 
|  | 1220 | fi | 
|  | 1221 |  | 
| Jack Veenstra | 60116fc | 2009-04-09 18:12:34 -0700 | [diff] [blame] | 1222 | if [ ! -r "$KERNEL" ] ; then | 
|  | 1223 | echo "Error: cannot find kernel: '$KERNEL'" | 
|  | 1224 | return | 
|  | 1225 | fi | 
|  | 1226 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1227 | local BASETRACE=$(basename $TRACE) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1228 | 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 Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1252 | # communicate with a running device or emulator, set up necessary state, | 
|  | 1253 | # and run the hat command. | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1254 | function runhat() | 
|  | 1255 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1256 | # process standard adb options | 
|  | 1257 | local adbTarget="" | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1258 | if [ "$1" = "-d" -o "$1" = "-e" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1259 | adbTarget=$1 | 
|  | 1260 | shift 1 | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1261 | elif [ "$1" = "-s" ]; then | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1262 | adbTarget="$1 $2" | 
|  | 1263 | shift 2 | 
|  | 1264 | fi | 
|  | 1265 | local adbOptions=${adbTarget} | 
| Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1266 | #echo adbOptions = ${adbOptions} | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1267 |  | 
|  | 1268 | # runhat options | 
|  | 1269 | local targetPid=$1 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1270 |  | 
|  | 1271 | if [ "$targetPid" = "" ]; then | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1272 | echo "Usage: runhat [ -d | -e | -s serial ] target-pid" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1273 | return | 
|  | 1274 | fi | 
|  | 1275 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1276 | # 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 McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1282 | # issue "am" command to cause the hprof dump | 
| Nick Kralevich | 9948b1e | 2014-07-18 15:45:38 -0700 | [diff] [blame] | 1283 | local devFile=/data/local/tmp/hprof-$targetPid | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1284 | echo "Poking $targetPid and waiting for data..." | 
| Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 1285 | echo "Storing data at $devFile" | 
| Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 1286 | adb ${adbOptions} shell am dumpheap $targetPid $devFile | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1287 | echo "Press enter when logcat shows \"hprof: heap dump completed\"" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1288 | echo -n "> " | 
|  | 1289 | read | 
|  | 1290 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1291 | local localFile=/tmp/$$-hprof | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1292 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1293 | echo "Retrieving file $devFile..." | 
|  | 1294 | adb ${adbOptions} pull $devFile $localFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1295 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1296 | adb ${adbOptions} shell rm $devFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1297 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1298 | echo "Running hat on $localFile" | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1299 | echo "View the output by pointing your browser at http://localhost:7000/" | 
|  | 1300 | echo "" | 
| Dianne Hackborn | 6e4e1bb | 2011-11-10 15:19:51 -0800 | [diff] [blame] | 1301 | hat -JXmx512m $localFile | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1302 | } | 
|  | 1303 |  | 
|  | 1304 | function getbugreports() | 
|  | 1305 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1306 | local reports=(`adb shell ls /sdcard/bugreports | tr -d '\r'`) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1307 |  | 
|  | 1308 | if [ ! "$reports" ]; then | 
|  | 1309 | echo "Could not locate any bugreports." | 
|  | 1310 | return | 
|  | 1311 | fi | 
|  | 1312 |  | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1313 | local report | 
|  | 1314 | for report in ${reports[@]} | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1315 | do | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1316 | echo "/sdcard/bugreports/${report}" | 
|  | 1317 | adb pull /sdcard/bugreports/${report} ${report} | 
|  | 1318 | gunzip ${report} | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1319 | done | 
|  | 1320 | } | 
|  | 1321 |  | 
| Victoria Lease | 1b296b4 | 2012-08-21 15:44:06 -0700 | [diff] [blame] | 1322 | function getsdcardpath() | 
|  | 1323 | { | 
|  | 1324 | adb ${adbOptions} shell echo -n \$\{EXTERNAL_STORAGE\} | 
|  | 1325 | } | 
|  | 1326 |  | 
|  | 1327 | function getscreenshotpath() | 
|  | 1328 | { | 
|  | 1329 | echo "$(getsdcardpath)/Pictures/Screenshots" | 
|  | 1330 | } | 
|  | 1331 |  | 
|  | 1332 | function 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 Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1344 | function startviewserver() | 
|  | 1345 | { | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1346 | local port=4939 | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1347 | if [ $# -gt 0 ]; then | 
|  | 1348 | port=$1 | 
|  | 1349 | fi | 
|  | 1350 | adb shell service call window 1 i32 $port | 
|  | 1351 | } | 
|  | 1352 |  | 
|  | 1353 | function stopviewserver() | 
|  | 1354 | { | 
|  | 1355 | adb shell service call window 2 | 
|  | 1356 | } | 
|  | 1357 |  | 
|  | 1358 | function isviewserverstarted() | 
|  | 1359 | { | 
|  | 1360 | adb shell service call window 3 | 
|  | 1361 | } | 
|  | 1362 |  | 
| Romain Guy | b84049a | 2010-10-04 16:56:11 -0700 | [diff] [blame] | 1363 | function key_home() | 
|  | 1364 | { | 
|  | 1365 | adb shell input keyevent 3 | 
|  | 1366 | } | 
|  | 1367 |  | 
|  | 1368 | function key_back() | 
|  | 1369 | { | 
|  | 1370 | adb shell input keyevent 4 | 
|  | 1371 | } | 
|  | 1372 |  | 
|  | 1373 | function key_menu() | 
|  | 1374 | { | 
|  | 1375 | adb shell input keyevent 82 | 
|  | 1376 | } | 
|  | 1377 |  | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1378 | function 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 Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1384 | local T=$(gettop) | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1385 | if [ ! "$T" ]; then | 
|  | 1386 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 1387 | return | 
|  | 1388 | fi | 
|  | 1389 |  | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1390 | (\cd "$T" && mmm tests/SmokeTest) && | 
| The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1391 | 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 Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1398 | # simple shortcut to the runtest command | 
|  | 1399 | function runtest() | 
|  | 1400 | { | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1401 | local T=$(gettop) | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1402 | if [ ! "$T" ]; then | 
|  | 1403 | echo "Couldn't locate the top of the tree.  Try setting TOP." >&2 | 
|  | 1404 | return | 
|  | 1405 | fi | 
| Brett Chabot | 3fb149d | 2009-10-21 20:05:26 -0700 | [diff] [blame] | 1406 | ("$T"/development/testrunner/runtest.py $@) | 
| Brett Chabot | 762748c | 2009-03-27 10:25:11 -0700 | [diff] [blame] | 1407 | } | 
|  | 1408 |  | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1409 | function godir () { | 
|  | 1410 | if [[ -z "$1" ]]; then | 
|  | 1411 | echo "Usage: godir <regex>" | 
|  | 1412 | return | 
|  | 1413 | fi | 
| Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 1414 | local T=$(gettop) | 
|  | 1415 | local FILELIST | 
| Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1416 | 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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1423 | echo -n "Creating index..." | 
| Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1424 | (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1425 | echo " Done" | 
|  | 1426 | echo "" | 
|  | 1427 | fi | 
|  | 1428 | local lines | 
| Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 1429 | lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq)) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1430 | 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 Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 1442 | index=$(($index + 1)) | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1443 | 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 Chen | 0745376 | 2010-07-05 15:53:47 +0800 | [diff] [blame] | 1452 | pathname=${lines[$(($choice-1))]} | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1453 | done | 
|  | 1454 | else | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1455 | pathname=${lines[0]} | 
|  | 1456 | fi | 
| Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 1457 | \cd $T/$pathname | 
| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1458 | } | 
|  | 1459 |  | 
| Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1460 | # Print colored exit condition | 
|  | 1461 | function pez { | 
| Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1462 | "$@" | 
|  | 1463 | local retval=$? | 
|  | 1464 | if [ $retval -ne 0 ] | 
|  | 1465 | then | 
| Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1466 | echo $'\E'"[0;31mFAILURE\e[00m" | 
| Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1467 | else | 
| Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1468 | echo $'\E'"[0;32mSUCCESS\e[00m" | 
| Michael Wright | eb73384 | 2013-03-08 17:34:02 -0800 | [diff] [blame] | 1469 | fi | 
|  | 1470 | return $retval | 
| Alex Ray | f0d08eb | 2013-03-08 15:15:06 -0800 | [diff] [blame] | 1471 | } | 
|  | 1472 |  | 
| Ying Wang | ed21d4c | 2014-08-24 22:14:19 -0700 | [diff] [blame] | 1473 | function get_make_command() | 
|  | 1474 | { | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1475 | # 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 Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1477 | # 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 Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1484 | echo build/soong/soong_ui.bash --make-mode | 
|  | 1485 | else | 
|  | 1486 | echo command make | 
|  | 1487 | fi | 
| Ying Wang | ed21d4c | 2014-08-24 22:14:19 -0700 | [diff] [blame] | 1488 | } | 
|  | 1489 |  | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1490 | function _wrap_build() | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1491 | { | 
|  | 1492 | local start_time=$(date +"%s") | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1493 | "$@" | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1494 | 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 Hackmann | d95c7f7 | 2014-06-23 14:05:06 -0700 | [diff] [blame] | 1500 | local ncolors=$(tput colors 2>/dev/null) | 
|  | 1501 | if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then | 
| Jacky Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1502 | color_failed=$'\E'"[0;31m" | 
|  | 1503 | color_success=$'\E'"[0;32m" | 
|  | 1504 | color_reset=$'\E'"[00m" | 
| Greg Hackmann | d95c7f7 | 2014-06-23 14:05:06 -0700 | [diff] [blame] | 1505 | else | 
|  | 1506 | color_failed="" | 
|  | 1507 | color_success="" | 
|  | 1508 | color_reset="" | 
|  | 1509 | fi | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1510 | echo | 
|  | 1511 | if [ $ret -eq 0 ] ; then | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1512 | echo -n "${color_success}#### build completed successfully " | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1513 | else | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1514 | echo -n "${color_failed}#### failed to build some targets " | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1515 | 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 Cao | 89483b8 | 2015-05-15 22:12:53 +0800 | [diff] [blame] | 1523 | echo " ####${color_reset}" | 
| Ed Heyl | cc6be0a | 2014-06-18 14:55:58 -0700 | [diff] [blame] | 1524 | echo | 
|  | 1525 | return $ret | 
|  | 1526 | } | 
|  | 1527 |  | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1528 | function make() | 
|  | 1529 | { | 
| Dan Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1530 | _wrap_build $(get_make_command "$@") "$@" | 
| Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1531 | } | 
|  | 1532 |  | 
| David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 1533 | function 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 Janssen | 4afc2c0 | 2015-11-10 10:41:15 -0800 | [diff] [blame] | 1552 | echo -n "Are you sure you want to do this (yes/no)? " | 
|  | 1553 | read | 
| David Zeuthen | 1b126ff | 2015-09-30 17:10:48 -0400 | [diff] [blame] | 1554 | 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 Basi | 424b876 | 2017-08-23 12:03:04 -0700 | [diff] [blame] | 1562 | function 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 Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1570 | # Zsh needs bashcompinit called to support bash-style completion. | 
|  | 1571 | function add_zsh_completion() { | 
|  | 1572 | autoload -U compinit && compinit | 
|  | 1573 | autoload -U bashcompinit && bashcompinit | 
|  | 1574 | } | 
|  | 1575 |  | 
|  | 1576 | function validate_current_shell() { | 
|  | 1577 | local current_sh="$(ps -o command -p $$)" | 
|  | 1578 | case "$current_sh" in | 
| Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1579 | *bash*) | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1580 | function check_type() { type -t "$1"; } | 
| Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1581 | ;; | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1582 | *zsh*) | 
|  | 1583 | function check_type() { type "$1"; } | 
|  | 1584 | add_zsh_completion ;; | 
| Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1585 | *) | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1586 | echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results." | 
| Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1587 | ;; | 
|  | 1588 | esac | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1589 | } | 
| The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1590 |  | 
|  | 1591 | # Execute the contents of any vendorsetup.sh files we can find. | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1592 | function 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 Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1600 |  | 
| Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1601 | validate_current_shell | 
|  | 1602 | source_vendorsetup | 
| Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1603 | addcompletions |