Index: client/deps/iotools/iotools.py |
diff --git a/client/deps/iotools/iotools.py b/client/deps/iotools/iotools.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..ddc988a865844f958fa6c0bbef8f7d2d045a9591 |
--- /dev/null |
+++ b/client/deps/iotools/iotools.py |
@@ -0,0 +1,29 @@ |
+#!/usr/bin/python |
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+__author__ = 'nsanders@chromium.org (Nick Sanders)' |
+ |
+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) |
+ # 'Add' arm support. |
+ os.chdir(srcdir) |
+ utils.system('patch -p0 < ../iotools.arm.patch') |
+ |
+ utils.system('CROSS_COMPILE=${CTARGET_default}- make') |
+ utils.system('cp iotools %s' % topdir) |
+ os.chdir(topdir) |
+ |
+ |
+# The source is grabbed from |
+# http://iotools.googlecode.com/files/iotools-1.2.tar.gz |
+pwd = os.getcwd() |
+tarball = os.path.join(pwd, 'iotools-1.2.tar.gz') |
+utils.update_version(pwd+'/src', False, version, setup, tarball, pwd) |