Signed-off-by: Michael Buesch <mb@bu3sch.de>
This is a set of tools for debugging the b43 driver and/or firmware.
Note that it is licensed under the GNU GPL version 3 ONLY!
+Installing:
+ Run the install.py script as root.
+
Please be careful when using these tools. They have direct access to the
hardware, so you can easily crash something.
--- /dev/null
+#!/usr/bin/env python
+#
+# Run this script as root to install the debugging tools
+#
+
+from distutils.core import setup
+import sys
+
+if len(sys.argv) == 1:
+ sys.argv.append("install") # default to INSTALL
+
+setup(
+ name="B43-debug-tools",
+ py_modules=["libb43"],
+ scripts=["b43-fwdump"]
+ )