Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 1 | function __print_lineage_functions_help() { |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 2 | cat <<EOF |
Dan Pasanen | 0344771 | 2016-12-19 11:22:55 -0600 | [diff] [blame] | 3 | Additional LineageOS functions: |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 4 | - cout: Changes directory to out. |
| 5 | - mmp: Builds all of the modules in the current directory and pushes them to the device. |
| 6 | - mmap: Builds all of the modules in the current directory and its dependencies, then pushes the package to the device. |
| 7 | - mmmp: Builds all of the modules in the supplied directories and pushes them to the device. |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 8 | - lineagegerrit: A Git wrapper that fetches/pushes patch from/to LineageOS Gerrit Review. |
| 9 | - lineagerebase: Rebase a Gerrit change and push it again. |
| 10 | - lineageremote: Add git remote for LineageOS Gerrit Review. |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 11 | - aospremote: Add git remote for matching AOSP repository. |
| 12 | - cafremote: Add git remote for matching CodeAurora repository. |
| 13 | - mka: Builds using SCHED_BATCH on all processors. |
| 14 | - mkap: Builds the module(s) using mka and pushes them to the device. |
| 15 | - cmka: Cleans and builds using mka. |
| 16 | - repodiff: Diff 2 different branches or tags within the same repo |
| 17 | - repolastsync: Prints date and time of last repo sync. |
| 18 | - reposync: Parallel repo sync using ionice and SCHED_BATCH. |
| 19 | - repopick: Utility to fetch changes from Gerrit. |
| 20 | - installboot: Installs a boot.img to the connected device. |
| 21 | - installrecovery: Installs a recovery.img to the connected device. |
| 22 | EOF |
| 23 | } |
| 24 | |
Luca Stefani | 076c27b | 2017-08-17 20:30:00 +0200 | [diff] [blame] | 25 | function mk_timer() |
| 26 | { |
| 27 | local start_time=$(date +"%s") |
| 28 | $@ |
| 29 | local ret=$? |
| 30 | local end_time=$(date +"%s") |
| 31 | local tdiff=$(($end_time-$start_time)) |
| 32 | local hours=$(($tdiff / 3600 )) |
| 33 | local mins=$((($tdiff % 3600) / 60)) |
| 34 | local secs=$(($tdiff % 60)) |
| 35 | local ncolors=$(tput colors 2>/dev/null) |
| 36 | echo |
| 37 | if [ $ret -eq 0 ] ; then |
| 38 | echo -n "#### make completed successfully " |
| 39 | else |
| 40 | echo -n "#### make failed to build some targets " |
| 41 | fi |
| 42 | if [ $hours -gt 0 ] ; then |
| 43 | printf "(%02g:%02g:%02g (hh:mm:ss))" $hours $mins $secs |
| 44 | elif [ $mins -gt 0 ] ; then |
| 45 | printf "(%02g:%02g (mm:ss))" $mins $secs |
| 46 | elif [ $secs -gt 0 ] ; then |
| 47 | printf "(%s seconds)" $secs |
| 48 | fi |
| 49 | echo " ####" |
| 50 | echo |
| 51 | return $ret |
| 52 | } |
| 53 | |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 54 | function brunch() |
| 55 | { |
| 56 | breakfast $* |
| 57 | if [ $? -eq 0 ]; then |
| 58 | mka bacon |
| 59 | else |
| 60 | echo "No such item in brunch menu. Try 'breakfast'" |
| 61 | return 1 |
| 62 | fi |
| 63 | return $? |
| 64 | } |
| 65 | |
| 66 | function breakfast() |
| 67 | { |
| 68 | target=$1 |
| 69 | local variant=$2 |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 70 | LINEAGE_DEVICES_ONLY="true" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 71 | unset LUNCH_MENU_CHOICES |
| 72 | add_lunch_combo full-eng |
Dan Pasanen | 91f7620 | 2017-07-06 08:21:30 -0500 | [diff] [blame] | 73 | for f in `/bin/ls vendor/lineage/vendorsetup.sh 2> /dev/null` |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 74 | do |
| 75 | echo "including $f" |
| 76 | . $f |
| 77 | done |
| 78 | unset f |
| 79 | |
| 80 | if [ $# -eq 0 ]; then |
| 81 | # No arguments, so let's have the full menu |
| 82 | lunch |
| 83 | else |
| 84 | echo "z$target" | grep -q "-" |
| 85 | if [ $? -eq 0 ]; then |
| 86 | # A buildtype was specified, assume a full device name |
| 87 | lunch $target |
| 88 | else |
Simon Shields | 63ce74b | 2016-12-28 11:33:29 +1100 | [diff] [blame] | 89 | # This is probably just the Lineage model name |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 90 | if [ -z "$variant" ]; then |
| 91 | variant="userdebug" |
| 92 | fi |
Matt Mower | ed8c248 | 2017-01-02 02:26:01 -0600 | [diff] [blame] | 93 | |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 94 | lunch lineage_$target-$variant |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 95 | fi |
| 96 | fi |
| 97 | return $? |
| 98 | } |
| 99 | |
| 100 | alias bib=breakfast |
| 101 | |
| 102 | function eat() |
| 103 | { |
| 104 | if [ "$OUT" ] ; then |
Paul Keith | b11d573 | 2017-11-02 20:31:33 +0100 | [diff] [blame] | 105 | ZIPPATH=`ls -tr "$OUT"/lineage-*.zip | tail -1` |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 106 | if [ ! -f $ZIPPATH ] ; then |
| 107 | echo "Nothing to eat" |
| 108 | return 1 |
| 109 | fi |
| 110 | adb start-server # Prevent unexpected starting server message from adb get-state in the next line |
| 111 | if [ $(adb get-state) != device -a $(adb shell test -e /sbin/recovery 2> /dev/null; echo $?) != 0 ] ; then |
| 112 | echo "No device is online. Waiting for one..." |
| 113 | echo "Please connect USB and/or enable USB debugging" |
| 114 | until [ $(adb get-state) = device -o $(adb shell test -e /sbin/recovery 2> /dev/null; echo $?) = 0 ];do |
| 115 | sleep 1 |
| 116 | done |
| 117 | echo "Device Found.." |
| 118 | fi |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 119 | if (adb shell getprop ro.lineage.device | grep -q "$LINEAGE_BUILD"); then |
Ethan Chen | b69c2ff | 2016-12-31 13:23:56 -0800 | [diff] [blame] | 120 | # if adbd isn't root we can't write to /cache/recovery/ |
| 121 | adb root |
| 122 | sleep 1 |
| 123 | adb wait-for-device |
| 124 | cat << EOF > /tmp/command |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 125 | --sideload_auto_reboot |
| 126 | EOF |
Ethan Chen | b69c2ff | 2016-12-31 13:23:56 -0800 | [diff] [blame] | 127 | if adb push /tmp/command /cache/recovery/ ; then |
| 128 | echo "Rebooting into recovery for sideload installation" |
| 129 | adb reboot recovery |
| 130 | adb wait-for-sideload |
| 131 | adb sideload $ZIPPATH |
| 132 | fi |
| 133 | rm /tmp/command |
| 134 | else |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 135 | echo "The connected device does not appear to be $LINEAGE_BUILD, run away!" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 136 | fi |
Ethan Chen | b69c2ff | 2016-12-31 13:23:56 -0800 | [diff] [blame] | 137 | return $? |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 138 | else |
| 139 | echo "Nothing to eat" |
| 140 | return 1 |
| 141 | fi |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | function omnom() |
| 145 | { |
| 146 | brunch $* |
| 147 | eat |
| 148 | } |
| 149 | |
| 150 | function cout() |
| 151 | { |
| 152 | if [ "$OUT" ]; then |
| 153 | cd $OUT |
| 154 | else |
| 155 | echo "Couldn't locate out directory. Try setting OUT." |
| 156 | fi |
| 157 | } |
| 158 | |
| 159 | function dddclient() |
| 160 | { |
| 161 | local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT) |
| 162 | local OUT_SYMBOLS=$(get_abs_build_var TARGET_OUT_UNSTRIPPED) |
| 163 | local OUT_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED) |
| 164 | local OUT_VENDOR_SO_SYMBOLS=$(get_abs_build_var TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED) |
| 165 | local OUT_EXE_SYMBOLS=$(get_symbols_directory) |
| 166 | local PREBUILTS=$(get_abs_build_var ANDROID_PREBUILTS) |
| 167 | local ARCH=$(get_build_var TARGET_ARCH) |
| 168 | local GDB |
| 169 | case "$ARCH" in |
| 170 | arm) GDB=arm-linux-androideabi-gdb;; |
| 171 | arm64) GDB=arm-linux-androideabi-gdb; GDB64=aarch64-linux-android-gdb;; |
| 172 | mips|mips64) GDB=mips64el-linux-android-gdb;; |
| 173 | x86) GDB=x86_64-linux-android-gdb;; |
| 174 | x86_64) GDB=x86_64-linux-android-gdb;; |
| 175 | *) echo "Unknown arch $ARCH"; return 1;; |
| 176 | esac |
| 177 | |
| 178 | if [ "$OUT_ROOT" -a "$PREBUILTS" ]; then |
| 179 | local EXE="$1" |
| 180 | if [ "$EXE" ] ; then |
| 181 | EXE=$1 |
| 182 | if [[ $EXE =~ ^[^/].* ]] ; then |
| 183 | EXE="system/bin/"$EXE |
| 184 | fi |
| 185 | else |
| 186 | EXE="app_process" |
| 187 | fi |
| 188 | |
| 189 | local PORT="$2" |
| 190 | if [ "$PORT" ] ; then |
| 191 | PORT=$2 |
| 192 | else |
| 193 | PORT=":5039" |
| 194 | fi |
| 195 | |
| 196 | local PID="$3" |
| 197 | if [ "$PID" ] ; then |
| 198 | if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then |
| 199 | PID=`pid $3` |
| 200 | if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then |
| 201 | # that likely didn't work because of returning multiple processes |
| 202 | # try again, filtering by root processes (don't contain colon) |
| 203 | PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'` |
| 204 | if [[ ! "$PID" =~ ^[0-9]+$ ]] |
| 205 | then |
| 206 | echo "Couldn't resolve '$3' to single PID" |
| 207 | return 1 |
| 208 | else |
| 209 | echo "" |
| 210 | echo "WARNING: multiple processes matching '$3' observed, using root process" |
| 211 | echo "" |
| 212 | fi |
| 213 | fi |
| 214 | fi |
| 215 | adb forward "tcp$PORT" "tcp$PORT" |
| 216 | local USE64BIT="$(is64bit $PID)" |
| 217 | adb shell gdbserver$USE64BIT $PORT --attach $PID & |
| 218 | sleep 2 |
| 219 | else |
| 220 | echo "" |
| 221 | echo "If you haven't done so already, do this first on the device:" |
| 222 | echo " gdbserver $PORT /system/bin/$EXE" |
| 223 | echo " or" |
| 224 | echo " gdbserver $PORT --attach <PID>" |
| 225 | echo "" |
| 226 | fi |
| 227 | |
| 228 | OUT_SO_SYMBOLS=$OUT_SO_SYMBOLS$USE64BIT |
| 229 | OUT_VENDOR_SO_SYMBOLS=$OUT_VENDOR_SO_SYMBOLS$USE64BIT |
| 230 | |
| 231 | echo >|"$OUT_ROOT/gdbclient.cmds" "set solib-absolute-prefix $OUT_SYMBOLS" |
| 232 | echo >>"$OUT_ROOT/gdbclient.cmds" "set solib-search-path $OUT_SO_SYMBOLS:$OUT_SO_SYMBOLS/hw:$OUT_SO_SYMBOLS/ssl/engines:$OUT_SO_SYMBOLS/drm:$OUT_SO_SYMBOLS/egl:$OUT_SO_SYMBOLS/soundfx:$OUT_VENDOR_SO_SYMBOLS:$OUT_VENDOR_SO_SYMBOLS/hw:$OUT_VENDOR_SO_SYMBOLS/egl" |
| 233 | echo >>"$OUT_ROOT/gdbclient.cmds" "source $ANDROID_BUILD_TOP/development/scripts/gdb/dalvik.gdb" |
| 234 | echo >>"$OUT_ROOT/gdbclient.cmds" "target remote $PORT" |
| 235 | # Enable special debugging for ART processes. |
| 236 | if [[ $EXE =~ (^|/)(app_process|dalvikvm)(|32|64)$ ]]; then |
| 237 | echo >> "$OUT_ROOT/gdbclient.cmds" "art-on" |
| 238 | fi |
| 239 | echo >>"$OUT_ROOT/gdbclient.cmds" "" |
| 240 | |
| 241 | local WHICH_GDB= |
| 242 | # 64-bit exe found |
| 243 | if [ "$USE64BIT" != "" ] ; then |
| 244 | WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB64 |
| 245 | # 32-bit exe / 32-bit platform |
| 246 | elif [ "$(get_build_var TARGET_2ND_ARCH)" = "" ]; then |
| 247 | WHICH_GDB=$ANDROID_TOOLCHAIN/$GDB |
| 248 | # 32-bit exe / 64-bit platform |
| 249 | else |
| 250 | WHICH_GDB=$ANDROID_TOOLCHAIN_2ND_ARCH/$GDB |
| 251 | fi |
| 252 | |
| 253 | ddd --debugger $WHICH_GDB -x "$OUT_ROOT/gdbclient.cmds" "$OUT_EXE_SYMBOLS/$EXE" |
| 254 | else |
| 255 | echo "Unable to determine build system output dir." |
| 256 | fi |
| 257 | } |
| 258 | |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 259 | function lineageremote() |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 260 | { |
| 261 | if ! git rev-parse --git-dir &> /dev/null |
| 262 | then |
| 263 | echo ".git directory not found. Please run this from the root directory of the Android repository you wish to set up." |
| 264 | return 1 |
| 265 | fi |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 266 | git remote rm lineage 2> /dev/null |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 267 | local GERRIT_REMOTE=$(git config --get remote.github.projectname) |
Michael Bestas | af3532b | 2017-08-23 17:40:40 +0300 | [diff] [blame] | 268 | if [ -z "$GERRIT_REMOTE" ] |
| 269 | then |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 270 | local GERRIT_REMOTE=$(git config --get remote.aosp.projectname | sed s#platform/#android/#g | sed s#/#_#g) |
| 271 | local PFX="LineageOS/" |
Michael Bestas | af3532b | 2017-08-23 17:40:40 +0300 | [diff] [blame] | 272 | fi |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 273 | local LINEAGE_USER=$(git config --get review.review.lineageos.org.username) |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 274 | if [ -z "$LINEAGE_USER" ] |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 275 | then |
Michael Bestas | af3532b | 2017-08-23 17:40:40 +0300 | [diff] [blame] | 276 | git remote add lineage ssh://review.lineageos.org:29418/$PFX$GERRIT_REMOTE |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 277 | else |
Michael Bestas | af3532b | 2017-08-23 17:40:40 +0300 | [diff] [blame] | 278 | git remote add lineage ssh://$LINEAGE_USER@review.lineageos.org:29418/$PFX$GERRIT_REMOTE |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 279 | fi |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 280 | echo "Remote 'lineage' created" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | function aospremote() |
| 284 | { |
| 285 | if ! git rev-parse --git-dir &> /dev/null |
| 286 | then |
| 287 | echo ".git directory not found. Please run this from the root directory of the Android repository you wish to set up." |
| 288 | return 1 |
| 289 | fi |
| 290 | git remote rm aosp 2> /dev/null |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 291 | local PROJECT=$(pwd -P | sed -e "s#$ANDROID_BUILD_TOP\/##; s#-caf.*##; s#\/default##") |
Rashed Abdel-Tawab | fd8b829 | 2017-10-24 21:55:52 -0400 | [diff] [blame] | 292 | # Google moved the repo location in Oreo |
| 293 | if [ $PROJECT = "build/make" ] |
| 294 | then |
| 295 | PROJECT="build" |
| 296 | fi |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 297 | if (echo $PROJECT | grep -qv "^device") |
| 298 | then |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 299 | local PFX="platform/" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 300 | fi |
| 301 | git remote add aosp https://android.googlesource.com/$PFX$PROJECT |
| 302 | echo "Remote 'aosp' created" |
| 303 | } |
| 304 | |
| 305 | function cafremote() |
| 306 | { |
| 307 | if ! git rev-parse --git-dir &> /dev/null |
| 308 | then |
| 309 | echo ".git directory not found. Please run this from the root directory of the Android repository you wish to set up." |
| 310 | return 1 |
| 311 | fi |
| 312 | git remote rm caf 2> /dev/null |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 313 | local PROJECT=$(pwd -P | sed -e "s#$ANDROID_BUILD_TOP\/##; s#-caf.*##; s#\/default##") |
Rashed Abdel-Tawab | fd8b829 | 2017-10-24 21:55:52 -0400 | [diff] [blame] | 314 | # Google moved the repo location in Oreo |
| 315 | if [ $PROJECT = "build/make" ] |
| 316 | then |
| 317 | PROJECT="build" |
| 318 | fi |
Rashed Abdel-Tawab | b52c708 | 2017-12-24 22:40:31 +0200 | [diff] [blame] | 319 | if [[ $PROJECT =~ "qcom/opensource" ]]; |
| 320 | then |
| 321 | PROJECT=$(echo $PROJECT | sed -e "s#qcom\/opensource#qcom-opensource#") |
| 322 | fi |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 323 | if (echo $PROJECT | grep -qv "^device") |
| 324 | then |
Michael Bestas | ad3a570 | 2017-08-24 00:00:48 +0300 | [diff] [blame] | 325 | local PFX="platform/" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 326 | fi |
Zhao Wei Liew | fb4b8c5 | 2017-01-08 09:03:01 +0800 | [diff] [blame] | 327 | git remote add caf https://source.codeaurora.org/quic/la/$PFX$PROJECT |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 328 | echo "Remote 'caf' created" |
| 329 | } |
| 330 | |
| 331 | function installboot() |
| 332 | { |
| 333 | if [ ! -e "$OUT/recovery/root/etc/recovery.fstab" ]; |
| 334 | then |
| 335 | echo "No recovery.fstab found. Build recovery first." |
| 336 | return 1 |
| 337 | fi |
| 338 | if [ ! -e "$OUT/boot.img" ]; |
| 339 | then |
| 340 | echo "No boot.img found. Run make bootimage first." |
| 341 | return 1 |
| 342 | fi |
| 343 | PARTITION=`grep "^\/boot" $OUT/recovery/root/etc/recovery.fstab | awk {'print $3'}` |
| 344 | if [ -z "$PARTITION" ]; |
| 345 | then |
| 346 | # Try for RECOVERY_FSTAB_VERSION = 2 |
| 347 | PARTITION=`grep "[[:space:]]\/boot[[:space:]]" $OUT/recovery/root/etc/recovery.fstab | awk {'print $1'}` |
| 348 | PARTITION_TYPE=`grep "[[:space:]]\/boot[[:space:]]" $OUT/recovery/root/etc/recovery.fstab | awk {'print $3'}` |
| 349 | if [ -z "$PARTITION" ]; |
| 350 | then |
| 351 | echo "Unable to determine boot partition." |
| 352 | return 1 |
| 353 | fi |
| 354 | fi |
| 355 | adb start-server |
| 356 | adb wait-for-online |
| 357 | adb root |
| 358 | sleep 1 |
| 359 | adb wait-for-online shell mount /system 2>&1 > /dev/null |
| 360 | adb wait-for-online remount |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 361 | if (adb shell getprop ro.lineage.device | grep -q "$LINEAGE_BUILD"); |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 362 | then |
| 363 | adb push $OUT/boot.img /cache/ |
Ashwin Ramesh | b0ea62a | 2017-08-13 12:00:15 +0530 | [diff] [blame] | 364 | if [ -e "$OUT/system/lib/modules/*" ]; |
| 365 | then |
| 366 | for i in $OUT/system/lib/modules/*; |
| 367 | do |
| 368 | adb push $i /system/lib/modules/ |
| 369 | done |
| 370 | adb shell chmod 644 /system/lib/modules/* |
| 371 | fi |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 372 | adb shell dd if=/cache/boot.img of=$PARTITION |
Michael W | 2e20394 | 2018-01-14 18:46:02 +0100 | [diff] [blame] | 373 | adb shell rm -rf /cache/boot.img |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 374 | echo "Installation complete." |
| 375 | else |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 376 | echo "The connected device does not appear to be $LINEAGE_BUILD, run away!" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 377 | fi |
| 378 | } |
| 379 | |
| 380 | function installrecovery() |
| 381 | { |
| 382 | if [ ! -e "$OUT/recovery/root/etc/recovery.fstab" ]; |
| 383 | then |
| 384 | echo "No recovery.fstab found. Build recovery first." |
| 385 | return 1 |
| 386 | fi |
| 387 | if [ ! -e "$OUT/recovery.img" ]; |
| 388 | then |
| 389 | echo "No recovery.img found. Run make recoveryimage first." |
| 390 | return 1 |
| 391 | fi |
| 392 | PARTITION=`grep "^\/recovery" $OUT/recovery/root/etc/recovery.fstab | awk {'print $3'}` |
| 393 | if [ -z "$PARTITION" ]; |
| 394 | then |
| 395 | # Try for RECOVERY_FSTAB_VERSION = 2 |
| 396 | PARTITION=`grep "[[:space:]]\/recovery[[:space:]]" $OUT/recovery/root/etc/recovery.fstab | awk {'print $1'}` |
| 397 | PARTITION_TYPE=`grep "[[:space:]]\/recovery[[:space:]]" $OUT/recovery/root/etc/recovery.fstab | awk {'print $3'}` |
| 398 | if [ -z "$PARTITION" ]; |
| 399 | then |
| 400 | echo "Unable to determine recovery partition." |
| 401 | return 1 |
| 402 | fi |
| 403 | fi |
| 404 | adb start-server |
| 405 | adb wait-for-online |
| 406 | adb root |
| 407 | sleep 1 |
| 408 | adb wait-for-online shell mount /system 2>&1 >> /dev/null |
| 409 | adb wait-for-online remount |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 410 | if (adb shell getprop ro.lineage.device | grep -q "$LINEAGE_BUILD"); |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 411 | then |
| 412 | adb push $OUT/recovery.img /cache/ |
| 413 | adb shell dd if=/cache/recovery.img of=$PARTITION |
Michael W | 2e20394 | 2018-01-14 18:46:02 +0100 | [diff] [blame] | 414 | adb shell rm -rf /cache/recovery.img |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 415 | echo "Installation complete." |
| 416 | else |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 417 | echo "The connected device does not appear to be $LINEAGE_BUILD, run away!" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 418 | fi |
| 419 | } |
| 420 | |
| 421 | function makerecipe() { |
| 422 | if [ -z "$1" ] |
| 423 | then |
| 424 | echo "No branch name provided." |
| 425 | return 1 |
| 426 | fi |
| 427 | cd android |
| 428 | sed -i s/'default revision=.*'/'default revision="refs\/heads\/'$1'"'/ default.xml |
| 429 | git commit -a -m "$1" |
| 430 | cd .. |
| 431 | |
| 432 | repo forall -c ' |
| 433 | |
| 434 | if [ "$REPO_REMOTE" = "github" ] |
| 435 | then |
| 436 | pwd |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 437 | lineageremote |
| 438 | git push lineage HEAD:refs/heads/'$1' |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 439 | fi |
| 440 | ' |
| 441 | } |
| 442 | |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 443 | function lineagegerrit() { |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 444 | if [ "$(__detect_shell)" = "zsh" ]; then |
| 445 | # zsh does not define FUNCNAME, derive from funcstack |
| 446 | local FUNCNAME=$funcstack[1] |
| 447 | fi |
| 448 | |
| 449 | if [ $# -eq 0 ]; then |
| 450 | $FUNCNAME help |
| 451 | return 1 |
| 452 | fi |
Dan Pasanen | 0344771 | 2016-12-19 11:22:55 -0600 | [diff] [blame] | 453 | local user=`git config --get review.review.lineageos.org.username` |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 454 | local review=`git config --get remote.github.review` |
| 455 | local project=`git config --get remote.github.projectname` |
| 456 | local command=$1 |
| 457 | shift |
| 458 | case $command in |
| 459 | help) |
| 460 | if [ $# -eq 0 ]; then |
| 461 | cat <<EOF |
| 462 | Usage: |
| 463 | $FUNCNAME COMMAND [OPTIONS] [CHANGE-ID[/PATCH-SET]][{@|^|~|:}ARG] [-- ARGS] |
| 464 | |
| 465 | Commands: |
| 466 | fetch Just fetch the change as FETCH_HEAD |
| 467 | help Show this help, or for a specific command |
| 468 | pull Pull a change into current branch |
| 469 | push Push HEAD or a local branch to Gerrit for a specific branch |
| 470 | |
| 471 | Any other Git commands that support refname would work as: |
| 472 | git fetch URL CHANGE && git COMMAND OPTIONS FETCH_HEAD{@|^|~|:}ARG -- ARGS |
| 473 | |
| 474 | See '$FUNCNAME help COMMAND' for more information on a specific command. |
| 475 | |
| 476 | Example: |
| 477 | $FUNCNAME checkout -b topic 1234/5 |
| 478 | works as: |
| 479 | git fetch http://DOMAIN/p/PROJECT refs/changes/34/1234/5 \\ |
| 480 | && git checkout -b topic FETCH_HEAD |
| 481 | will checkout a new branch 'topic' base on patch-set 5 of change 1234. |
| 482 | Patch-set 1 will be fetched if omitted. |
| 483 | EOF |
| 484 | return |
| 485 | fi |
| 486 | case $1 in |
| 487 | __cmg_*) echo "For internal use only." ;; |
| 488 | changes|for) |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 489 | if [ "$FUNCNAME" = "lineagegerrit" ]; then |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 490 | echo "'$FUNCNAME $1' is deprecated." |
| 491 | fi |
| 492 | ;; |
| 493 | help) $FUNCNAME help ;; |
| 494 | fetch|pull) cat <<EOF |
| 495 | usage: $FUNCNAME $1 [OPTIONS] CHANGE-ID[/PATCH-SET] |
| 496 | |
| 497 | works as: |
| 498 | git $1 OPTIONS http://DOMAIN/p/PROJECT \\ |
| 499 | refs/changes/HASH/CHANGE-ID/{PATCH-SET|1} |
| 500 | |
| 501 | Example: |
| 502 | $FUNCNAME $1 1234 |
| 503 | will $1 patch-set 1 of change 1234 |
| 504 | EOF |
| 505 | ;; |
| 506 | push) cat <<EOF |
| 507 | usage: $FUNCNAME push [OPTIONS] [LOCAL_BRANCH:]REMOTE_BRANCH |
| 508 | |
| 509 | works as: |
| 510 | git push OPTIONS ssh://USER@DOMAIN:29418/PROJECT \\ |
| 511 | {LOCAL_BRANCH|HEAD}:refs/for/REMOTE_BRANCH |
| 512 | |
| 513 | Example: |
| 514 | $FUNCNAME push fix6789:gingerbread |
| 515 | will push local branch 'fix6789' to Gerrit for branch 'gingerbread'. |
| 516 | HEAD will be pushed from local if omitted. |
| 517 | EOF |
| 518 | ;; |
| 519 | *) |
| 520 | $FUNCNAME __cmg_err_not_supported $1 && return |
| 521 | cat <<EOF |
| 522 | usage: $FUNCNAME $1 [OPTIONS] CHANGE-ID[/PATCH-SET][{@|^|~|:}ARG] [-- ARGS] |
| 523 | |
| 524 | works as: |
| 525 | git fetch http://DOMAIN/p/PROJECT \\ |
| 526 | refs/changes/HASH/CHANGE-ID/{PATCH-SET|1} \\ |
| 527 | && git $1 OPTIONS FETCH_HEAD{@|^|~|:}ARG -- ARGS |
| 528 | EOF |
| 529 | ;; |
| 530 | esac |
| 531 | ;; |
| 532 | __cmg_get_ref) |
| 533 | $FUNCNAME __cmg_err_no_arg $command $# && return 1 |
| 534 | local change_id patchset_id hash |
| 535 | case $1 in |
| 536 | */*) |
| 537 | change_id=${1%%/*} |
| 538 | patchset_id=${1#*/} |
| 539 | ;; |
| 540 | *) |
| 541 | change_id=$1 |
| 542 | patchset_id=1 |
| 543 | ;; |
| 544 | esac |
| 545 | hash=$(($change_id % 100)) |
| 546 | case $hash in |
| 547 | [0-9]) hash="0$hash" ;; |
| 548 | esac |
| 549 | echo "refs/changes/$hash/$change_id/$patchset_id" |
| 550 | ;; |
| 551 | fetch|pull) |
| 552 | $FUNCNAME __cmg_err_no_arg $command $# help && return 1 |
| 553 | $FUNCNAME __cmg_err_not_repo && return 1 |
| 554 | local change=$1 |
| 555 | shift |
| 556 | git $command $@ http://$review/p/$project \ |
| 557 | $($FUNCNAME __cmg_get_ref $change) || return 1 |
| 558 | ;; |
| 559 | push) |
| 560 | $FUNCNAME __cmg_err_no_arg $command $# help && return 1 |
| 561 | $FUNCNAME __cmg_err_not_repo && return 1 |
| 562 | if [ -z "$user" ]; then |
| 563 | echo >&2 "Gerrit username not found." |
| 564 | return 1 |
| 565 | fi |
| 566 | local local_branch remote_branch |
| 567 | case $1 in |
| 568 | *:*) |
| 569 | local_branch=${1%:*} |
| 570 | remote_branch=${1##*:} |
| 571 | ;; |
| 572 | *) |
| 573 | local_branch=HEAD |
| 574 | remote_branch=$1 |
| 575 | ;; |
| 576 | esac |
| 577 | shift |
| 578 | git push $@ ssh://$user@$review:29418/$project \ |
| 579 | $local_branch:refs/for/$remote_branch || return 1 |
| 580 | ;; |
| 581 | changes|for) |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 582 | if [ "$FUNCNAME" = "lineagegerrit" ]; then |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 583 | echo >&2 "'$FUNCNAME $command' is deprecated." |
| 584 | fi |
| 585 | ;; |
| 586 | __cmg_err_no_arg) |
| 587 | if [ $# -lt 2 ]; then |
| 588 | echo >&2 "'$FUNCNAME $command' missing argument." |
| 589 | elif [ $2 -eq 0 ]; then |
| 590 | if [ -n "$3" ]; then |
| 591 | $FUNCNAME help $1 |
| 592 | else |
| 593 | echo >&2 "'$FUNCNAME $1' missing argument." |
| 594 | fi |
| 595 | else |
| 596 | return 1 |
| 597 | fi |
| 598 | ;; |
| 599 | __cmg_err_not_repo) |
| 600 | if [ -z "$review" -o -z "$project" ]; then |
| 601 | echo >&2 "Not currently in any reviewable repository." |
| 602 | else |
| 603 | return 1 |
| 604 | fi |
| 605 | ;; |
| 606 | __cmg_err_not_supported) |
| 607 | $FUNCNAME __cmg_err_no_arg $command $# && return |
| 608 | case $1 in |
| 609 | #TODO: filter more git commands that don't use refname |
| 610 | init|add|rm|mv|status|clone|remote|bisect|config|stash) |
| 611 | echo >&2 "'$FUNCNAME $1' is not supported." |
| 612 | ;; |
| 613 | *) return 1 ;; |
| 614 | esac |
| 615 | ;; |
| 616 | #TODO: other special cases? |
| 617 | *) |
| 618 | $FUNCNAME __cmg_err_not_supported $command && return 1 |
| 619 | $FUNCNAME __cmg_err_no_arg $command $# help && return 1 |
| 620 | $FUNCNAME __cmg_err_not_repo && return 1 |
| 621 | local args="$@" |
| 622 | local change pre_args refs_arg post_args |
| 623 | case "$args" in |
| 624 | *--\ *) |
| 625 | pre_args=${args%%-- *} |
| 626 | post_args="-- ${args#*-- }" |
| 627 | ;; |
| 628 | *) pre_args="$args" ;; |
| 629 | esac |
| 630 | args=($pre_args) |
| 631 | pre_args= |
| 632 | if [ ${#args[@]} -gt 0 ]; then |
| 633 | change=${args[${#args[@]}-1]} |
| 634 | fi |
| 635 | if [ ${#args[@]} -gt 1 ]; then |
| 636 | pre_args=${args[0]} |
| 637 | for ((i=1; i<${#args[@]}-1; i++)); do |
| 638 | pre_args="$pre_args ${args[$i]}" |
| 639 | done |
| 640 | fi |
| 641 | while ((1)); do |
| 642 | case $change in |
| 643 | ""|--) |
| 644 | $FUNCNAME help $command |
| 645 | return 1 |
| 646 | ;; |
| 647 | *@*) |
| 648 | if [ -z "$refs_arg" ]; then |
| 649 | refs_arg="@${change#*@}" |
| 650 | change=${change%%@*} |
| 651 | fi |
| 652 | ;; |
| 653 | *~*) |
| 654 | if [ -z "$refs_arg" ]; then |
| 655 | refs_arg="~${change#*~}" |
| 656 | change=${change%%~*} |
| 657 | fi |
| 658 | ;; |
| 659 | *^*) |
| 660 | if [ -z "$refs_arg" ]; then |
| 661 | refs_arg="^${change#*^}" |
| 662 | change=${change%%^*} |
| 663 | fi |
| 664 | ;; |
| 665 | *:*) |
| 666 | if [ -z "$refs_arg" ]; then |
| 667 | refs_arg=":${change#*:}" |
| 668 | change=${change%%:*} |
| 669 | fi |
| 670 | ;; |
| 671 | *) break ;; |
| 672 | esac |
| 673 | done |
| 674 | $FUNCNAME fetch $change \ |
| 675 | && git $command $pre_args FETCH_HEAD$refs_arg $post_args \ |
| 676 | || return 1 |
| 677 | ;; |
| 678 | esac |
| 679 | } |
| 680 | |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 681 | function lineagerebase() { |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 682 | local repo=$1 |
| 683 | local refs=$2 |
| 684 | local pwd="$(pwd)" |
| 685 | local dir="$(gettop)/$repo" |
| 686 | |
| 687 | if [ -z $repo ] || [ -z $refs ]; then |
Dan Pasanen | 0344771 | 2016-12-19 11:22:55 -0600 | [diff] [blame] | 688 | echo "LineageOS Gerrit Rebase Usage: " |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 689 | echo " lineagerebase <path to project> <patch IDs on Gerrit>" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 690 | echo " The patch IDs appear on the Gerrit commands that are offered." |
| 691 | echo " They consist on a series of numbers and slashes, after the text" |
| 692 | echo " refs/changes. For example, the ID in the following command is 26/8126/2" |
| 693 | echo "" |
| 694 | echo " git[...]ges_apps_Camera refs/changes/26/8126/2 && git cherry-pick FETCH_HEAD" |
| 695 | echo "" |
| 696 | return |
| 697 | fi |
| 698 | |
| 699 | if [ ! -d $dir ]; then |
| 700 | echo "Directory $dir doesn't exist in tree." |
| 701 | return |
| 702 | fi |
| 703 | cd $dir |
| 704 | repo=$(cat .git/config | grep git://github.com | awk '{ print $NF }' | sed s#git://github.com/##g) |
| 705 | echo "Starting branch..." |
| 706 | repo start tmprebase . |
| 707 | echo "Bringing it up to date..." |
| 708 | repo sync . |
| 709 | echo "Fetching change..." |
Dan Pasanen | 0344771 | 2016-12-19 11:22:55 -0600 | [diff] [blame] | 710 | git fetch "http://review.lineageos.org/p/$repo" "refs/changes/$refs" && git cherry-pick FETCH_HEAD |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 711 | if [ "$?" != "0" ]; then |
| 712 | echo "Error cherry-picking. Not uploading!" |
| 713 | return |
| 714 | fi |
| 715 | echo "Uploading..." |
| 716 | repo upload . |
| 717 | echo "Cleaning up..." |
| 718 | repo abandon tmprebase . |
| 719 | cd $pwd |
| 720 | } |
| 721 | |
| 722 | function mka() { |
Luca Stefani | 085af72 | 2017-08-17 20:34:44 +0200 | [diff] [blame] | 723 | m -j "$@" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | function cmka() { |
| 727 | if [ ! -z "$1" ]; then |
| 728 | for i in "$@"; do |
| 729 | case $i in |
| 730 | bacon|otapackage|systemimage) |
| 731 | mka installclean |
| 732 | mka $i |
| 733 | ;; |
| 734 | *) |
| 735 | mka clean-$i |
| 736 | mka $i |
| 737 | ;; |
| 738 | esac |
| 739 | done |
| 740 | else |
| 741 | mka clean |
| 742 | mka |
| 743 | fi |
| 744 | } |
| 745 | |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 746 | function repolastsync() { |
| 747 | RLSPATH="$ANDROID_BUILD_TOP/.repo/.repo_fetchtimes.json" |
| 748 | RLSLOCAL=$(date -d "$(stat -c %z $RLSPATH)" +"%e %b %Y, %T %Z") |
| 749 | RLSUTC=$(date -d "$(stat -c %z $RLSPATH)" -u +"%e %b %Y, %T %Z") |
| 750 | echo "Last repo sync: $RLSLOCAL / $RLSUTC" |
| 751 | } |
| 752 | |
| 753 | function reposync() { |
Luca Stefani | 085af72 | 2017-08-17 20:34:44 +0200 | [diff] [blame] | 754 | repo sync -j 4 "$@" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | function repodiff() { |
| 758 | if [ -z "$*" ]; then |
| 759 | echo "Usage: repodiff <ref-from> [[ref-to] [--numstat]]" |
| 760 | return |
| 761 | fi |
| 762 | diffopts=$* repo forall -c \ |
| 763 | 'echo "$REPO_PATH ($REPO_REMOTE)"; git diff ${diffopts} 2>/dev/null ;' |
| 764 | } |
| 765 | |
| 766 | # Return success if adb is up and not in recovery |
| 767 | function _adb_connected { |
| 768 | { |
| 769 | if [[ "$(adb get-state)" == device && |
Marc K | 299137f | 2016-10-20 10:27:10 +0200 | [diff] [blame] | 770 | "$(adb shell test -e /sbin/recovery; echo $?)" != 0 ]] |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 771 | then |
| 772 | return 0 |
| 773 | fi |
| 774 | } 2>/dev/null |
| 775 | |
| 776 | return 1 |
| 777 | }; |
| 778 | |
| 779 | # Credit for color strip sed: http://goo.gl/BoIcm |
| 780 | function dopush() |
| 781 | { |
| 782 | local func=$1 |
| 783 | shift |
| 784 | |
| 785 | adb start-server # Prevent unexpected starting server message from adb get-state in the next line |
| 786 | if ! _adb_connected; then |
| 787 | echo "No device is online. Waiting for one..." |
| 788 | echo "Please connect USB and/or enable USB debugging" |
| 789 | until _adb_connected; do |
| 790 | sleep 1 |
| 791 | done |
| 792 | echo "Device Found." |
| 793 | fi |
| 794 | |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 795 | if (adb shell getprop ro.lineage.device | grep -q "$LINEAGE_BUILD") || [ "$FORCE_PUSH" = "true" ]; |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 796 | then |
| 797 | # retrieve IP and PORT info if we're using a TCP connection |
Marc K | 2be9cac | 2016-10-20 10:27:35 +0200 | [diff] [blame] | 798 | TCPIPPORT=$(adb devices \ |
| 799 | | egrep '^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9]):[0-9]+[^0-9]+' \ |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 800 | | head -1 | awk '{print $1}') |
| 801 | adb root &> /dev/null |
| 802 | sleep 0.3 |
| 803 | if [ -n "$TCPIPPORT" ] |
| 804 | then |
| 805 | # adb root just killed our connection |
| 806 | # so reconnect... |
| 807 | adb connect "$TCPIPPORT" |
| 808 | fi |
| 809 | adb wait-for-device &> /dev/null |
| 810 | sleep 0.3 |
| 811 | adb remount &> /dev/null |
| 812 | |
| 813 | mkdir -p $OUT |
| 814 | ($func $*|tee $OUT/.log;return ${PIPESTATUS[0]}) |
| 815 | ret=$?; |
| 816 | if [ $ret -ne 0 ]; then |
| 817 | rm -f $OUT/.log;return $ret |
| 818 | fi |
| 819 | |
Rashed Abdel-Tawab | 0180664 | 2017-01-19 15:52:13 -0500 | [diff] [blame] | 820 | is_gnu_sed=`sed --version | head -1 | grep -c GNU` |
| 821 | |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 822 | # Install: <file> |
Rashed Abdel-Tawab | 0180664 | 2017-01-19 15:52:13 -0500 | [diff] [blame] | 823 | if [ $is_gnu_sed -gt 0 ]; then |
Marc K | 97b035d | 2016-10-20 10:27:44 +0200 | [diff] [blame] | 824 | LOC="$(cat $OUT/.log | sed -r -e 's/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g' -e 's/^\[ {0,2}[0-9]{1,3}% [0-9]{1,6}\/[0-9]{1,6}\] +//' \ |
| 825 | | grep '^Install: ' | cut -d ':' -f 2)" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 826 | else |
Marc K | 97b035d | 2016-10-20 10:27:44 +0200 | [diff] [blame] | 827 | LOC="$(cat $OUT/.log | sed -E "s/"$'\E'"\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]//g" -E "s/^\[ {0,2}[0-9]{1,3}% [0-9]{1,6}\/[0-9]{1,6}\] +//" \ |
| 828 | | grep '^Install: ' | cut -d ':' -f 2)" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 829 | fi |
| 830 | |
| 831 | # Copy: <file> |
Rashed Abdel-Tawab | 0180664 | 2017-01-19 15:52:13 -0500 | [diff] [blame] | 832 | if [ $is_gnu_sed -gt 0 ]; then |
Marc K | 97b035d | 2016-10-20 10:27:44 +0200 | [diff] [blame] | 833 | LOC="$LOC $(cat $OUT/.log | sed -r -e 's/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g' -e 's/^\[ {0,2}[0-9]{1,3}% [0-9]{1,6}\/[0-9]{1,6}\] +//' \ |
| 834 | | grep '^Copy: ' | cut -d ':' -f 2)" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 835 | else |
Marc K | 97b035d | 2016-10-20 10:27:44 +0200 | [diff] [blame] | 836 | LOC="$LOC $(cat $OUT/.log | sed -E "s/"$'\E'"\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]//g" -E 's/^\[ {0,2}[0-9]{1,3}% [0-9]{1,6}\/[0-9]{1,6}\] +//' \ |
| 837 | | grep '^Copy: ' | cut -d ':' -f 2)" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 838 | fi |
| 839 | |
| 840 | # If any files are going to /data, push an octal file permissions reader to device |
| 841 | if [ -n "$(echo $LOC | egrep '(^|\s)/data')" ]; then |
| 842 | CHKPERM="/data/local/tmp/chkfileperm.sh" |
| 843 | ( |
| 844 | cat <<'EOF' |
| 845 | #!/system/xbin/sh |
| 846 | FILE=$@ |
| 847 | if [ -e $FILE ]; then |
| 848 | ls -l $FILE | awk '{k=0;for(i=0;i<=8;i++)k+=((substr($1,i+2,1)~/[rwx]/)*2^(8-i));if(k)printf("%0o ",k);print}' | cut -d ' ' -f1 |
| 849 | fi |
| 850 | EOF |
| 851 | ) > $OUT/.chkfileperm.sh |
| 852 | echo "Pushing file permissions checker to device" |
| 853 | adb push $OUT/.chkfileperm.sh $CHKPERM |
| 854 | adb shell chmod 755 $CHKPERM |
| 855 | rm -f $OUT/.chkfileperm.sh |
| 856 | fi |
| 857 | |
| 858 | stop_n_start=false |
| 859 | for FILE in $(echo $LOC | tr " " "\n"); do |
| 860 | # Make sure file is in $OUT/system or $OUT/data |
| 861 | case $FILE in |
| 862 | $OUT/system/*|$OUT/data/*) |
| 863 | # Get target file name (i.e. /system/bin/adb) |
| 864 | TARGET=$(echo $FILE | sed "s#$OUT##") |
| 865 | ;; |
| 866 | *) continue ;; |
| 867 | esac |
| 868 | |
| 869 | case $TARGET in |
| 870 | /data/*) |
| 871 | # fs_config only sets permissions and se labels for files pushed to /system |
| 872 | if [ -n "$CHKPERM" ]; then |
| 873 | OLDPERM=$(adb shell $CHKPERM $TARGET) |
| 874 | OLDPERM=$(echo $OLDPERM | tr -d '\r' | tr -d '\n') |
| 875 | OLDOWN=$(adb shell ls -al $TARGET | awk '{print $2}') |
| 876 | OLDGRP=$(adb shell ls -al $TARGET | awk '{print $3}') |
| 877 | fi |
| 878 | echo "Pushing: $TARGET" |
| 879 | adb push $FILE $TARGET |
| 880 | if [ -n "$OLDPERM" ]; then |
| 881 | echo "Setting file permissions: $OLDPERM, $OLDOWN":"$OLDGRP" |
| 882 | adb shell chown "$OLDOWN":"$OLDGRP" $TARGET |
| 883 | adb shell chmod "$OLDPERM" $TARGET |
| 884 | else |
| 885 | echo "$TARGET did not exist previously, you should set file permissions manually" |
| 886 | fi |
| 887 | adb shell restorecon "$TARGET" |
| 888 | ;; |
| 889 | /system/priv-app/SystemUI/SystemUI.apk|/system/framework/*) |
| 890 | # Only need to stop services once |
| 891 | if ! $stop_n_start; then |
| 892 | adb shell stop |
| 893 | stop_n_start=true |
| 894 | fi |
| 895 | echo "Pushing: $TARGET" |
| 896 | adb push $FILE $TARGET |
| 897 | ;; |
| 898 | *) |
| 899 | echo "Pushing: $TARGET" |
| 900 | adb push $FILE $TARGET |
| 901 | ;; |
| 902 | esac |
| 903 | done |
| 904 | if [ -n "$CHKPERM" ]; then |
| 905 | adb shell rm $CHKPERM |
| 906 | fi |
| 907 | if $stop_n_start; then |
| 908 | adb shell start |
| 909 | fi |
| 910 | rm -f $OUT/.log |
| 911 | return 0 |
| 912 | else |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 913 | echo "The connected device does not appear to be $LINEAGE_BUILD, run away!" |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 914 | fi |
| 915 | } |
| 916 | |
| 917 | alias mmp='dopush mm' |
| 918 | alias mmmp='dopush mmm' |
| 919 | alias mmap='dopush mma' |
Zhao Wei Liew | 64fc5ae | 2016-12-10 16:48:27 +0800 | [diff] [blame] | 920 | alias mmmap='dopush mmma' |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 921 | alias mkap='dopush mka' |
| 922 | alias cmkap='dopush cmka' |
| 923 | |
| 924 | function repopick() { |
| 925 | T=$(gettop) |
Dan Pasanen | 91f7620 | 2017-07-06 08:21:30 -0500 | [diff] [blame] | 926 | $T/vendor/lineage/build/tools/repopick.py $@ |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | function fixup_common_out_dir() { |
| 930 | common_out_dir=$(get_build_var OUT_DIR)/target/common |
| 931 | target_device=$(get_build_var TARGET_DEVICE) |
Luca Stefani | 5c60e4f | 2017-08-17 19:28:48 +0200 | [diff] [blame] | 932 | if [ ! -z $LINEAGE_FIXUP_COMMON_OUT ]; then |
Michael Bestas | 3952f6c | 2016-08-26 01:12:08 +0300 | [diff] [blame] | 933 | if [ -d ${common_out_dir} ] && [ ! -L ${common_out_dir} ]; then |
| 934 | mv ${common_out_dir} ${common_out_dir}-${target_device} |
| 935 | ln -s ${common_out_dir}-${target_device} ${common_out_dir} |
| 936 | else |
| 937 | [ -L ${common_out_dir} ] && rm ${common_out_dir} |
| 938 | mkdir -p ${common_out_dir}-${target_device} |
| 939 | ln -s ${common_out_dir}-${target_device} ${common_out_dir} |
| 940 | fi |
| 941 | else |
| 942 | [ -L ${common_out_dir} ] && rm ${common_out_dir} |
| 943 | mkdir -p ${common_out_dir} |
| 944 | fi |
| 945 | } |
Steve Kondik | 26e669b | 2016-11-04 12:05:19 -0700 | [diff] [blame] | 946 | |
| 947 | # Enable SD-LLVM if available |
| 948 | if [ -d $(gettop)/prebuilts/snapdragon-llvm/toolchains ]; then |
Alexander Martinz | 1bbf3e9 | 2016-11-05 15:27:43 +0100 | [diff] [blame] | 949 | case `uname -s` in |
| 950 | Darwin) |
| 951 | # Darwin is not supported yet |
| 952 | ;; |
| 953 | *) |
| 954 | export SDCLANG=true |
| 955 | export SDCLANG_PATH=$(gettop)/prebuilts/snapdragon-llvm/toolchains/llvm-Snapdragon_LLVM_for_Android_3.8/prebuilt/linux-x86_64/bin |
| 956 | export SDCLANG_LTO_DEFS=$(gettop)/device/qcom/common/sdllvm-lto-defs.mk |
| 957 | ;; |
| 958 | esac |
Steve Kondik | 26e669b | 2016-11-04 12:05:19 -0700 | [diff] [blame] | 959 | fi |
Luca Stefani | 84fda60 | 2016-11-24 14:16:33 +0100 | [diff] [blame] | 960 | |
| 961 | # Android specific JACK args |
| 962 | if [ -n "$JACK_SERVER_VM_ARGUMENTS" ] && [ -z "$ANDROID_JACK_VM_ARGS" ]; then |
| 963 | export ANDROID_JACK_VM_ARGS=$JACK_SERVER_VM_ARGUMENTS |
| 964 | fi |