summaryrefslogtreecommitdiffstats
path: root/meta/classes/testimage.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r--meta/classes/testimage.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 07744aff92..173d97408c 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -261,7 +261,8 @@ def testimage_main(d):
261 261
262 bootparams = None 262 bootparams = None
263 if d.getVar('VIRTUAL-RUNTIME_init_manager', '') == 'systemd': 263 if d.getVar('VIRTUAL-RUNTIME_init_manager', '') == 'systemd':
264 bootparams = 'systemd.log_level=debug systemd.log_target=console' 264 # Add systemd.log_level=debug to enable systemd debug logging
265 bootparams = 'systemd.log_target=console'
265 266
266 results = None 267 results = None
267 orig_sigterm_handler = signal.signal(signal.SIGTERM, sigterm_exception) 268 orig_sigterm_handler = signal.signal(signal.SIGTERM, sigterm_exception)