diff options
| author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:15 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-31 23:30:36 +0100 |
| commit | 6ae5bd896abdced8af6854e043f25c58e857e43d (patch) | |
| tree | 5f1071aa337f3f92d819b8f6dcd0d5ecb38be400 /meta/lib | |
| parent | ed363d0ec9a03d033a4bb173d23834d8225292ce (diff) | |
| download | poky-6ae5bd896abdced8af6854e043f25c58e857e43d.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: 2f6571ffb23b1a0b5bd6a1212fc108e536f04539)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
| -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())) |
