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.

Simplify runQemu call by passing options directly instead of individual parameters

+1 -8
+1 -8
main.ts
··· 77 77 isoPath = null; 78 78 } 79 79 80 - await runQemu(isoPath, { 81 - cpu: options.cpu, 82 - memory: options.memory, 83 - cpus: options.cpus, 84 - drive: options.drive, 85 - diskFormat: options.diskFormat, 86 - size: options.size, 87 - }); 80 + await runQemu(isoPath, options); 88 81 }) 89 82 .parse(Deno.args); 90 83 }