diff options
| author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:15 +0200 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-04-14 06:30:29 -1000 |
| commit | 565850740c6bc36b46f371095a4bd9872e4791dd (patch) | |
| tree | de0b971a14bdb29d4005dc28f5ddbbb2856ebf9c | |
| parent | ab3f78f96045b3627f50c383c8b36632d871b23a (diff) | |
| download | poky-565850740c6bc36b46f371095a4bd9872e4791dd.tar.gz | |
oeqa/targetcontrol: do not set dump_host_cmds redundantly
This is already set above, thus simply use the set value from there.
(From OE-Core rev: ddcd9061ec11a53bbb4b7c9ffc1b7880f45a17d5)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2f6571ffb23b1a0b5bd6a1212fc108e536f04539)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
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): | |||
| 145 | boottime = int(d.getVar("TEST_QEMUBOOT_TIMEOUT")), | 145 | boottime = int(d.getVar("TEST_QEMUBOOT_TIMEOUT")), |
| 146 | use_kvm = use_kvm, | 146 | use_kvm = use_kvm, |
| 147 | dump_dir = dump_dir, | 147 | dump_dir = dump_dir, |
| 148 | dump_host_cmds = d.getVar("testimage_dump_host"), | 148 | dump_host_cmds = dump_host_cmds, |
| 149 | logger = logger, | 149 | logger = logger, |
| 150 | tmpfsdir = d.getVar("RUNQEMU_TMPFS_DIR"), | 150 | tmpfsdir = d.getVar("RUNQEMU_TMPFS_DIR"), |
| 151 | serial_ports = len(d.getVar("SERIAL_CONSOLES").split())) | 151 | serial_ports = len(d.getVar("SERIAL_CONSOLES").split())) |
