| Index: build/android/provision_devices.py
|
| diff --git a/build/android/provision_devices.py b/build/android/provision_devices.py
|
| index a3922469c8e765a221e055635483a6ecf9fc254b..97b39fb6cc9bf71900665406ee4e27920a83af3e 100755
|
| --- a/build/android/provision_devices.py
|
| +++ b/build/android/provision_devices.py
|
| @@ -18,8 +18,10 @@ import sys
|
| import time
|
|
|
| from pylib import android_commands
|
| +from pylib import bot_device_settings
|
| from pylib import constants
|
|
|
| +
|
| def KillHostHeartbeat():
|
| ps = subprocess.Popen(['ps', 'aux'], stdout = subprocess.PIPE)
|
| stdout, _ = ps.communicate()
|
| @@ -73,6 +75,7 @@ def ProvisionDevices(options):
|
| for device in devices:
|
| android_cmd = android_commands.AndroidCommands(device)
|
| android_cmd.RunShellCommandWithSU('date -u %f' % time.time())
|
| + bot_device_settings.ConfigureDevice(android_cmd)
|
| if options.auto_reconnect:
|
| PushAndLaunchAdbReboot(devices, options.target)
|
|
|
|
|