am d73df6ab: Merge "Fix outdated comments in grab-bootchart.sh."

* commit 'd73df6abb684d04b0ddb3835013706ac4b6ac27b':
  Fix outdated comments in grab-bootchart.sh.
This commit is contained in:
Elliott Hughes 2015-03-07 17:09:17 +00:00 committed by Android Git Automerger
commit 3f421e4d7a
1 changed files with 4 additions and 7 deletions

View File

@ -1,12 +1,9 @@
#!/bin/sh
#
# this script is used to retrieve the bootchart log generated
# by init when compiled with INIT_BOOTCHART=true.
#
# This script is used to retrieve a bootchart log generated by init.
# All options are passed to adb, for better or for worse.
#
# for all details, see //device/system/init/README.BOOTCHART
#
# See the readme in this directory for more on bootcharting.
TMPDIR=/tmp/android-bootchart
rm -rf $TMPDIR
mkdir -p $TMPDIR
@ -22,4 +19,4 @@ done
(cd $TMPDIR && tar -czf $TARBALL $FILES)
bootchart ${TMPDIR}/${TARBALL}
gnome-open ${TARBALL%.tgz}.png
echo "Clean up ${TMPDIR}/ & ./${TARBALL%.tgz}.png when done"
echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done"