summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Jörns <ejo@pengutronix.de>2023-03-31 12:26:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-31 23:30:34 +0100
commit2f6571ffb23b1a0b5bd6a1212fc108e536f04539 (patch)
treefc502e258430d5e7867090d803b7935f73f33c5b
parent92ffc35052768c753a89b4839c70db87072437a2 (diff)
downloadopenembedded-core-2f6571ffb23b1a0b5bd6a1212fc108e536f04539.tar.gz
oeqa/targetcontrol: do not set dump_host_cmds redundantly
This is already set above, thus simply use the set value from there. Signed-off-by: Enrico Jorns <ejo@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/targetcontrol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index b8d4ea8a70..bc6b91e994 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -145,7 +145,7 @@ class QemuTarget(BaseTarget):
boottime = int(d.getVar("TEST_QEMUBOOT_TIMEOUT")),
use_kvm = use_kvm,
dump_dir = dump_dir,
- dump_host_cmds = d.getVar("testimage_dump_host"),
+ dump_host_cmds = dump_host_cmds,
logger = logger,
tmpfsdir = d.getVar("RUNQEMU_TMPFS_DIR"),
serial_ports = len(d.getVar("SERIAL_CONSOLES").split()))