From: Enrico Jörns Date: Fri, 31 Mar 2023 10:26:15 +0000 (+0200) Subject: oeqa/targetcontrol: do not set dump_host_cmds redundantly X-Git-Tag: yocto-4.1.4~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ddcd9061ec11a53bbb4b7c9ffc1b7880f45a17d5;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git 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 Signed-off-by: Richard Purdie (cherry picked from commit 2f6571ffb23b1a0b5bd6a1212fc108e536f04539) Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index b8d4ea8a70c..bc6b91e994b 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()))