-
-
Notifications
You must be signed in to change notification settings - Fork 84
[AUTOPILOT] ZFS ZVOL Support #220
Copy link
Copy link
Open
Labels
InvestigatingThe reported issue is under investigationThe reported issue is under investigationNew FeatureNew feature or requestNew feature or request
Description
Describe the Issue
I am unable to specify a ZVOL that i have configured during autopilot setup. Not sure if this is too niche, but otherwise this project is completely awesome. My workaround was to specify an HDD qcow2 file and then replace it later in virt-manager.
Reproduce the Issue
AUTOPILOT only allows /dev/disk/by-id/* drives but ZVOLs show up under /dev/zvol/[pool name]/..../.....
Expectation
Would be nice to be able to specify ZVOLs or perhaps other types of disks.
Operating System
Ubuntu 25.10
Kernel
Linux 6.17.0-14-generic
Processor
Intel® Xeon® E5-2620 v3 × 24
RAM (in GB)
256
GPU(s)
NVIDIA GeForce RTX 3060
Version
v0.14.1
Branch
main
Generated Script File
#!/usr/bin/env bash
# shellcheck disable=SC2054
#
# APC-RUN_14-02-2026_13-00-37
#
# THIS FILE WAS GENERATED USING AUTOPILOT.
#
# To boot this script, run the following command:
# $ ./boot.sh
#
#
# boot.sh
# Created by Coopydood as part of the ultimate-macOS-KVM project.
#
# Profile: https://github.com/Coopydood
# Repo: https://github.com/Coopydood/ultimate-macOS-KVM
#
# Adapted from OSX-KVM among others.
# Greetz to TheNickDude, Dortania, kholia, foxlet, and other contributors :]
#
ID="macOS"
NAME="macOS 15"
FILE="boot.sh"
ULTMOS=0.14.1
IGNORE_FILE=0
REQUIRES_SUDO=0
VFIO_PTA=0
VFIO_DEVICES=0
GEN_EPOCH=1771070437
FEATURE_LEVEL=12
VERBOSE=1
DISCORD_RPC=1
DISCORD_RPC_IMG="default"
SCREEN_RES="1280x720"
ALLOCATED_RAM="32G"
CPU_SOCKETS="1"
CPU_CORES="6"
CPU_THREADS="2"
CPU_MODEL="Haswell-noTSX"
CPU_FEATURE_ARGS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"
REPO_PATH="/home/[redacted]/src/ultimate-macOS-KVM"
VM_PATH="/home/[redacted]/src/ultimate-macOS-KVM"
OVMF_DIR="/home/[redacted]/src/ultimate-macOS-KVM/ovmf"
VFIO_ID_0="$USR_VFIO_ID_0"
VFIO_ID_1="$USR_VFIO_ID_1"
VFIO_ROM="$USR_VFIO_ROM"
USB_DEVICES="$USR_USB_DEVICES"
NETWORK_DEVICE="virtio-net"
MAC_ADDRESS="00:16:cb:00:38:18"
OS_ID="Sequoia"
HDD_PATH="$VM_PATH/HDD.qcow2"
DISK_TYPE="SSD"
# You should not have to touch anything below this line, especially if you
# don't really know what you're doing. It'll probably break something.
args=(
-global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off
-enable-kvm -m "$ALLOCATED_RAM" -cpu "$CPU_MODEL",kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,"$CPU_FEATURE_ARGS"
-machine q35
-boot menu=on,splash-time=5
#-device usb-ehci,id=ehci
#-device qemu-xhci,id=xhci
-usb -device usb-kbd -device usb-tablet
#USB_DEV_BEGIN
#USB_DEV_END
-smp threads="$CPU_THREADS",cores="$CPU_CORES",sockets="$CPU_SOCKETS"
-device pcie-root-port,bus=pcie.0,slot=1,x-speed=16,x-width=32
#VFIO_DEV_BEGIN
#VFIO_DEV_END
-device isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
-drive if=pflash,format=raw,readonly=on,file="$OVMF_DIR/OVMF_CODE.fd"
-drive if=pflash,format=raw,file="$OVMF_DIR/OVMF_VARS.fd"
-smbios type=2
-audio driver=sdl,model=virtio
-device ich9-ahci,id=sata
-drive id=OpenCore,if=none,format=qcow2,file="$VM_PATH/boot/OpenCore.qcow2"
-drive id=HDD,if=none,file="$HDD_PATH",format=qcow2
-device ide-hd,bus=sata.2,drive=OpenCore,bootindex=1
-device ide-hd,bus=sata.3,drive=HDD,rotation_rate=1
############## REMOVE THESE LINES AFTER MACOS INSTALLATION ###############
-drive id=BaseSystem,if=none,file="$VM_PATH/BaseSystem.img",format=raw
-device ide-hd,bus=sata.4,drive=BaseSystem
##########################################################################
-netdev user,id=net0 -device "$NETWORK_DEVICE",netdev=net0,id=net0,mac="$MAC_ADDRESS"
-device qxl-vga,vgamem_mb=128,vram_size_mb=128
-monitor stdio
#-display none
#-vga qxl
################ UNCOMMENT IF YOU WANT TO USE VNC MONITOR ################
#-vnc 0.0.0.0:1,password=on -k en-us
##########################################################################
)
while getopts d: flag
do
case "${flag}" in
d) DISCORD_RPC=${OPTARG};;
esac
done
if [ $VERBOSE = 1 ]
then
echo
echo \ \ \──────────────────────────────────────────────
echo \ \ \ \ \ $FILE
echo \ \ \ \ \ $ID $OS_ID
echo
echo \ \ \ \ \ Built with ULTMOS v$ULTMOS
echo \ \ \ \ \ Using $CPU_MODEL CPU model
if [ $REQUIRES_SUDO = 1 ]
then
echo \ \ \ \ \ Superuser privileges enabled
fi
if [ $VFIO_PTA = 1 ]
then
echo \ \ \ \ \ Passthrough enabled
else
echo \ \ \ \ \ Passthrough disabled
fi
if [ $DISCORD_RPC = 1 ]
then
echo \ \ \ \ \ Discord RPC enabled
else
echo \ \ \ \ \ Discord RPC disabled
fi
echo \ \ \──────────────────────────────────────────────
echo
fi
if [ $DISCORD_RPC = 1 ]
then
"$REPO_PATH/scripts/drpc.py" --os "$OS_ID" --pt $VFIO_DEVICES --wd "$REPO_PATH" --show "$DISCORD_RPC_IMG" &
fi
qemu-system-x86_64 "${args[@]}"
if [ $DISCORD_RPC = 1 ]
then
pkill -f drpc.py
fiGenerated XML File (if applicable)
<domain xmlns:qemu="http://libvirt.org/schemas/domain/qemu/1.0" type="kvm">
<name>ultmos-15</name>
<uuid>ea461e22-2316-4e52-a859-4efbdfa07a4c</uuid>
<title>macOS Sequoia (ULTMOS)</title>
<description> macOS Sequoia
Converted from /home/[redacted]/src/ultimate-macOS-KVM/boot.sh
This virtual machine was created using ultimate-macOS-KVM, a project by Coopydood.
Visit https://github.com/Coopydood/ultimate-macOS-KVM for help and support, or provide some feedback!
DEBUG
ULTMOS: v0.14.1
XML: /home/[redacted]/src/ultimate-macOS-KVM/boot.xml
AP: /home/[redacted]/src/ultimate-macOS-KVM/boot.sh
APFLOW: Yes
AUTO: Yes
USEBLOBS: Yes
RUNTIME: 13:00:43 14/02/2026
</description>
<memory unit="KiB">33554432</memory>
<currentMemory unit="KiB">33554432</currentMemory>
<memoryBacking>
<hugepages/>
</memoryBacking>
<vcpu placement="static">12</vcpu>
<os>
<type arch="x86_64" machine="pc-q35-7.2">hvm</type>
<loader readonly="yes" type="pflash" format="raw">/home/[redacted]/src/ultimate-macOS-KVM/ovmf/OVMF_CODE.fd</loader>
<nvram format="raw">/home/[redacted]/src/ultimate-macOS-KVM/ovmf/OVMF_VARS.fd</nvram>
<boot dev="hd"/>
</os>
<features>
<acpi/>
<apic/>
<ps2 state="off"/>
</features>
<cpu mode="host-passthrough" check="none" migratable="on">
<topology sockets="1" dies="1" clusters="1" cores="6" threads="2"/>
</cpu>
<clock offset="utc">
<timer name="rtc" tickpolicy="catchup"/>
<timer name="pit" tickpolicy="delay"/>
<timer name="hpet" present="no"/>
</clock>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/qemu-system-x86_64</emulator>
<disk type="file" device="disk">
<driver name="qemu" type="qcow2"/>
<source file="/home/[redacted]/src/ultimate-macOS-KVM/boot/OpenCore.qcow2"/>
<target dev="sda" bus="sata"/>
<address type="drive" controller="0" bus="0" target="0" unit="0"/>
</disk>
<disk type="file" device="disk">
<driver name="qemu" type="raw"/>
<source file="/home/[redacted]/src/ultimate-macOS-KVM/BaseSystem.img"/>
<target dev="sdc" bus="sata"/>
<address type="drive" controller="0" bus="0" target="0" unit="2"/>
</disk>
<disk type="block" device="disk">
<driver name="qemu" type="raw" cache="none" io="native" discard="unmap"/>
<source dev="/dev/zvol/[redacted]/vm/osx/disk0"/>
<target dev="sdd" bus="sata"/>
<address type="drive" controller="0" bus="0" target="0" unit="3"/>
</disk>
<controller type="sata" index="0">
<address type="pci" domain="0x0000" bus="0x00" slot="0x1f" function="0x2"/>
</controller>
<controller type="pci" index="0" model="pcie-root"/>
<controller type="pci" index="1" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="1" port="0x8"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x0" multifunction="on"/>
</controller>
<controller type="pci" index="2" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="2" port="0x9"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x1"/>
</controller>
<controller type="pci" index="3" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="3" port="0xa"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x2"/>
</controller>
<controller type="pci" index="4" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="4" port="0xb"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x3"/>
</controller>
<controller type="pci" index="5" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="5" port="0xc"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x4"/>
</controller>
<controller type="pci" index="6" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="6" port="0xd"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x5"/>
</controller>
<controller type="pci" index="7" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="7" port="0xe"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x6"/>
</controller>
<controller type="pci" index="8" model="pcie-root-port">
<model name="pcie-root-port"/>
<target chassis="8" port="0xf"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x7"/>
</controller>
<controller type="pci" index="9" model="pcie-to-pci-bridge">
<model name="pcie-pci-bridge"/>
<address type="pci" domain="0x0000" bus="0x01" slot="0x00" function="0x0"/>
</controller>
<controller type="usb" index="0" model="ich9-ehci1">
<address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x7"/>
</controller>
<controller type="usb" index="0" model="ich9-uhci1">
<master startport="0"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x0" multifunction="on"/>
</controller>
<controller type="usb" index="0" model="ich9-uhci2">
<master startport="2"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x1"/>
</controller>
<controller type="usb" index="0" model="ich9-uhci3">
<master startport="4"/>
<address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x2"/>
</controller>
<interface type="network">
<mac address="00:16:cb:00:38:18"/>
<source network="default"/>
<model type="virtio-net"/>
<address type="pci" domain="0x0000" bus="0x09" slot="0x02" function="0x0"/>
</interface>
<serial type="pty">
<target type="isa-serial" port="0">
<model name="isa-serial"/>
</target>
</serial>
<console type="pty">
<target type="serial" port="0"/>
</console>
<input type="keyboard" bus="usb">
<address type="usb" bus="0" port="3"/>
</input>
<input type="tablet" bus="usb">
<address type="usb" bus="0" port="4"/>
</input>
<graphics type="spice">
<listen type="none"/>
</graphics>
<sound model="ich9">
<address type="pci" domain="0x0000" bus="0x00" slot="0x1b" function="0x0"/>
</sound>
<audio id="1" type="none"/>
<video>
<model type="virtio" heads="1" primary="yes"/>
<address type="pci" domain="0x0000" bus="0x02" slot="0x00" function="0x0"/>
</video>
<watchdog model="itco" action="reset"/>
<memballoon model="none"/>
</devices>
<qemu:commandline>
<qemu:arg value="-global"/>
<qemu:arg value="ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off"/>
<qemu:arg value="-device"/>
<qemu:arg value="isa-applesmc,osk=ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"/>
<qemu:arg value="-smbios"/>
<qemu:arg value="type=2"/>
<qemu:arg value="-cpu"/>
<qemu:arg value="Haswell-noTSX,kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"/>
<qemu:arg value="-smp"/>
<qemu:arg value="threads=2,cores=6,sockets=1"/>
<qemu:arg value="-global"/>
<qemu:arg value="nec-usb-xhci.msi=off"/>
</qemu:commandline>
</domain>Generated Log File
ULTMOS AUTOPILOT LOG 14-02-2026 12:48:25
───────────────────────────────────────────────────────────────────
[12:48:25.359][ INFO ]: ULTMOS v0.14.1
[12:48:25.359][ INFO ]:
[12:48:25.359][ INFO ]: Name : AutoPilot
[12:48:25.359][ INFO ]: File : autopilot.py
[12:48:25.359][ INFO ]: Identifier : APC
[12:48:25.359][ INFO ]: Vendor : Coopydood
[12:48:25.360][ INFO ]:
[12:48:25.360][ INFO ]: Logging to ./logs/APC_RUN_14-02-2026_12-48-25.log
[12:48:25.360][ OK ]: The NRS folder structure was not detected, will not use NRS
[12:48:25.360][ INFO ]: Downloading notice list
[12:48:25.777][ OK ]: Notice list downloaded
[12:48:25.777][ INFO ]: Checking notice list
[12:48:25.777][ OK ]: Notice list loaded
[12:48:25.777][ INFO ]: Marking spark timestamp
[12:48:25.777][ INFO ]: Displaying menu
[12:48:25.777][ OK ]: Menu displayed
[12:48:25.777][ WAIT ]: Waiting on user input
[12:48:27.377][ OK ]: User input received
[12:48:27.377][ OK ]: ───────────────── STARTING INTERROGATION SEQUENCE ─────────────────
[12:48:27.379][ INFO ]: FEATURE LEVEL 12
[12:48:27.379][ WARN ]: Notice hook has been hit
[12:48:27.380][ INFO ]: Disarming notice selection trigger
[12:48:27.380][ INFO ]: Requesting notice display
[12:48:27.380][ WARN ]: A notice condition has been triggered
[12:48:27.380][ INFO ]: Showing notice
[12:48:27.380][ WARN ]: Non-critical notice, user can continue
[12:48:29.176][ OK ]: Stage 1 sequence initiated
[12:48:29.176][ OK ]: Removing stale blobs
[12:48:31.120][ OK ]: Using default value of boot.sh
[12:48:31.120][ WARN ]: Notice hook has been hit
[12:48:31.120][ WARN ]: Arming notice selection trigger
[12:48:31.121][ OK ]: Stage 2 sequence initiated
[12:48:32.755][ WARN ]: Notice hook has been hit
[12:48:32.755][ WARN ]: Arming notice selection trigger
[12:48:32.755][ OK ]: Stage 2 sequence initiated
[12:48:32.755][ INFO ]: Custom value requested, setting up
[12:48:33.866][ WARN ]: Selection notice trap has been triggered
[12:48:33.866][ INFO ]: Disarming notice selection trigger
[12:48:33.866][ INFO ]: Requesting notice display
[12:48:33.866][ WARN ]: A notice condition has been triggered
[12:48:33.866][ INFO ]: Showing notice
[12:48:33.867][ WARN ]: Non-critical notice, user can continue
[12:48:44.963][ OK ]: Custom value was set to 26
[12:48:44.963][ OK ]: Stage 3 sequence initiated
[12:48:44.963][ WARN ]: Notice hook has been hit
[12:48:44.963][ WARN ]: Arming notice selection trigger
[12:48:44.964][ OK ]: Stage 2 sequence initiated
[12:48:47.403][ WARN ]: Notice hook has been hit
[12:48:47.403][ WARN ]: Arming notice selection trigger
[12:48:47.403][ OK ]: Stage 2 sequence initiated
[12:48:47.403][ INFO ]: Custom value requested, setting up
[12:48:49.574][ OK ]: Custom value was set to 15
[12:48:49.574][ OK ]: Stage 3 sequence initiated
[12:49:02.163][ OK ]: Stage 3 sequence initiated
[12:49:02.164][ INFO ]: Custom value requested, setting up
[12:49:03.574][ OK ]: Custom value was set to 6
[12:49:03.574][ OK ]: Stage 4 sequence initiated
[12:49:06.962][ OK ]: Using default value of 2
[12:49:06.962][ OK ]: Stage 5 sequence initiated
[12:49:11.594][ OK ]: Using default value of Haswell-noTSX
[12:49:11.594][ OK ]: Stage 6 sequence initiated
[12:49:16.283][ OK ]: Using default value of +ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check
[12:49:16.283][ OK ]: Stage 7 sequence initiated
[12:49:28.408][ OK ]: Stage 7 sequence initiated
[12:49:28.408][ INFO ]: Custom value requested, setting up
[12:49:28.409][ WAIT ]: Waiting for user input
[12:49:29.706][ OK ]: User input received
[12:49:29.706][ OK ]: Custom value was set to 32G
[12:49:29.708][ OK ]: Stage 8 sequence initiated
[12:54:48.128][ OK ]: Stage 8 sequence initiated
[12:54:48.129][ INFO ]: Custom value requested, setting up
[12:54:48.129][ WAIT ]: Waiting for user input
[12:55:10.831][ OK ]: User input received
[12:55:10.831][ OK ]: Physical disk set to
[12:55:10.831][ WARN ]: Notice hook has been hit
[12:55:10.831][ WARN ]: Arming notice selection trigger
[12:55:10.831][ OK ]: Stage 9 sequence initiated
[12:55:19.463][ OK ]: Will set disk up as an SSD
[12:55:19.464][ OK ]: Stage 10 sequence initiated
[12:55:23.380][ OK ]: Using default value of virtio-net
[12:55:23.380][ OK ]: Stage 11 sequence initiated
[12:55:24.722][ INFO ]: Generating compatible MAC address
[12:55:24.722][ OK ]: Generated MAC address with value 00:16:cb:00:46:11
[12:55:24.722][ INFO ]: Setting generated MAC address as live variable
[12:55:24.722][ OK ]: Stage 12 sequence initiated
[12:55:29.188][ INFO ]: Arming download mechanism
[12:55:29.188][ OK ]: Downloader armed, will be triggered by AP flow
[12:55:29.189][ OK ]: Stage 13 sequence initiated
[12:55:40.753][ OK ]: Using default value of 1280x720
[12:55:40.754][ OK ]: Stage 14 sequence initiated
[12:55:44.855][ OK ]: Using default value of True
[12:55:48.624][ OK ]: Interrogation complete, displaying summary and AP autoflow sliproad
[12:55:59.671][ OK ]: Stage 14 sequence initiated
[12:56:01.022][ OK ]: Stage 13 sequence initiated
[12:56:01.696][ OK ]: Stage 12 sequence initiated
[12:56:02.227][ OK ]: Stage 11 sequence initiated
[12:56:02.972][ OK ]: Stage 10 sequence initiated
[12:56:04.146][ WARN ]: Notice hook has been hit
[12:56:04.146][ WARN ]: Arming notice selection trigger
[12:56:04.146][ OK ]: Stage 9 sequence initiated
[12:56:06.914][ OK ]: Stage 8 sequence initiated
[12:56:10.313][ OK ]: Stage 8 sequence initiated
[12:56:10.313][ INFO ]: Custom value requested, setting up
[12:56:10.313][ WAIT ]: Waiting for user input
[12:56:10.313][ INFO ]: New gen dialogs enabled, using GUI filepicker
[12:56:17.320][ ERROR ]: Never received a response from the GUI dialog! Did we break? Falling back!
[12:56:17.321][ OK ]: Stage 8 sequence initiated
[12:58:46.222][ OK ]: Stage 8 sequence initiated
[12:58:46.223][ INFO ]: Custom value requested, setting up
[12:58:46.223][ WAIT ]: Waiting for user input
[12:58:54.571][ OK ]: User input received
[12:58:54.571][ OK ]: Custom value was set to 128G
[12:58:54.571][ WARN ]: Notice hook has been hit
[12:58:54.571][ WARN ]: Arming notice selection trigger
[12:58:54.571][ OK ]: Stage 9 sequence initiated
[12:59:00.593][ OK ]: Will set disk up as an SSD
[12:59:00.593][ OK ]: Stage 10 sequence initiated
[12:59:02.251][ OK ]: Using default value of virtio-net
[12:59:02.251][ OK ]: Stage 11 sequence initiated
[12:59:03.444][ INFO ]: Generating compatible MAC address
[12:59:03.444][ OK ]: Generated MAC address with value 00:16:cb:00:38:18
[12:59:03.444][ INFO ]: Setting generated MAC address as live variable
[12:59:03.444][ OK ]: Stage 12 sequence initiated
[12:59:05.970][ INFO ]: Arming download mechanism
[12:59:05.973][ OK ]: Downloader armed, will be triggered by AP flow
[12:59:05.973][ OK ]: Stage 13 sequence initiated
[12:59:08.823][ OK ]: Using default value of 1280x720
[12:59:08.824][ OK ]: Stage 14 sequence initiated
[12:59:11.087][ OK ]: Using default value of True
[12:59:12.827][ OK ]: Interrogation complete, displaying summary and AP autoflow sliproad
[12:59:13.879][ INFO ]: Handoff started, user preferences saved
[12:59:13.879][ OK ]: ───────────────── STARTING AUTOPILOT AUTOFLOW ─────────────────
[12:59:13.879][ INFO ]: Here we go!
[12:59:15.880][ OK ]: Updating status UI
[12:59:18.880][ INFO ]: STARTING PREPARE PHASE
[12:59:18.881][ OK ]: Updating status UI
[12:59:18.881][ INFO ]: Setting up environment
[12:59:18.885][ OK ]: Copied baseConfig into live working file
[12:59:19.885][ INFO ]: Setting up OpenCore image
[12:59:19.885][ INFO ]: Selecting appropriate OpenCore image
[12:59:19.885][ OK ]: Selected NEW OpenCore image
[12:59:19.885][ INFO ]: Copying OpenCore image in place
[12:59:19.907][ OK ]: OpenCore image copied
[12:59:19.907][ INFO ]: Copying OVMF code into place
[12:59:19.916][ INFO ]: Copying OVMF vars for resolution 1280x720
[12:59:19.920][ OK ]: OVMF files copied
[12:59:19.920][ INFO ]: Creating local OVMF variable store
[12:59:19.923][ INFO ]: Performing integrity check
[12:59:20.424][ OK ]: Integrity check PASSED
[12:59:20.424][ OK ]: Updated stage status, handing off to next stage
[12:59:21.424][ OK ]: Updating status UI
[12:59:21.425][ INFO ]: STARTING INTEGRITY PHASE
[12:59:21.425][ OK ]: Updating status UI
[12:59:25.426][ OK ]: Integrity check PASSED
[12:59:25.426][ OK ]: Updated stage status, handing off to next stage
[12:59:26.426][ OK ]: Updating status UI
[12:59:26.427][ INFO ]: STARTING GENERATION PHASE
[12:59:26.427][ INFO ]: Working directory was captured as /home/[redacted]/src/ultimate-macOS-KVM
[12:59:26.427][ OK ]: Updating status UI
[12:59:26.427][ INFO ]: Scanning for file conflict
[12:59:29.428][ INFO ]: Beginning variable injection
[12:59:29.428][ INFO ]: Checking disk type
[12:59:29.428][ WARN ]: Disk type is SSD, modifying rotation rate
[12:59:29.428][ OK ]: Rotation rate updated
[12:59:29.428][ INFO ]: Enabling experimental audio support
[12:59:29.429][ OK ]: Variable injection complete
[12:59:29.429][ INFO ]: Stamping with ULTMOS version
[12:59:29.429][ OK ]: Marked working script as using ULTMOS v0.14.1
[12:59:29.429][ INFO ]: Stamping with feature level
[12:59:29.429][ OK ]: Marked working script as feature level 12
[12:59:29.429][ INFO ]: Checking if Discord rich presence is available
[12:59:29.429][ OK ]: Discord rich presence is available, will enable in script
[12:59:29.429][ OK ]: Updating status UI
[12:59:29.429][ INFO ]: Adding OS ID marker
[12:59:29.429][ INFO ]: Setting up BaseSystem image attachment
[12:59:29.429][ INFO ]: Writing changes
[12:59:29.430][ OK ]: Changes written to file
[12:59:29.430][ INFO ]: Performing integrity check
[12:59:29.430][ OK ]: Integrity check PASSED
[12:59:29.930][ OK ]: Updated stage status, handing off to next stage
[12:59:30.131][ OK ]: Updating status UI
[12:59:31.131][ OK ]: User requested a new macOS recovery image, arming downloader
[12:59:31.131][ INFO ]: STARTING REMOTE RECOVERY PHASE
[12:59:31.132][ OK ]: Updating status UI
[12:59:33.132][ INFO ]: Setting target OS to 15
[12:59:33.132][ OK ]: OS ID is valid, sending to dlosx script
[13:00:25.344][ INFO ]: Checking BaseSystem with a size of 3221016576
[13:00:25.344][ OK ]: Integrity check PASSED
[13:00:25.345][ OK ]: Updated stage status, handing off to next stage
[13:00:25.345][ OK ]: Updating status UI
[13:00:28.345][ OK ]: User requested a new HDD file, generation will go ahead
[13:00:28.345][ INFO ]: STARTING HARDDISK PHASE
[13:00:28.346][ OK ]: Updating status UI
[13:00:30.346][ INFO ]: Scanning for file conflict
[13:00:30.346][ INFO ]: Generating hard disk image file
[13:00:33.383][ OK ]: Hard disk image file generation verified
[13:00:33.383][ OK ]: Updated stage status, handing off to next stage
[13:00:33.784][ OK ]: Updating status UI
[13:00:35.784][ INFO ]: STARTING APPLY PHASE
[13:00:35.785][ OK ]: Updating status UI
[13:00:37.785][ OK ]: Integrity check PASSED
[13:00:37.785][ INFO ]: Dumping contents of baseConfig to memory
[13:00:37.785][ INFO ]: Stripping warning headers
[13:00:37.786][ INFO ]: Generating epoch timestamp
[13:00:37.786][ OK ]: Epoch timestamped as 1771070437
[13:00:37.786][ INFO ]: Writing to file
[13:00:37.786][ OK ]: Header verification complete
[13:00:37.786][ INFO ]: Moving working file into place
[13:00:37.790][ OK ]: Moved working file into boot.sh successfully
[13:00:38.390][ OK ]: Updated stage status, handing off to next stage
[13:00:38.391][ OK ]: Updating status UI
[13:00:40.391][ INFO ]: Checking XML creation preferences
[13:00:40.391][ OK ]: XML creation requested, WILL be generating XML
[13:00:40.392][ OK ]: Updating status UI
[13:00:40.392][ INFO ]: Copying current session blobs into user backdir
[13:00:41.398][ OK ]: Handing off to XMLC and waiting for result
[13:00:48.470][ INFO ]: Got exit signal from XMLC, checking integrity
[13:00:48.470][ OK ]: XML file was successfully generated at boot.xml
[13:00:48.870][ OK ]: Updating status UI
[13:00:50.871][ INFO ]: STARTING PERMISSIONS PHASE
[13:00:50.871][ OK ]: Updating status UI
[13:00:52.872][ INFO ]: Setting execute permissions
[13:00:52.875][ INFO ]: Setting readwrite permissions
[13:00:52.878][ OK ]: Permissons set for new user files
[13:00:52.878][ OK ]: Updated stage status, handing off to next stage
[13:00:53.178][ OK ]: Updating status UI
[13:00:55.179][ OK ]: Updating status UI
[13:00:55.179][ INFO ]: STARTING CLEANUP PHASE
[13:00:56.180][ INFO ]: Copying current session blobs into user backdir
[13:00:56.185][ INFO ]: Marking blobs as stale
[13:00:56.185][ INFO ]: Moving blobs into stale folder
[13:00:56.188][ OK ]: Blob cleanup complete
[13:00:56.188][ OK ]: Updated stage status, handing off to next stage
[13:00:56.388][ OK ]: Updating status UI
[13:00:57.389][ INFO ]: Stopping timer
[13:00:59.389][ INFO ]: Updating variable definition
[13:00:59.390][ OK ]: Timer was stopped with a recorded time of 104 seconds in live mode
[13:00:59.390][ OK ]: AutoPilot stages complete, displaying user summary screen
[13:00:59.390][ OK ]: ───────────────── AUTOPILOT COMPLETE! SESSION TIME WAS 104 SEC ─────────────────
[13:00:59.390][ INFO ]: XML generation was part of AP flow, offering import experience
[13:00:59.390][ WAIT ]: Waiting for user input
[14:32:16.852][ OK ]: User input received
[14:32:16.852][ INFO ]: Handing off to XML importer experience flow
[14:32:16.852][ FATAL ]: bye
[14:32:16.852][ FATAL ]: ───────────────── END OF LOGFILE ─────────────────
[14:32:36.625][ OK ]: User input receivedAdditional Information
The resulting VM works great for my purposes after i switched the storage device to my ZVOL.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
InvestigatingThe reported issue is under investigationThe reported issue is under investigationNew FeatureNew feature or requestNew feature or request