aboutsummaryrefslogtreecommitdiffstats
path: root/tools/dissectors/README.txt
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-08-30 10:23:06 -0700
committerMartin Braun <martin.braun@ettus.com>2016-08-30 10:23:06 -0700
commit3c119b1a7f2ba4c6eb86dd15697ee53f0cadde4c (patch)
tree4a61dfc263c48d383572b980f316278102eae38f /tools/dissectors/README.txt
parent15173a8b72e7c297920c8c982b5d7621b9d81e6d (diff)
downloaduhd-3c119b1a7f2ba4c6eb86dd15697ee53f0cadde4c.tar.gz
uhd-3c119b1a7f2ba4c6eb86dd15697ee53f0cadde4c.tar.bz2
uhd-3c119b1a7f2ba4c6eb86dd15697ee53f0cadde4c.zip
tools: Added README for the dissectors
Diffstat (limited to 'tools/dissectors/README.txt')
-rw-r--r--tools/dissectors/README.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/dissectors/README.txt b/tools/dissectors/README.txt
new file mode 100644
index 000000000..5119fbb1b
--- /dev/null
+++ b/tools/dissectors/README.txt
@@ -0,0 +1,24 @@
+# Installing the Ettus Wireshark dissectors
+
+
+1. Make sure you have the Wireshark 'dev' files available. On some
+ distributions, this requires a separate package (e.g. on Ubuntu,
+ you will need to install the wireshark-dev package)
+2. Run these commands inside this directory:
+
+ $ mkdir build
+ $ cd build
+ $ cmake ..
+ $ make && make install
+
+ This will build and install the CHDR dissector.
+
+3. To build and install the other dissectors, re-run the commands
+ like so:
+
+ $ cmake .. -DETTUS_DISSECTOR_NAME=zpu
+ $ make && make install
+
+ Replace "zpu" with the name of the dissector you wish to install
+ (e.g. "octoclock").
+