summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
authorEnrico Jörns <ejo@pengutronix.de>2023-03-31 12:26:22 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-31 23:30:36 +0100
commitd59756912cd450b0af3d8893b822c66dafe42544 (patch)
treef3e36f71bb14de19619d05200feb337282996fa8 /meta/lib/oeqa/targetcontrol.py
parent4651c42cabd3c3a165589d2a7f1d26f41e81a0b8 (diff)
downloadpoky-d59756912cd450b0af3d8893b822c66dafe42544.tar.gz
oeqa: whitespace and indentation cleanups
(From OE-Core rev: 4922221d1259e2f78233f17bb901cdac5b9aa520) Signed-off-by: Enrico Jorns <ejo@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r--meta/lib/oeqa/targetcontrol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index f5f2ce2f12..d686fe07ec 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -38,7 +38,7 @@ class BaseTarget(object, metaclass=ABCMeta):
38 if os.path.islink(sshloglink): 38 if os.path.islink(sshloglink):
39 os.unlink(sshloglink) 39 os.unlink(sshloglink)
40 os.symlink(self.sshlog, sshloglink) 40 os.symlink(self.sshlog, sshloglink)
41 self.logger.info("SSH log file: %s" % self.sshlog) 41 self.logger.info("SSH log file: %s" % self.sshlog)
42 42
43 @abstractmethod 43 @abstractmethod
44 def start(self, params=None, ssh=True, extra_bootparams=None): 44 def start(self, params=None, ssh=True, extra_bootparams=None):
@@ -159,7 +159,7 @@ class QemuTarget(BaseTarget):
159 os.unlink(qemuloglink) 159 os.unlink(qemuloglink)
160 os.symlink(self.qemulog, qemuloglink) 160 os.symlink(self.qemulog, qemuloglink)
161 161
162 self.logger.info("rootfs file: %s" % self.rootfs) 162 self.logger.info("rootfs file: %s" % self.rootfs)
163 self.logger.info("Qemu log file: %s" % self.qemulog) 163 self.logger.info("Qemu log file: %s" % self.qemulog)
164 super(QemuTarget, self).deploy() 164 super(QemuTarget, self).deploy()
165 165