mirror of
https://github.com/dockur/macos.git
synced 2026-03-11 08:34:24 +00:00
feat: Use VirtIO disk for performance (#4)
This commit is contained in:
parent
63de167848
commit
6cabae65c6
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
|
||||
: "${DISK_TYPE:="ide"}"
|
||||
: "${DISK_TYPE:="blk"}"
|
||||
: "${USB:="qemu-xhci,id=xhci -device usb-kbd,bus=xhci.0"}"
|
||||
|
||||
APP="OSX"
|
||||
|
|
@ -20,7 +20,7 @@ cd /run
|
|||
|
||||
trap - ERR
|
||||
|
||||
version=$(qemu-system-aarch64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }')
|
||||
version=$(qemu-system-x86_64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }')
|
||||
info "Booting ${APP}${BOOT_DESC} using QEMU v$version..."
|
||||
|
||||
exec qemu-system-x86_64 ${ARGS:+ $ARGS}
|
||||
|
|
|
|||
Loading…
Reference in a new issue