6b15a6b1ad
Found the following 2 binary is not in the path system/core/init/grab-bootchart.sh: line 20: bootchart: command not found system/core/init/grab-bootchart.sh: line 21: gnome-open: command not found Use a more commonly available command to create bootchart Test: system/core/init/grab-bootchart.sh started a bootchart successfully Change-Id: I6d5b4a692af2fd53ea636b768f55c697586e6898
22 lines
626 B
Bash
Executable file
22 lines
626 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)
|
|
pybootchartgui ${TMPDIR}/${TARBALL}
|
|
xdg-open ${TARBALL%.tgz}.png
|
|
echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done"
|