3 # Wait for the device to be both attached and booted.
4
5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6 source $SCRIPT_DIR/android_setup.sh
7 source $SCRIPT_DIR/utils/setup_adb.sh
8
9 set -e
10 set -x
11
12 $ADB $DEVICE_SERIAL wait-for-device
13
14 while [ "$($ADB $DEVICE_SERIAL shell getprop sys.boot_completed | tr -d '\r')" !
= "1" ]; do
15 sleep 5
16 done
OLD
NEW
« no previous file with comments
|
« no previous file
|
no next file »
|
no next file with comments »
Issue 1149163003: Add adb_wait_for_device script
(Closed)
Created 5 years, 6 months ago by borenet
Modified 5 years, 6 months ago
Reviewers: djsollen
Base URL: https://skia.googlesource.com/skia.git@master
Comments: 0