shchuko

Untitled

Feb 14th, 2021 (edited)
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1.   QEMU_ARGS=(
  2.     -cpu "host,vmware-cpuid-freq=on"
  3.     -machine "q35"
  4.     -m "$RAM"
  5.     -smp "$SMP"
  6.     -accel "hvf"
  7.     -smbios "type=2"
  8.     -drive "id=Drive,if=virtio,file=$DRIVE,format=$DRIVE_FMT"
  9.     -drive "if=pflash,format=raw,readonly,file=$FIRMWARE_CODE"
  10.     -drive "if=pflash,format=raw,file=$FIRMWARE_VARS"
  11.     -usb
  12.     -device "usb-kbd"
  13.     -device "usb-tablet"
  14.     -device "isa-applesmc,osk=$OSK"
  15.     -nodefaults
  16.     "${INSTALLMEDIA_ARGS[@]}"
  17.     -vga "std"
  18.     -nic "user,model=vmxnet3"
  19.     -boot c
  20.   )
  21.  
Add Comment
Please, Sign In to add comment