xref: /libbtbb/wireshark/plugins/btbb/README (revision e25b118a40ed6b5c2ea76bae29e388cfbc2f6e92)
1BTBB Wireshark plugin
2
3This is the Bluetooth baseband plugin for Wireshark, it also includes an LMP
4level dissector.
5
6To build this on Debian/Ubuntu/BackTrack linux distributions:
7  sudo apt-get install wireshark-dev wireshark
8  cd libbtbb/wireshark/plugins/btbb/
9  cmake .
10  make
11  make install
12
13This will install to the .wireshark/ in your home directory.  To override this
14set the DESTDIR environment variable when running cmake.
15
16To build the plugin as part of wireshark, use the following commands:
17  tar xf wireshark-1.8.2.tar.bz2
18  cp -R libbtbb/wireshark/plugins/btbb wireshark-1.8.2/plugins/
19  patch -p0 < wireshark-1.8.2/plugins/btbb/wireshark-1.8-btbb.patch
20
21  cd wireshark-1.8.2
22  ./autogen.sh
23  ./configure
24  make
25  sudo make install
26
27