1
0
Fork 0
mirror of https://github.com/foxlet/macOS-Simple-KVM.git synced 2024-11-26 21:19:41 +01:00

Prepended $VMDIR to all image paths for consistency

This commit is contained in:
Luke Mlsna 2020-10-02 12:03:30 -07:00
parent 527588d5a2
commit fb5bf60cee
No known key found for this signature in database
GPG key ID: D16DF300466E0CE2

View file

@ -1,7 +1,7 @@
#!/bin/bash
OSK="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
VMDIR=$PWD
VMDIR="$PWD"
OVMF=$VMDIR/firmware
#export QEMU_AUDIO_DRV=pa
#QEMU_AUDIO_DRV=pa
@ -22,7 +22,9 @@ qemu-system-x86_64 \
-netdev user,id=net0 \
-device e1000-82545em,netdev=net0,id=net0,mac=52:54:00:c9:18:27 \
-device ich9-ahci,id=sata \
-drive id=ESP,if=none,format=qcow2,file=ESP.qcow2 \
-drive id=ESP,if=none,format=qcow2,file="$VMDIR/ESP.qcow2" \
-device ide-hd,bus=sata.2,drive=ESP \
-drive id=InstallMedia,format=raw,if=none,file=BaseSystem.img \
-drive id=InstallMedia,format=raw,if=none,file="$VMDIR/BaseSystem.img" \
-device ide-hd,bus=sata.3,drive=InstallMedia \
-drive id=SystemDisk,if=none,file="$VMDIR/MyDisk.qcow2" \
-device ide-hd,bus=sata.4,drive=SystemDisk