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:
parent
527588d5a2
commit
fb5bf60cee
1 changed files with 5 additions and 3 deletions
8
basic.sh
8
basic.sh
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue