mirror of
https://github.com/foxlet/macOS-Simple-KVM
synced 2024-11-21 18:53:06 +00:00
[TOOLS] Dynamically replace machine type with highest supported QEMU version.
This commit is contained in:
parent
20d8871c09
commit
1429996890
2 changed files with 3 additions and 2 deletions
3
make.sh
3
make.sh
|
@ -4,6 +4,7 @@
|
|||
# by Foxlet <foxlet@furcode.co>
|
||||
|
||||
VMDIR=$PWD
|
||||
MACHINE=$(qemu-system-x86_64 --machine help | grep q35 | cut -d" " -f1 | egrep -oe ".*-[0-9.]+" | sort -rV | head -1)
|
||||
OUT="template.xml"
|
||||
|
||||
print_usage() {
|
||||
|
@ -20,7 +21,7 @@ error() {
|
|||
}
|
||||
|
||||
generate(){
|
||||
sed -e "s|VMDIR|$VMDIR|g" tools/template.xml.in > $OUT
|
||||
sed -e "s|VMDIR|$VMDIR|g" -e "s|MACHINE|$MACHINE|g" tools/template.xml.in > $OUT
|
||||
echo "$OUT has been generated in $VMDIR"
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<currentMemory unit='KiB'>2097152</currentMemory>
|
||||
<vcpu placement='static'>4</vcpu>
|
||||
<os>
|
||||
<type arch='x86_64' machine='pc-q35-3.0'>hvm</type>
|
||||
<type arch='x86_64' machine='MACHINE'>hvm</type>
|
||||
<loader readonly='yes' type='pflash'>VMDIR/firmware/OVMF_CODE.fd</loader>
|
||||
<nvram>VMDIR/firmware/OVMF_VARS-1024x768.fd</nvram>
|
||||
<boot dev='hd'/>
|
||||
|
|
Loading…
Reference in a new issue