diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:16 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-04-14 06:30:29 -1000 |
commit | 2e26dcb7ed29c4edb63dd4e82827b65d902ab198 (patch) | |
tree | b21f45049e0b5d895a4e7f1bf29ed10b4b3cdfeb /meta/lib | |
parent | 565850740c6bc36b46f371095a4bd9872e4791dd (diff) | |
download | poky-2e26dcb7ed29c4edb63dd4e82827b65d902ab198.tar.gz |
oeqa/targetcontrol: remove unused imports
(From OE-Core rev: 6659360828b5d022b90e71883159a75f4def7382)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 46b42edbf814d15be3a18283018ede2d4f817bc6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib')
-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): |