summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-09-04 13:33:47 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-09-04 13:33:47 -0400
commit05ec91b49d163869a7470c8152c01ed03c16f0fb (patch)
tree9f091c204a158793bc0b86ca56a206cec3d39315
parent540912cbed7a80e960a96b81dc980a07abc3961c (diff)
downloadsystemtap-steved-05ec91b49d163869a7470c8152c01ed03c16f0fb.tar.gz
systemtap-steved-05ec91b49d163869a7470c8152c01ed03c16f0fb.tar.xz
systemtap-steved-05ec91b49d163869a7470c8152c01ed03c16f0fb.zip
PR6864: simplify usage() report
-rw-r--r--ChangeLog4
-rw-r--r--main.cxx9
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 629b2b1a..ff6f9a4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-09-04 Frank Ch. Eigler <fche@elastic.org>
+
+ * main.cxx (usage): Remove some dwarfless items.
+
2008-09-02 Frank Ch. Eigler <fche@elastic.org>
* tapsets.cxx (uprobe..emit_module_init): Leave dying-uprobe
diff --git a/main.cxx b/main.cxx
index 11244d8d..ff993e4a 100644
--- a/main.cxx
+++ b/main.cxx
@@ -121,16 +121,15 @@ usage (systemtap_session& s, int exitcode)
#ifdef HAVE_LIBSQLITE3
<< " -q generate information on tapset coverage" << endl
#endif /* HAVE_LIBSQLITE3 */
+#if 0 /* PR6864: disable temporarily; should merge with -d somehow */
<< " --kelf make do with symbol table from vmlinux" << endl
<< " --kmap[=FILE]" << endl
<< " make do with symbol table from nm listing" << endl
- << " --ignore-vmlinux" << endl
- << " for testing, pretend vmlinux can't be found" << endl
- << " --ignore-dwarf" << endl
- << " for testing, pretend vmlinux and modules lack debug info"
+#endif
+ // Formerly present --ignore-{vmlinux,dwarf} options are for testsuite use
+ // only, and don't belong in the eyesight of a plain user.
<< endl
;
- // -d: dump safety-related external references
exit (exitcode);
}