Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTOPILOT] random jump to step 10/14 after virsh import #149

Open
peppergrayxyz opened this issue Dec 28, 2024 · 1 comment
Open

[AUTOPILOT] random jump to step 10/14 after virsh import #149

peppergrayxyz opened this issue Dec 28, 2024 · 1 comment
Assignees
Labels
Bug Something isn't working Investigating The reported issue is under investigation Known Issue This issue has been identified and is being investigated. Under Development A feature or fix in active development

Comments

@peppergrayxyz
Copy link

Describe the Issue

After following the steps, the final step was to import to virt-manger, which was successful.
After the import the script continued at screen "10/14 - Set network adapter model"

Reproduce the Issue

No response

Expectation

Jump to some useful menu, but not randomly into the setup

Operating System

Arch

Kernel

6.13.0-rc2-1

Processor

7840u

RAM (in GB)

64

GPU(s)

No response

Version

v0.12.4

Branch

main

Generated Script File

#!/usr/bin/env bash
# shellcheck disable=SC2054

#
#   APC-RUN_28-12-2024_21-27-31
#
#   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, khoalia, foxlet, and other contributors :]
#


ID="macOS"
NAME="macOS 11"
FILE="boot.sh"

ULTMOS=0.12.4
IGNORE_FILE=0
REQUIRES_SUDO=0
VFIO_PTA=0
VFIO_DEVICES=0
GEN_EPOCH=1735417651
FEATURE_LEVEL=7
VERBOSE=1
DISCORD_RPC=1
DISCORD_RPC_IMG="default"

SCREEN_RES="1920x1080"

ALLOCATED_RAM="8G"
CPU_SOCKETS="1"
CPU_CORES="4"
CPU_THREADS="8"
CPU_MODEL="Haswell-noTSX"
CPU_FEATURE_ARGS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"

REPO_PATH="/home/user/ultimate-macOS-KVM"
OVMF_DIR="/home/user/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="vmxnet3"
MAC_ADDRESS="00:16:cb:00:46:40"

OS_ID="Big Sur"

HDD_PATH="$REPO_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 "$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
-device ich9-intel-hda -device hda-duplex
-device ich9-ahci,id=sata
-drive id=OpenCore,if=none,format=qcow2,file="$REPO_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="$REPO_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
fi

Generated XML File (if applicable)

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<!-- 
	 
	    APC-RUN_28-12-2024_21-27-37
 
    THIS FILE WAS GENERATED USING AUTOPILOT.
				 
     To be used with virsh / virt-manager.
	 
	
	./boot.xml	
	Created by Coopydood as part of the ultimate-macOS-KVM project.
	
	Profile: https://github.com/Coopydood
	Repo: https://github.com/Coopydood/ultimate-macOS-KVM

 -->
<domain xmlns:qemu="http://libvirt.org/schemas/domain/qemu/1.0" type="kvm">
<name>ultmos-11</name>
<title>macOS Big Sur (ULTMOS)</title>
<description> macOS Big Sur Converted from ./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.12.4 XML: ./boot.xml AP: ./boot.sh APFLOW: Yes AUTO: Yes USEBLOBS: Yes RUNTIME: 21:27:37 28/12/2024 </description>
<uuid>4ee6a57b-b9d2-4d55-bde2-14919245a5c6</uuid>
<memory unit="KiB">8388608</memory>
<currentMemory unit="KiB">8388608</currentMemory>
<vcpu placement="static">8</vcpu>
<os>
<type arch="x86_64" machine="pc-q35-4.2">hvm</type>
<loader readonly="yes" type="pflash">/home/user/ultimate-macOS-KVM/ovmf/OVMF_CODE.fd</loader>
<nvram>/home/user/ultimate-macOS-KVM/ovmf/OVMF_VARS.fd</nvram>
<boot dev="hd"/>
</os>
<features>
<acpi/>
<apic/>
</features>
<cpu mode="host-passthrough" check="none" migratable="on">
<topology sockets="1" dies="1" cores="4" 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/user/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">
<!--  HDD HEADER  -->
<driver name="qemu" type="qcow2"/>
<source file="/home/user/ultimate-macOS-KVM/HDD.qcow2"/>
<target dev="sdb" bus="sata" rotation_rate="1"/>
<address type="drive" controller="0" bus="0" target="0" unit="1"/>
</disk>
<!--  HDD FOOTER  -->
<!-- ############# REMOVE THESE LINES AFTER MACOS INSTALLATION ############# -->
<disk type="file" device="disk">
<driver name="qemu" type="raw"/>
<source file="/home/user/ultimate-macOS-KVM/BaseSystem.img"/>
<target dev="sdc" bus="sata"/>
<address type="drive" controller="0" bus="0" target="0" unit="2"/>
</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:46:40"/>
<source network="default"/>
<model type="vmxnet3"/>
<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="mouse" bus="ps2"/>
<input type="keyboard" bus="ps2"/>
<input type="keyboard" bus="usb">
<address type="usb" bus="0" port="3"/>
</input>
<input type="mouse" 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="vga" vram="16384" heads="1" primary="yes"/>
<address type="pci" domain="0x0000" bus="0x09" slot="0x01" function="0x0"/>
</video>
<!--  VFIO-PCI HEADER  -->
<!--  USB HEADER  -->
<!-- <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="-global"/>
<qemu:arg value="nec-usb-xhci.msi=off"/>
<!--  NVME HEADER  -->
</qemu:commandline>
</domain>

Generated Log File

ULTMOS AUTOPILOT LOG 28-12-2024 21:19:19
───────────────────────────────────────────────────────────────────
[21:19:19.720][ INFO ]:  ULTMOS v0.12.4
[21:19:19.720][ INFO ]:   
[21:19:19.720][ INFO ]:  Name       : AutoPilot
[21:19:19.720][ INFO ]:  File       : autopilot.py
[21:19:19.720][ INFO ]:  Identifier : APC
[21:19:19.720][ INFO ]:  Vendor     : Coopydood
[21:19:19.720][ INFO ]:   
[21:19:19.720][ INFO ]:  Logging to ./logs/APC_RUN_28-12-2024_21-19-19.log
[21:19:19.721][ INFO ]:  Downloading notice list
[21:19:21.227][  OK  ]:  Notice list downloaded
[21:19:21.227][ INFO ]:  Checking notice list
[21:19:21.227][  OK  ]:  Notice list loaded
[21:19:21.227][ INFO ]:  Marking spark timestamp
[21:19:21.227][ INFO ]:  Displaying menu
[21:19:21.227][  OK  ]:  Menu displayed
[21:19:21.227][ WAIT ]:  Waiting on user input
[21:19:31.275][  OK  ]:  User input received
[21:19:31.275][  OK  ]:  ───────────────── STARTING INTERROGATION SEQUENCE ─────────────────
[21:19:31.275][ INFO ]:  FEATURE LEVEL 7
[21:19:31.275][  OK  ]:  Stage 1 sequence initiated
[21:19:31.275][  OK  ]:  Removing stale blobs
[21:19:43.434][  OK  ]:  Using default value of boot.sh
[21:19:43.435][ WARN ]:  Notice hook has been hit
[21:19:43.435][ WARN ]:  Arming notice selection trigger
[21:19:43.435][  OK  ]:  Stage 2 sequence initiated
[21:20:51.819][ WARN ]:  Notice hook has been hit
[21:20:51.819][ WARN ]:  Arming notice selection trigger
[21:20:51.820][  OK  ]:  Stage 2 sequence initiated
[21:20:51.820][ INFO ]:  Custom value requested, setting up
[21:20:55.983][  OK  ]:  Custom value was set to 11
[21:20:55.983][  OK  ]:  Stage 3 sequence initiated
[21:21:04.328][  OK  ]:  Stage 3 sequence initiated
[21:21:04.328][ INFO ]:  Custom value requested, setting up
[21:21:07.818][  OK  ]:  Custom value was set to 4
[21:21:07.818][  OK  ]:  Stage 4 sequence initiated
[21:21:17.221][  OK  ]:  Using default value of 2
[21:21:17.222][  OK  ]:  Stage 5 sequence initiated
[21:21:29.922][  OK  ]:  Using default value of Haswell-noTSX
[21:21:29.922][  OK  ]:  Stage 6 sequence initiated
[21:21:35.822][  OK  ]:  Using default value of +ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check
[21:21:35.822][  OK  ]:  Stage 7 sequence initiated
[21:21:43.600][  OK  ]:  Stage 7 sequence initiated
[21:21:43.600][ INFO ]:  Custom value requested, setting up
[21:21:43.600][ WAIT ]:  Waiting for user input
[21:21:50.116][  OK  ]:  User input received
[21:21:50.116][  OK  ]:  Custom value was set to 8G
[21:21:50.116][  OK  ]:  Stage 8 sequence initiated
[21:21:53.455][  OK  ]:  Stage 8 sequence initiated
[21:21:53.456][ INFO ]:  Custom value requested, setting up
[21:21:53.456][ WAIT ]:  Waiting for user input
[21:21:55.340][  OK  ]:  User input received
[21:21:55.340][  OK  ]:  Custom value was set to 8G
[21:21:55.340][ WARN ]:  Notice hook has been hit
[21:21:55.340][ WARN ]:  Arming notice selection trigger
[21:21:55.340][  OK  ]:  Stage 9 sequence initiated
[21:22:00.523][  OK  ]:  Stage 8 sequence initiated
[21:22:03.503][  OK  ]:  Stage 7 sequence initiated
[21:22:06.033][  OK  ]:  Stage 7 sequence initiated
[21:22:06.033][ INFO ]:  Custom value requested, setting up
[21:22:06.033][ WAIT ]:  Waiting for user input
[21:22:08.528][  OK  ]:  User input received
[21:22:08.528][  OK  ]:  Custom value was set to 8G
[21:22:08.529][  OK  ]:  Stage 8 sequence initiated
[21:22:15.157][  OK  ]:  Using default value of 80G
[21:22:15.157][ WARN ]:  Notice hook has been hit
[21:22:15.157][ WARN ]:  Arming notice selection trigger
[21:22:15.157][  OK  ]:  Stage 9 sequence initiated
[21:22:32.102][ WARN ]:  Selection notice trap has been triggered
[21:22:32.102][ INFO ]:  Disarming notice selection trigger
[21:22:32.102][ INFO ]:  Requesting notice display
[21:22:32.102][ WARN ]:  A notice condition has been triggered
[21:22:32.102][ INFO ]:  Showing notice
[21:22:32.103][ WARN ]:  Non-critical notice, user can continue
[21:22:45.232][  OK  ]:  Will set disk up as NVMe
[21:22:45.232][ WARN ]:  Notice hook has been hit
[21:22:45.232][ WARN ]:  Arming notice selection trigger
[21:22:45.232][  OK  ]:  Stage 9 sequence initiated
[21:22:46.517][  OK  ]:  Will set disk up as an SSD
[21:22:46.517][  OK  ]:  Stage 10 sequence initiated
[21:22:50.308][  OK  ]:  Using default value of vmxnet3
[21:22:50.308][  OK  ]:  Stage 11 sequence initiated
[21:23:04.906][ INFO ]:  Generating compatible MAC address
[21:23:04.906][  OK  ]:  Generated MAC address with value 00:16:cb:00:46:40
[21:23:04.906][ INFO ]:  Setting generated MAC address as live variable
[21:23:04.906][  OK  ]:  Stage 12 sequence initiated
[21:23:19.640][ INFO ]:  Arming download mechanism
[21:23:19.640][  OK  ]:  Downloader armed, will be triggered by AP flow
[21:23:19.640][  OK  ]:  Stage 13 sequence initiated
[21:23:31.141][  OK  ]:  Stage 13 sequence initiated
[21:23:31.141][ INFO ]:  Custom value requested, setting up
[21:23:42.410][  OK  ]:  Custom value was set to 1920x1080
[21:23:42.410][  OK  ]:  Stage 14 sequence initiated
[21:23:58.593][  OK  ]:  Using default value of True
[21:23:58.593][  OK  ]:  Interrogation complete, displaying summary and AP autoflow sliproad
[21:24:41.170][ INFO ]:  Handoff started, user preferences saved
[21:24:41.170][  OK  ]:  ───────────────── STARTING AUTOPILOT AUTOFLOW ─────────────────
[21:24:41.170][ INFO ]:  Here we go!
[21:24:43.172][  OK  ]:  Updating status UI
[21:24:46.173][ INFO ]:  STARTING PREPARE PHASE
[21:24:46.173][  OK  ]:  Updating status UI
[21:24:46.183][ INFO ]:  Setting up environment
[21:24:46.187][  OK  ]:  Copied baseConfig into live working file
[21:24:47.188][ INFO ]:  Setting up OpenCore image
[21:24:47.188][ INFO ]:  Selecting appropriate OpenCore image
[21:24:47.188][  OK  ]:  Selected NEW OpenCore image
[21:24:47.188][ INFO ]:  Copying OpenCore image in place
[21:24:47.205][  OK  ]:  OpenCore image copied
[21:24:47.205][ INFO ]:  Copying OVMF code into place
[21:24:47.213][ INFO ]:  Copying OVMF vars for resolution 1920x1080
[21:24:47.217][  OK  ]:  OVMF files copied
[21:24:47.217][ INFO ]:  Creating local OVMF variable store
[21:24:47.220][ INFO ]:  Performing integrity check
[21:24:47.721][  OK  ]:  Integrity check PASSED
[21:24:47.721][  OK  ]:  Updated stage status, handing off to next stage
[21:24:48.722][  OK  ]:  Updating status UI
[21:24:48.723][ INFO ]:  STARTING INTEGRITY PHASE
[21:24:48.723][  OK  ]:  Updating status UI
[21:24:52.724][  OK  ]:  Integrity check PASSED
[21:24:52.724][  OK  ]:  Updated stage status, handing off to next stage
[21:24:53.725][  OK  ]:  Updating status UI
[21:24:53.726][ INFO ]:  STARTING GENERATION PHASE
[21:24:53.726][ INFO ]:  Working directory was captured as /home/user//ultimate-macOS-KVM
[21:24:53.726][  OK  ]:  Updating status UI
[21:24:53.726][ INFO ]:  Scanning for file conflict
[21:24:56.727][ INFO ]:  Beginning variable injection
[21:24:56.728][ INFO ]:  Checking disk type
[21:24:56.728][ WARN ]:  Disk type is SSD, modifying rotation rate
[21:24:56.728][  OK  ]:  Rotation rate updated
[21:24:56.728][  OK  ]:  Variable injection complete
[21:24:56.728][ INFO ]:  Stamping with ULTMOS version
[21:24:56.728][  OK  ]:  Marked working script as using ULTMOS v0.12.4
[21:24:56.728][ INFO ]:  Stamping with feature level
[21:24:56.728][  OK  ]:  Marked working script as feature level 7
[21:24:56.728][ INFO ]:  Checking if Discord rich presence is available
[21:24:56.728][  OK  ]:  Discord rich presence is available, will enable in script
[21:24:56.728][  OK  ]:  Updating status UI
[21:24:56.728][ INFO ]:  Adding OS ID marker
[21:24:56.728][ INFO ]:  Setting up BaseSystem image attachment
[21:24:56.728][ INFO ]:  Writing changes
[21:24:56.728][  OK  ]:  Changes written to file
[21:24:56.729][ INFO ]:  Performing integrity check
[21:24:56.729][  OK  ]:  Integrity check PASSED
[21:24:57.229][  OK  ]:  Updated stage status, handing off to next stage
[21:24:57.430][  OK  ]:  Updating status UI
[21:24:58.432][  OK  ]:  User requested a new macOS recovery image, arming downloader
[21:24:58.432][ INFO ]:  STARTING REMOTE RECOVERY PHASE
[21:24:58.433][  OK  ]:  Updating status UI
[21:25:00.434][ INFO ]:  Setting target OS to 11
[21:25:00.434][  OK  ]:  OS ID is valid, sending to dlosx script
[21:27:19.138][ INFO ]:  Checking BaseSystem with a size of 2147340288
[21:27:19.138][  OK  ]:  Integrity check PASSED
[21:27:19.138][  OK  ]:  Updated stage status, handing off to next stage
[21:27:19.139][  OK  ]:  Updating status UI
[21:27:22.139][  OK  ]:  User requested a new HDD file, generation will go ahead
[21:27:22.139][ INFO ]:  STARTING HARDDISK PHASE
[21:27:22.139][  OK  ]:  Updating status UI
[21:27:24.140][ INFO ]:  Scanning for file conflict
[21:27:24.140][ INFO ]:  Generating hard disk image file
[21:27:27.168][  OK  ]:  Hard disk image file generation verified
[21:27:27.168][  OK  ]:  Updated stage status, handing off to next stage
[21:27:27.569][  OK  ]:  Updating status UI
[21:27:29.569][ INFO ]:  STARTING APPLY PHASE
[21:27:29.569][  OK  ]:  Updating status UI
[21:27:31.570][  OK  ]:  Integrity check PASSED
[21:27:31.571][ INFO ]:  Dumping contents of baseConfig to memory
[21:27:31.571][ INFO ]:  Stripping warning headers
[21:27:31.571][ INFO ]:  Generating epoch timestamp
[21:27:31.571][  OK  ]:  Epoch timestamped as 1735417651
[21:27:31.571][ INFO ]:  Writing to file
[21:27:31.571][  OK  ]:  Header verification complete
[21:27:31.571][ INFO ]:  Moving working file into place
[21:27:31.575][  OK  ]:  Moved working file into boot.sh successfully
[21:27:32.176][  OK  ]:  Updated stage status, handing off to next stage
[21:27:32.176][  OK  ]:  Updating status UI
[21:27:34.177][ INFO ]:  Checking XML creation preferences
[21:27:34.177][  OK  ]:  XML creation requested, WILL be generating XML
[21:27:34.177][  OK  ]:  Updating status UI
[21:27:34.177][ INFO ]:  Copying current session blobs into user backdir
[21:27:35.181][  OK  ]:  Handing off to XMLC and waiting for result
[21:27:42.226][ INFO ]:  Got exit signal from XMLC, checking integrity
[21:27:42.226][  OK  ]:  XML file was successfully generated at boot.xml
[21:27:42.626][  OK  ]:  Updating status UI
[21:27:44.627][ INFO ]:  STARTING PERMISSIONS PHASE
[21:27:44.627][  OK  ]:  Updating status UI
[21:27:46.627][ INFO ]:  Setting execute permissions
[21:27:46.630][ INFO ]:  Setting readwrite permissions
[21:27:46.633][  OK  ]:  Permissons set for new user files
[21:27:46.633][  OK  ]:  Updated stage status, handing off to next stage
[21:27:46.933][  OK  ]:  Updating status UI
[21:27:48.934][  OK  ]:  Updating status UI
[21:27:48.934][ INFO ]:  STARTING CLEANUP PHASE
[21:27:49.934][ INFO ]:  Copying current session blobs into user backdir
[21:27:49.938][ INFO ]:  Marking blobs as stale
[21:27:49.938][ INFO ]:  Moving blobs into stale folder
[21:27:49.940][  OK  ]:  Blob cleanup complete
[21:27:49.940][  OK  ]:  Updated stage status, handing off to next stage
[21:27:50.141][  OK  ]:  Updating status UI
[21:27:51.141][ INFO ]:  Stopping timer
[21:27:53.142][ INFO ]:  Updating variable definition
[21:27:53.142][  OK  ]:  Timer was stopped with a recorded time of 190 seconds in live mode
[21:27:53.143][  OK  ]:  AutoPilot stages complete, displaying user summary screen
[21:27:53.143][  OK  ]:  ───────────────── AUTOPILOT COMPLETE! SESSION TIME WAS 190 SEC ─────────────────
[21:27:53.143][ INFO ]:  XML generation was part of AP flow, offering import experience
[21:27:53.143][ WAIT ]:  Waiting for user input
[21:28:08.087][  OK  ]:  User input received
[21:28:08.087][ INFO ]:  Handing off to XML importer experience flow
[21:28:08.087][ FATAL ]: bye
[21:28:08.087][ FATAL ]: ───────────────── END OF LOGFILE ─────────────────
[21:28:36.369][  OK  ]:  Stage 10 sequence initiated

Additional Information

No response

@peppergrayxyz peppergrayxyz added Bug Something isn't working Pending The issue or pull request is being reviewed labels Dec 28, 2024
@iscle
Copy link

iscle commented Jan 6, 2025

The same thing happened to me right now! Clean clone + install.

@Coopydood Coopydood added Known Issue This issue has been identified and is being investigated. Investigating The reported issue is under investigation Under Development A feature or fix in active development and removed Pending The issue or pull request is being reviewed labels Jan 19, 2025
@github-project-automation github-project-automation bot moved this to Issues in ULTMOS Jan 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Investigating The reported issue is under investigation Known Issue This issue has been identified and is being investigated. Under Development A feature or fix in active development
Projects
Status: Issues
Development

No branches or pull requests

3 participants