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: correct CPU and CPUs handling in start request

+2 -1
+2 -1
src/api/machines.ts
··· 144 144 const firmwareArgs = yield* setupFirmware(); 145 145 const qemuArgs = yield* buildQemuArgs({ 146 146 ...vm, 147 - cpu: String(startRequest.cpus ?? vm.cpu), 147 + cpu: String(startRequest.cpu ?? vm.cpu), 148 + cpus: startRequest.cpus ?? vm.cpus, 148 149 memory: startRequest.memory ?? vm.memory, 149 150 portForward: startRequest.portForward 150 151 ? startRequest.portForward.join(",")