aboutsummaryrefslogtreecommitdiff
path: root/devlib/__init__.py
diff options
context:
space:
mode:
authorAnouk Van Laer <anouk.vanlaer@arm.com>2017-01-31 12:48:58 +0000
committerAnouk Van Laer <anouk.vanlaer@arm.com>2017-02-08 11:12:17 +0000
commit29a7940731cb1ec8559d3ae93648de6dc33f7bf8 (patch)
tree209a852c8832b056e2a3b6d37f6fda67ecdff8a4 /devlib/__init__.py
parent5472b671efeb3867e44c51a6e263b48ab85a6cb6 (diff)
downloaddevlib-29a7940731cb1ec8559d3ae93648de6dc33f7bf8.tar.gz
gem5: Addition of a gem5 connection
This is the first in a series of commits to allow for the use of gem5 as a target in devlib. The interaction with the gem5 simulation is done by the Gem5Connection, a type of TelnetConnection. There are two types of Gem5Connections (Linux and Android) as they differ slightly in the implementation of some methods. Other types of connections have only been changed to make them uniform (e.g. arguments for init method) Changes to be committed: modified: devlib/__init__.py modified: devlib/host.py modified: devlib/utils/android.py modified: devlib/utils/ssh.py
Diffstat (limited to 'devlib/__init__.py')
-rw-r--r--devlib/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devlib/__init__.py b/devlib/__init__.py
index 86949d3..f4ff0f3 100644
--- a/devlib/__init__.py
+++ b/devlib/__init__.py
@@ -19,4 +19,4 @@ from devlib.trace.ftrace import FtraceCollector
from devlib.host import LocalConnection
from devlib.utils.android import AdbConnection
-from devlib.utils.ssh import SshConnection, TelnetConnection
+from devlib.utils.ssh import SshConnection, TelnetConnection, Gem5Connection