A simple, zero-configuration script to quickly boot FreeBSD ISO images using QEMU
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix drive order issue

+2 -2
+1 -1
src/subcommands/start.ts
··· 48 48 "stdio,id=con0,signal=off", 49 49 "-serial", 50 50 "chardev:con0", 51 + ...await setupFirmwareFilesIfNeeded(), 51 52 ..._.compact( 52 53 vm.drivePath && [ 53 54 "-drive", 54 55 `file=${vm.drivePath},format=${vm.diskFormat},if=virtio`, 55 56 ], 56 57 ), 57 - ...await setupFirmwareFilesIfNeeded(), 58 58 ], 59 59 stdin: "inherit", 60 60 stdout: "inherit",
+1 -1
src/utils.ts
··· 173 173 "stdio,id=con0,signal=off", 174 174 "-serial", 175 175 "chardev:con0", 176 + ...await setupFirmwareFilesIfNeeded(), 176 177 ..._.compact( 177 178 options.drive && [ 178 179 "-drive", 179 180 `file=${options.drive},format=${options.diskFormat},if=virtio`, 180 181 ], 181 182 ), 182 - ...await setupFirmwareFilesIfNeeded(), 183 183 ], 184 184 stdin: "inherit", 185 185 stdout: "inherit",