Skip to content

Commit eb7b7a8

Browse files
committed
Enable systemd startup logging by default (on systemd-enabled systems)
- Only effective when --env=RUNCVM_KERNEL_DEBUG=1 - Override this by launching with --env='RUNCVM_KERNEL_APPEND=systemd.show_status=0'
1 parent 29eb732 commit eb7b7a8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

runcvm-scripts/runcvm-ctr-qemu

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ APPEND+=(ipv6.disable=1 panic=-1)
200200
# Disable unneeded functionality
201201
APPEND+=(scsi_mod.scan=none tsc=reliable no_timer_check rcupdate.rcu_expedited=1 i8042.direct=1 i8042.dumbkbd=1 i8042.nopnp=1 i8042.noaux=1 noreplace-smp reboot=k cryptomgr.notests pci=lastbus=0 selinux=0)
202202

203+
# Enable systemd startup logging by default:
204+
# - Only effective when --env=RUNCVM_KERNEL_DEBUG=1
205+
# - Override this by launching with --env='RUNCVM_KERNEL_APPEND=systemd.show_status=0'
206+
APPEND+=(systemd.show_status=1)
207+
203208
if [ "$RUNCVM_KERNEL_DEBUG" = "1" ]; then
204209
APPEND+=(console=$CONSOLE_DEV)
205210
else

0 commit comments

Comments
 (0)