Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: client/deps/iwcap/iwcap.py

Issue 563022: wifi h/w capabilities test (Closed)
Patch Set: fix tarball Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/deps/iwcap/control ('k') | client/deps/iwcap/iwcap.tar.gz » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/iwcap/iwcap.py
diff --git a/client/deps/iwcap/iwcap.py b/client/deps/iwcap/iwcap.py
new file mode 100755
index 0000000000000000000000000000000000000000..0dc39ed8a62361df0e27c5844dea98cdc4d61f9a
--- /dev/null
+++ b/client/deps/iwcap/iwcap.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+
+import os, common
+from autotest_lib.client.bin import utils
+
+version = 1
+
+def setup(tarball, topdir):
+ srcdir = os.path.join(topdir, 'src')
+ utils.extract_tarball_to_dir(tarball, srcdir)
+ os.chdir(srcdir)
+ utils.system('make BINDIR=%s install' % (topdir))
+ os.chdir(topdir)
+
+pwd = os.getcwd()
+tarball = os.path.join(pwd, 'iwcap.tar.gz')
+utils.update_version(pwd + '/src', False, version, setup, tarball, pwd)
« no previous file with comments | « client/deps/iwcap/control ('k') | client/deps/iwcap/iwcap.tar.gz » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698