Skip to content

Commit e5705d2

Browse files
committed
firecracker, stratovirt: remove hardcoded "verbose" kernel param
1 parent 77aa7f3 commit e5705d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/runners/firecracker.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let
2222
boot-source = {
2323
kernel_image_path = kernelPath;
2424
initrd_path = initrdPath;
25-
boot_args = "console=ttyS0 noapic acpi=off reboot=k panic=1 verbose i8042.noaux i8042.nomux i8042.nopnp i8042.dumbkbd ${builtins.unsafeDiscardStringContext (toString microvmConfig.kernelParams)}";
25+
boot_args = "console=ttyS0 noapic acpi=off reboot=k panic=1 i8042.noaux i8042.nomux i8042.nopnp i8042.dumbkbd ${builtins.unsafeDiscardStringContext (toString microvmConfig.kernelParams)}";
2626
};
2727
machine-config = {
2828
vcpu_count = vcpu;

lib/runners/stratovirt.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ in {
8989

9090
"-kernel" "${kernel}/bzImage"
9191
"-initrd" initrdPath
92-
"-append" "console=${console} edd=off reboot=t panic=-1 verbose ${builtins.unsafeDiscardStringContext (toString microvmConfig.kernelParams)}"
92+
"-append" "console=${console} edd=off reboot=t panic=-1 ${builtins.unsafeDiscardStringContext (toString microvmConfig.kernelParams)}"
9393

9494
"-serial" "stdio"
9595
"-object" "rng-random,id=rng,filename=/dev/random"

0 commit comments

Comments
 (0)