| Index: build/android/provision_devices.py
|
| diff --git a/build/android/provision_devices.py b/build/android/provision_devices.py
|
| index 3f5ef5a637c4eb84a5e4465dee224e602ca1302a..1faa4d22a8c3942ef0008c20038826e851cda85f 100755
|
| --- a/build/android/provision_devices.py
|
| +++ b/build/android/provision_devices.py
|
| @@ -141,6 +141,9 @@ def ProvisionDevices(options):
|
| device_settings.ConfigureContentSettingsDict(
|
| device, device_settings.NETWORK_DISABLED_SETTINGS)
|
| device.old_interface.RunShellCommandWithSU('date -u %f' % time.time())
|
| + (_, props) = device.old_interface.GetShellCommandStatusAndOutput('getprop')
|
| + for prop in props:
|
| + print prop
|
| if options.auto_reconnect:
|
| PushAndLaunchAdbReboot(devices, options.target)
|
|
|
|
|