diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-31 23:30:36 +0100 |
commit | fbd4843544698cd68a0b52aea331de896a0f687c (patch) | |
tree | a111e505311ab363fa9286836b6a5d1997acd8e2 /meta/lib/oeqa | |
parent | 6ae5bd896abdced8af6854e043f25c58e857e43d (diff) | |
download | poky-fbd4843544698cd68a0b52aea331de896a0f687c.tar.gz |
oeqa/targetcontrol: remove unused imports
(From OE-Core rev: 46b42edbf814d15be3a18283018ede2d4f817bc6)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index bc6b91e994..f5f2ce2f12 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py | |||
@@ -7,18 +7,14 @@ | |||
7 | # This module is used by testimage.bbclass for setting up and controlling a target machine. | 7 | # This module is used by testimage.bbclass for setting up and controlling a target machine. |
8 | 8 | ||
9 | import os | 9 | import os |
10 | import shutil | ||
11 | import subprocess | 10 | import subprocess |
12 | import bb | 11 | import bb |
13 | import traceback | ||
14 | import sys | ||
15 | import logging | 12 | import logging |
16 | from oeqa.utils.sshcontrol import SSHControl | 13 | from oeqa.utils.sshcontrol import SSHControl |
17 | from oeqa.utils.qemurunner import QemuRunner | 14 | from oeqa.utils.qemurunner import QemuRunner |
18 | from oeqa.utils.qemutinyrunner import QemuTinyRunner | 15 | from oeqa.utils.qemutinyrunner import QemuTinyRunner |
19 | from oeqa.utils.dump import TargetDumper | 16 | from oeqa.utils.dump import TargetDumper |
20 | from oeqa.utils.dump import MonitorDumper | 17 | from oeqa.utils.dump import MonitorDumper |
21 | from oeqa.controllers.testtargetloader import TestTargetLoader | ||
22 | from abc import ABCMeta, abstractmethod | 18 | from abc import ABCMeta, abstractmethod |
23 | 19 | ||
24 | class BaseTarget(object, metaclass=ABCMeta): | 20 | class BaseTarget(object, metaclass=ABCMeta): |