We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f78cbd commit 0a5cda8Copy full SHA for 0a5cda8
lib/runners/qemu.nix
@@ -190,9 +190,7 @@ lib.warnIf (mem == 2048) ''
190
"-chardev" "stdio,id=stdio,signal=off"
191
"-device" "virtio-rng-${devType}"
192
] ++
193
- lib.optionals (fwCfgOptions != []) [
194
- "-fw_cfg" (lib.concatStringsSep "," fwCfgOptions)
195
- ] ++
+ builtins.concatMap (fwCfgOption: ["-fw_cfg" fwCfgOption]) fwCfgOptions ++
196
lib.optionals serialConsole [
197
"-serial" "chardev:stdio"
198
0 commit comments