blob: f6d576c04dbb2143f3a5c40667a0593dda18c242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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", "b43-beautifier"]
)
|