a3641af22f
Most notably, there's no longer any need to guess an end time. Bug: http://b/23478578 Bug: http://b/33450491 Test: rebooted with bootcharting on/off Change-Id: Icb7d6859581da5526d77dfc5aa4d57c9bfbfd7e2
22 lines
623 B
Bash
Executable file
22 lines
623 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This script is used to retrieve a bootchart log generated by init.
|
|
# All options are passed to adb, for better or for worse.
|
|
# See the readme in this directory for more on bootcharting.
|
|
|
|
TMPDIR=/tmp/android-bootchart
|
|
rm -rf $TMPDIR
|
|
mkdir -p $TMPDIR
|
|
|
|
LOGROOT=/data/bootchart
|
|
TARBALL=bootchart.tgz
|
|
|
|
FILES="header proc_stat.log proc_ps.log proc_diskstats.log"
|
|
|
|
for f in $FILES; do
|
|
adb "${@}" pull $LOGROOT/$f $TMPDIR/$f 2>&1 > /dev/null
|
|
done
|
|
(cd $TMPDIR && tar -czf $TARBALL $FILES)
|
|
bootchart ${TMPDIR}/${TARBALL}
|
|
gnome-open ${TARBALL%.tgz}.png
|
|
echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done"
|