diff options
-rw-r--r-- | meta/classes/testimage.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 525c5a6173..befda6b72c 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -262,6 +262,12 @@ def testimage_main(d): | |||
262 | # It would be better to find these modules using instrospection. | 262 | # It would be better to find these modules using instrospection. |
263 | target_kwargs['target_modules_path'] = d.getVar('BBPATH') | 263 | target_kwargs['target_modules_path'] = d.getVar('BBPATH') |
264 | 264 | ||
265 | # hardware controlled targets might need further access | ||
266 | target_kwargs['powercontrol_cmd'] = d.getVar("TEST_POWERCONTROL_CMD") or None | ||
267 | target_kwargs['powercontrol_extra_args'] = d.getVar("TEST_POWERCONTROL_EXTRA_ARGS") or "" | ||
268 | target_kwargs['serialcontrol_cmd'] = d.getVar("TEST_SERIALCONTROL_CMD") or None | ||
269 | target_kwargs['serialcontrol_extra_args'] = d.getVar("TEST_SERIALCONTROL_EXTRA_ARGS") or "" | ||
270 | |||
265 | # runtime use network for download projects for build | 271 | # runtime use network for download projects for build |
266 | export_proxies(d) | 272 | export_proxies(d) |
267 | 273 | ||