diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-03-23 20:33:58 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-03-23 22:33:08 +0300 |
commit | 88978e562302c836c1c4597700c79d971e93abc0 (patch) | |
tree | 7fe78222f9051216fabe6df27b8236dc8071c93e /tools/perf/perf-archive.sh | |
parent | 4ded2b250f1fbba4e414d17dc55ee513485c0aa1 (diff) | |
download | linux-88978e562302c836c1c4597700c79d971e93abc0.tar.xz |
perf archive: Explain how to use the generated tarball
[root@doppio ~]# perf archive
Now please run:
$ tar xvf perf.data.tar.bz2 -C ~/.debug
wherever you need to run 'perf report' on.
[root@doppio ~]#
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1269365638-10223-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/perf-archive.sh')
-rw-r--r-- | tools/perf/perf-archive.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/perf-archive.sh b/tools/perf/perf-archive.sh index 910468e6e01c..2e7a4f417e20 100644 --- a/tools/perf/perf-archive.sh +++ b/tools/perf/perf-archive.sh @@ -30,4 +30,7 @@ done tar cfj $PERF_DATA.tar.bz2 -C $DEBUGDIR -T $MANIFEST rm -f $MANIFEST $BUILDIDS +echo -e "Now please run:\n" +echo -e "$ tar xvf $PERF_DATA.tar.bz2 -C ~/.debug\n" +echo "wherever you need to run 'perf report' on." exit 0 |