update 0.8.61
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Sat, 16 Sep 2006 07:25:51 +0000 (07:25 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Sat, 16 Sep 2006 07:25:51 +0000 (07:25 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2112 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/QUICKSTART
ltt/branches/poly/configure.in
ltt/branches/poly/lttv/modules/gui/tracecontrol/tracecontrol.c

index 513023531a3101f8dea95aa55a921133ab015ad3..356262fc71a5fd9f90cfdbb30154bee3a4bc4e20 100644 (file)
@@ -268,18 +268,18 @@ Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
 
 * Editing the system wide configuration
 
-You must activate relayfs and specify a mount point. This is typically done in
+You must activate debugfs and specify a mount point. This is typically done in
 fstab such that it happens at boot time.
 
-If you have never used RelayFS before, these operation would do this for you :
+If you have never used DebugFS before, these operation would do this for you :
 
-mkdir /mnt/relayfs
+mkdir /mnt/debugfs
 cp /etc/fstab /etc/fstab.lttng.bkp
-echo "relayfs         /mnt/relayfs    relayfs rw              0       0"  >> /etc/fstab
+echo "debugfs         /mnt/debugfs    debugfs rw              0       0"  >> /etc/fstab
 
-then, rebooting or issuing the following command will activate relayfs :
+then, rebooting or issuing the following command will activate debugfs :
 
-mount /mnt/relayfs
+mount /mnt/debugfs
 
 You need to load the ltt-control module to be able to control tracing from user
 space. This is done by issuing the command :
@@ -359,7 +359,7 @@ root).
 
 Start tracing :
 
-lttctl -n trace -d -l /mnt/relayfs/ltt -t /tmp/trace
+lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
 
 Stop tracing and destroy trace channels :
 
index a216927a084dd061c00282ee2add0e5188c24b49..e58392399987cfd3d5130be9300a4fc92ae0c786 100644 (file)
@@ -23,7 +23,7 @@
 AC_PREREQ(2.57)
 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
 #AC_WITH_LTDL  # not needed ?
-AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.60-13092006)
+AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.61-16092006)
 AM_CONFIG_HEADER(config.h)
 AM_PROG_LIBTOOL
 
index 9892de13b8c9d0bd4dceeb719f2524f1e13e48ce..768095cd387124fa6093e9b7c2d9d74771d302da 100644 (file)
@@ -249,7 +249,7 @@ gui_control(LttvPluginTab *ptab)
   tcd->channel_dir_label = gtk_label_new("Channel directory:");
   gtk_widget_show (tcd->channel_dir_label);
   tcd->channel_dir_entry = gtk_entry_new();
-  gtk_entry_set_text(GTK_ENTRY(tcd->channel_dir_entry),"/mnt/relayfs/ltt");
+  gtk_entry_set_text(GTK_ENTRY(tcd->channel_dir_entry),"/mnt/debugfs/ltt");
   gtk_widget_show (tcd->channel_dir_entry);
   gtk_table_attach( GTK_TABLE(tcd->main_box),tcd->channel_dir_label,0,2,2,3,GTK_FILL,GTK_FILL,2,2);
   gtk_table_attach( GTK_TABLE(tcd->main_box),tcd->channel_dir_entry,2,6,2,3,GTK_FILL|GTK_EXPAND|GTK_SHRINK,GTK_FILL,0,0);
This page took 0.02611 seconds and 4 git commands to generate.