blob: 546a6bf55b6a3efe2f0b6228d452218d72919877 [file] [log] [blame]
Nicolas Geoffrayd2d62d12015-03-18 11:23:56 +00001#!/bin/bash
2#
3# Copyright (C) 2015 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17green='\033[0;32m'
18nc='\033[0m'
19
Roland Levillain2aab06b2017-03-01 14:14:10 +000020# Setup as root, as the next buildbot step (device cleanup) requires it.
21# This is also required to set the date, if needed.
22adb root
23adb wait-for-device
24
25echo -e "${green}Date on host${nc}"
26date
27
Nicolas Geoffrayd2d62d12015-03-18 11:23:56 +000028echo -e "${green}Date on device${nc}"
29adb shell date
30
Roland Levillain2aab06b2017-03-01 14:14:10 +000031host_seconds_since_epoch=$(date -u +%s)
32device_seconds_since_epoch=$(adb shell date -u +%s)
33
34abs_time_difference_in_seconds=$(expr $host_seconds_since_epoch - $device_seconds_since_epoch)
35if [ $abs_time_difference_in_seconds -lt 0 ]; then
36 abs_time_difference_in_seconds=$(expr 0 - $abs_time_difference_in_seconds)
37fi
38
39seconds_per_hour=3600
40
Nicolas Geoffrayc2d199b2017-05-22 16:05:06 +010041# Kill logd first, so that when we set the adb buffer size later in this file,
42# it is brought up again.
43echo -e "${green}Killing logd, seen leaking on fugu/N${nc}"
44adb shell killall -9 /system/bin/logd
45
Roland Levillain2aab06b2017-03-01 14:14:10 +000046# Update date on device if the difference with host is more than one hour.
47if [ $abs_time_difference_in_seconds -gt $seconds_per_hour ]; then
48 echo -e "${green}Update date on device${nc}"
49 adb shell date -u @$host_seconds_since_epoch
50fi
51
Nicolas Geoffrayd2d62d12015-03-18 11:23:56 +000052echo -e "${green}Turn off selinux${nc}"
53adb shell setenforce 0
54adb shell getenforce
55
Nicolas Geoffray0a38a0e2015-03-25 17:22:34 +000056echo -e "${green}Setting local loopback${nc}"
57adb shell ifconfig lo up
58adb shell ifconfig
59
Nicolas Geoffrayd2d62d12015-03-18 11:23:56 +000060echo -e "${green}List properties${nc}"
61adb shell getprop
Nicolas Geoffrayb8703d62015-10-30 11:18:52 +000062
63echo -e "${green}Uptime${nc}"
64adb shell uptime
65
Nicolas Geoffray7ea57472016-02-24 09:53:09 +000066echo -e "${green}Battery info${nc}"
67adb shell dumpsys battery
68
Nicolas Geoffray80d9c852016-03-04 15:28:35 +000069echo -e "${green}Setting adb buffer size to 32MB${nc}"
70adb logcat -G 32M
71adb logcat -g
72
73echo -e "${green}Removing adb spam filter${nc}"
74adb logcat -P ""
75adb logcat -p
76
Nicolas Geoffrayb8703d62015-10-30 11:18:52 +000077echo -e "${green}Kill stalled dalvikvm processes${nc}"
Nicolas Geoffrayfe6f0b62016-03-07 13:33:37 +000078# 'ps' on M can sometimes hang.
79timeout 2s adb shell "ps"
80if [ $? = 124 ]; then
81 echo -e "${green}Rebooting device to fix 'ps'${nc}"
82 adb reboot
83 adb wait-for-device root
84else
85 processes=$(adb shell "ps" | grep dalvikvm | awk '{print $2}')
86 for i in $processes; do adb shell kill -9 $i; done
87fi