test_iso.sh 362 B

123456789101112131415
  1. #!/bin/sh
  2. # Auteur : thuban <thuban@yeuxdelibad.net>
  3. # licence : MIT
  4. # Description : test openbsd curstom iso
  5. # Depends : qemu
  6. if [ ! -f sio2.img ]; then
  7. qemu-img create -f qcow2 test.img 20G
  8. qemu-system-x86_64 -cdrom hads.iso -hda test.img -boot d -m 1G,slots=3,maxmem=4G
  9. else
  10. qemu-system-x86_64 -hda test.img -m 1G,slots=3,maxmem=4G
  11. fi