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

Does not work if passed through to a VM #291

Closed
Myp3a opened this issue Aug 23, 2024 · 30 comments
Closed

Does not work if passed through to a VM #291

Myp3a opened this issue Aug 23, 2024 · 30 comments
Assignees

Comments

@Myp3a
Copy link

Myp3a commented Aug 23, 2024

macOS Version

Sonoma

What is your CPU's model?

AMD Ryzen 5700G

Please describe the behaviour in detail.

Hello! I'm trying to set up macOS on QEMU/KVM with GPU passthrough. Fixed most of the things, the next one is GPU.

When I'm trying to boot with NootedRed, system just hangs at GPU initialization. Logs stop, and there's a reboot in the next few seconds (even with keepsyms=1 -v debug=0x100). Without the kext, system boot fine and recognizes the GPU - but no graphics acceleration available, as expected. With or without the kext, the HDMI output is blank (contains last udev messages before vfio-pci takeover).

My host OS is:

  • OS: Arch Linux (linux-zen 6.10.6, ACS patch enabled)
  • CPU: Ryzen 7 5700G
  • RAM: 48GB
  • iGPU: Vega 8 (VFIO passthrough with linked audio device)
  • dGPU: RX6700XT / Tesla P100 (stays on host, macOS knows nothing about them)

My guest macOS is:

  • OS: macOS Sonoma 14.6.1
  • CPU: Haswell-noTSX emulation layer, 4 cores
  • RAM: 16GB
  • QEMU display, VNC, SSH
  • Loader: OpenCore 1.0.1
  • Kexts: Lilu, AppleALC, MCEReporterDisabler, NootedRed, USBPorts, VirtualSMC

My config.plist: config.txt

My QEMU boot command
#!/bin/bash

args=(
    -nodefaults 
    -cpu Haswell-noTSX,vendor=GenuineIntel,+hypervisor,+invtsc,vmware-cpuid-freq=on,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check 
    -smp 4,sockets=1,dies=1,cores=4,threads=1 
    -m 16G 
    -machine type=q35,smm=off,graphics=off,vmport=off,dump-guest-core=off,hpet=off,accel=kvm 
    -enable-kvm 
    -global kvm-pit.lost_tick_policy=discard 
    -display none
    -vga vmware 
    -monitor stdio 
    -name macos,process=macos,debug-threads=on 
    -device nec-usb-xhci,id=xhci 
    -device usb-kbd,bus=xhci.0 
    -global nec-usb-xhci.msi=off 
    -device usb-tablet 
    -netdev user,id=net0,hostfwd=tcp::2222-:22 -device vmxnet3,netdev=net0,id=net0,mac=52:54:00:c9:18:27
    -device virtio-blk-pci,drive=InstallMedia,scsi=off,bus=pcie.0,addr=0x6 
    -drive file=/home/ivga/macos/system/base.dmg,id=InstallMedia,format=dmg,cache=unsafe,readonly=on,if=none 
    -drive file=/home/ivga/macos/system/data.img,id=data3,format=raw,cache=none,aio=native,discard=on,detect-zeroes=on,if=none 
    -device virtio-blk-pci,drive=data3,scsi=off,bus=pcie.0,addr=0xa,iothread=io2,bootindex=3 
    -object iothread,id=io2 
    -device virtio-blk-pci,drive=OpenCore,scsi=off,bus=pcie.0,addr=0x5,bootindex=9 
    -drive file=/home/ivga/macos/system/boot.img,id=OpenCore,format=raw,cache=unsafe,readonly=on,if=none 
    -smbios type=2 
    -rtc base=utc,base=localtime 
    -global ICH9-LPC.disable_s3=1 
    -global ICH9-LPC.disable_s4=1 
    -global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off 
    -device isa-applesmc,osk=ourhardworkbythesewordsguardedpleasedontsteal\(c\)AppleComputerInc 
    -drive if=pflash,format=raw,readonly=on,file=/home/ivga/macos/system/macos.rom 
    -drive if=pflash,format=raw,file=/home/ivga/macos/system/macos.vars 
    -object rng-random,id=objrng0,filename=/dev/urandom 
    -device virtio-rng-pci,rng=objrng0,id=rng0,bus=pcie.0,addr=0x1c 
    -device virtio-balloon-pci,id=balloon0,bus=pcie.0,addr=0x4 
    -device vfio-pci,host=0a:00.0
    -device vfio-pci,host=0a:00.1
    -vnc 0.0.0.0:1,password=on
)

qemu-system-x86_64 "${args[@]}"
IORegExplorer showing the passed GPU

ioreg

GPU in system information

sysinf

OS boot hang location

hang

My ACPI definitions (as seen from OpenCore): acpi.zip

Thank you for the great work! I hope this one can be solved too. Really want the acceleration for snappy UI, and host doesn't need the iGPU at all

What should've happened instead?

macOS should boot as expected and provide graphics acceleration

If applicable, attach the .gpuRestart, .panic, etc file related to this issue.

No response

@Myp3a Myp3a added the Bug Something isn't working label Aug 23, 2024
Copy link

Greetings. It seems like this is the first issue you open on this repository.

We are letting you know that these are for bug reports or feature requests. Most of the reports we receive in this GitHub Organisation are user errors.

For the sake of saving time, here are the most common cases:

  • Outdated version of this kext.
  • Conflicts with other kexts (e.g. WhateverGreen).
  • Issues caused by other kexts like memory corruption (e.g. AirportItlwm).
  • Intended behaviour by Apple (e.g. V-Sync or cursor rendering).
  • Using cheap hacks like kext/library downgrades (e.g. OCLP, BFixup).
  • Duplicate kexts.
  • Malformed config.plist caused by configurator software (OCAT, OCC, etc).
  • Lack of TSC synchronisation or use of badly programmed TSC kext (only use ForgedInvariant).
  • Outdated macOS minor version (e.g. macOS 11.0.0 instead of latest).
  • Using beta versions of macOS.
  • Using the kext during installation or update. There is a Lilu bug which makes macOS stall during the last install phase.
  • Incorrect SMBIOS. Please use iMac20,1, MacBookPro16,3, MacPro7,1 or iMacPro1,1.
  • (e)DP link training failure. -NRedDPDelay will fix this as mentioned in the README. This is last resort, black screen can be caused by other factors mentioned.
  • Insufficient VRAM size.

We will never support the use of configurator software, solutions like OCLP/BFixup, or using macOS beta versions.

This issue will be looked over by the respective maintainer when they can. In the meantime, look if you can resolve this yourself via checking the above.

Be patient, we are hobbyists.

@nononymousse
Copy link

might be the same as #235

@Myp3a
Copy link
Author

Myp3a commented Aug 23, 2024

It might, but #235 mentions crashes, while system is properly booted. Mine, in contrast, doesn't boot at all

@VisualEhrmanntraut
Copy link
Member

might be the same as #235

Nah. I think even Linux has trouble with AMD iGPUs being passed through to it. Or at least it did in the past. I would suggest waiting a little bit as I'm working on a semi-big bug fix and rewrite commit.

@VisualEhrmanntraut
Copy link
Member

VisualEhrmanntraut commented Aug 23, 2024

The changes in question has been pushed. Let's see if it is fixed.

@Myp3a
Copy link
Author

Myp3a commented Aug 24, 2024

Nope, still stuck at the exact same place with reboot

@VisualEhrmanntraut
Copy link
Member

Well, when it gets stuck here, it means it can't get the VBIOS. Perhaps you need to inject your system's VFCT ACPI table into the VM somehow.

@Myp3a
Copy link
Author

Myp3a commented Aug 24, 2024

The VFCT table couldn't be injected, it's too big for QEMU. vfio-pci's romfile option also doesn't work. However, I can dump the VBIOS from my host OS and get a file with it - is there a way to load VBIOS from file instead of ACPI?

EDIT: dumped the ACPI with dGPU detached, now it passes the size requirement and injects, but no luck here

@jalavoui
Copy link

jalavoui commented Aug 24, 2024

yes inject ATY,bin_image by using opencore device properties. you can get the dump from linux but i dont remenber exactly how

@VisualEhrmanntraut
Copy link
Member

Probably should not instruct him to rebuild the entire kext. Just use OpenCore's DeviceProperties method.

@Myp3a
Copy link
Author

Myp3a commented Aug 24, 2024

Wow, guys, you rock! I did some changes to PCI QEMU settings and injected the VBIOS - and it works!
Now I've got two small problems:

  • My HDMI output (the only one) is blank
  • VM reboot throws it into bootloop (probably expected, as iGPU doesn't get proper deinitialization - full host reboot solves it)

I wonder if these are the easy fixes, but if not, I'm fine with this - fully covers my use-case

@Myp3a
Copy link
Author

Myp3a commented Aug 26, 2024

My MB died, so I was forced to buy a new one, and it's doesn't play well with macOS. I get a hard host reboot (not even a kernel panic) every time I turn my VM on. This isn't a VBIOS issue, probably - I have extracted a new one. No displays are plugged into the iGPU. Once again, if this is easily fixable - I'm all ears, otherwise feel free to close the issue, because this is becoming more about my problems than the kext ones.

Last log lines before reboot

IMG_5763

@PRBB28
Copy link

PRBB28 commented Sep 10, 2024

Maybe this is a bit late, you need to remove the vmware vga when you passhtrough the igpu. I had the same problem but under proxmox, but should be similar since it uses kvm as well.

@Myp3a
Copy link
Author

Myp3a commented Sep 17, 2024

But how can I debug the boot process without the virtual display?

With virtual display and physical display connected the system still reboots.
Without virtual display and with physical display it boots to some point that my router registers the DHCP lease. Afterwards, host system hangs for a while but survives that without rebooting. However, VM is stuck at 100% CPU and doesn't respond to anything (and display is blank)

@VisualEhrmanntraut
Copy link
Member

you can add a serial device and send its output to a file

@VisualEhrmanntraut VisualEhrmanntraut changed the title KVM Sonoma hangs at boot Does not work if passed through to a VM Sep 17, 2024
@Molay
Copy link

Molay commented Oct 3, 2024

Please check whether the virtual machine has the following configuration.

  1. The 5700G will have devices from 0x:00.0 to 0x:00.6, such as 04:00.0 (core graphics), 04:00.1 (core graphics audio), 04:00.2 (Platform Security Processor), 04:00.3 (USB 3.1 controller), etc.
    By default, these devices share one IOMMU Group.
    If you need to pass the core graphics and core graphics audio to the virtual machine, you need to set up a separate IOMMU Group for each.
    For details, you can search for how to set up an IOMMU Group.
  2. You need to set the correct VBIOS for the core graphics and set it as the primary GPU.
hostpci0: 0000:04:00.0,pcie=1,romfile=5700G.rom,x-vga=1
hostpci1: 0000:04:00.1,pcie=1,rombar=0
vga: none
  1. The core graphics needs to be placed on the pci.0 bus.
args: -set device.hostpci0.bus=pci.0 -set device.hostpci0.addr=0x01.0 -set device.hostpci1.bus=pci.0 -set device.hostpci1.addr=0x02.0

After all these settings are completed, it should be able to start normally.

However, it should be noted that the restart of the virtual machine will be stuck because the integrated graphics hardware cannot be automatically reset. It can only be restored by restarting Proxmox VE. There may be a solution later.

@Myp3a
Copy link
Author

Myp3a commented Oct 3, 2024

Yeah, I've set up my IOMMU groups with Zen kernel and ACS override patch. VBIOS isn't an issue, I'm passing it to the GPU by injecting it with device properties. GPU is also on the PCI.0 bus.

I'm a bit puzzled that it worked for a moment, but doesn't work with another MB and another (but same model) CPU. Still setting up the debug environment, though, will be back later with serial logs

@Myp3a
Copy link
Author

Myp3a commented Oct 3, 2024

My boot log via serial output (set it up with the instruction here). Looks like a lot is missing, am I doing it properly?

Boot log
kprintf initialized
version_variant = 0
version         = Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
KASLR slide: 0x0000000007800000 dynamic
Hiding local relocations
WARNING: ignoring first page in [0x0:0x86]
Physical memory 8192 MB
avail_remaining = 0x1ff6e6
Kernel virtual space from 0xffffff8000000000 to 0xffffffffffffefff.
Available physical space from 0xc3cf000 to 0x27ffff000
initialize_screen: b=00000000, w=00000000, h=00000000, r=00000000, d=00000001
initialize_screen: No video - forcing serial mode
IOKit IOMD setownership ENABLED
ATM subsystem is initialized
Telemetry: Sampling all tasks once per 1 second
Scheduler: Default of dualq
Setting scheduler priority decay band limit 18
BANK subsystem is initialized
IPC_PTHREAD_PRIORITY subsystem is initialized
Reallocated master cpu data: 0xffffff80088f3980, interrupt stack: 0xffffff80145e1000, fault stack: 0xffffff800790c800
CPU identification: Intel Core Processor (Haswell, no TSX)
CPU features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 PCLMULQDQ SSSE3 FMA CX16 SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES VMM XSAVE OSXSAVE TSCTMR AVX1.0 RDRAND F16C RDWRFSGS BMI1 AVX2 SMEP BMI2 ERMS INVPCID
  HTT: 4 cores per package; 4 logical cpus per package
CPU extended features: SYSCALL XD EM64T LAHF LZCNT RDTSCP TSCI
Initializing EFI runtime services
MSR_IA32_APIC_BASE 0xfee00000 enabled legacy mode BSP
x2APIC supported and will be enabled
x2APIC mode enabled
ID: 0x0 LDR: 0x1
Boot cpu local APIC id 0x0
TSC sync margin disabled
fpu_state: AVX, state_size: 832
Kernel text 0xffffff8007ae4000-0xffffff80084e4000 to be write-protected
Marking (0xffffff8007a10000, 0xffffff8007ae0000) as rwx
Marking (0xffffff8008b64000, 0xffffff8008ba0000) as rwx
Marking (0xffffff8008ba0000, 0xffffff8008ba1000) as rwx
Marking (0xffffff80084e4000, 0xffffff80084f6000) as rwx
Marking (0xffffff8007ae0000, 0xffffff8007ae1000) as rwx
Marking (0xffffff8008ba1000, 0xffffff8008ba1000) as rwx
Marking (0xffffff80084f6000, 0xffffff80084f6000) as rwx
Marking (0xffffff800b930000, 0xffffff800bcbd000) as rwx
Marking (0xffffff800a8b8000, 0xffffff800a903000) as rwx
Marking (0xffffff8007a10000, 0xffffff8007a10000) as rwx
Marking (0xffffff800a94c000, 0xffffff800b453000) as rwx
[RTCLOCK] frequency 3790000000 (3792887000)
Registered coredump handler for kernel
Kernel boot args: 'keepsyms=1 -v -NRedDebug debug=0x12a msgbuf=1048576 '
corecrypto_kext_start (tracing disabled)
FIPSPOST_KEXT [358126726] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, Kernel, Software, SL1]
FIPSPOST_KEXT [360096273] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac
FIPSPOST_KEXT [362037817] fipspost_post:166: PASSED: (0 ms) - fipspost_post_integrity
FIPSPOST_KEXT [363339484] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator
FIPSPOST_KEXT [364601235] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb
FIPSPOST_KEXT [365844903] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc
FIPSPOST_KEXT [369054461] fipspost_post:173: PASSED: (1 ms) - fipspost_post_rsa_sig
FIPSPOST_KEXT [374676384] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa
FIPSPOST_KEXT [376008458] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh
FIPSPOST_KEXT [376983233] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm
FIPSPOST_KEXT [377770316] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac
FIPSPOST_KEXT [378463373] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf
FIPSPOST_KEXT [384123748] fipspost_post:179: PASSED: (5 ms) - fipspost_post_pbkdf
FIPSPOST_KEXT [384878662] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac
FIPSPOST_KEXT [385694068] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr
FIPSPOST_KEXT [386377828] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac
FIPSPOST_KEXT [387034617] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm
FIPSPOST_KEXT [387662072] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts
FIPSPOST_KEXT [388383292] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb
FIPSPOST_KEXT [389110653] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr
FIPSPOST_KEXT [389773925] fipspost_post:210: all tests PASSED (31 ms)
corecrypto_kext_start completed successfully
Matching service count = 0
Matching service count = 0
ulock_initialize>thread_max=10240, ull_hash_buckets=4096
ACPI: RSDP 0x000000007FB7E014 000024 (v02 BOCHS )
ACPI: XSDT 0x000000007FBFA000 000064 (v01 BOCHS  BXPC     00000001      01000013)
ACPI: FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: DSDT 0x000000007FB7B000 001FD1 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: FACS 0x000000007FBDD000 000040
ACPI: APIC 0x000000007FB79000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)
ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)
ACPI: AppleCyrus::probe(IOResources)
AppleKeyStoreTest::probe(IOResources)
AppleCyrus::start(IOResources) <1>
IOGetBootKeyStoreData: data at address 0 size 0
AppleKeyStoreTest::start(IOResources) <1>
SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)
ACPI Error: [S38_] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-310)
ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)
ACPI Error: 1 table load failures, 4 successful (20160930/tbxfload-342)
pci (build 20:58:17 Jul 29 2024), flags 0xc3080
cpu_data_alloc(1) 0xffffff80088f4b80 desc_table: 0xffffff800792c320 ldt: 0xffffff89f988c000 int_stack: 0xffffff80145cd000-0xffffff80145d1000
cpu_data_alloc(2) 0xffffff80088f5d80 desc_table: 0xffffff800792c640 ldt: 0xffffff89f989c000 int_stack: 0xffffff80145d5000-0xffffff80145d9000
cpu_data_alloc(3) 0xffffff80088f6f80 desc_table: 0xffffff800792c960 ldt: 0xffffff89f98ac000 int_stack: 0xffffff80145ed000-0xffffff80145f1000
x2APIC mode enabled
Started cpu 1 (lapic id 00000001)
x2APIC mode enabled
Started cpu 2 (lapic id 00000002)
x2APIC mode enabled
Started cpu 3 (lapic id 00000003)
ACPI: Executed 3 blocks of module-level executable AML code
kPEDisableScreen -1
watchdog disabled by platform configurationMatched against SMC (started)
No Generation from SMC.
Marking const DATA read-only
PMRD: Sleep failure code 0xffffffff 0xffffffff
 found RTC service
RTC: getGMTTimeOfDay 1727971814
SK: netagent is enabled by default for this platform
bsd_autoconf: calling kminit
[AHCI][PML][00000000]+IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals
[AHCI][PML][00000000]-IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals
IOSurfaceRoot::installMemoryRegions()
IOSurface allowing global lookups (with warnings)
IOGetARVRootHashData: data at address 197935104 size 229
IOGetARVRootHashData: memory descriptor 0xffffff9f15a655e0
IOGetARVManifestData: data at address 197939200 size 3657
IOGetARVManifestData: memory descriptor 0xffffff9f15a660e0
kern_direct_file(/System/Volumes/VM/kernelcore): vp size 1048576, alloc 1048576, mp free 214637215744, keep free 1048576
max io 0x3f800000 bytes
kern_open_file_for_direct_io took 1 ms
Opened file /System/Volumes/VM/kernelcore, size 1048576, extents 1, maxio 3f800000 ssd 1
polled file major 1, minor 2, blocksize 4096, pollers 0
IOPolledFilePollersSetup(5) error 0xe00002bc
vnode_close(0)
compressor_store_stop_compaction = FALSE
Couldn't obtain preoslog region: result = -1, preoslog_pa = 0, preoslog_size = 0
RTC: setGMTTimeOfDay 1727971818
Matching service count = 13
Matching service count = 17
Matching service count = 17
No Generation from SMC.
S08: match category IODefaultMatchCategory exists
X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
X86PlatformPlugin::getCPUCStates - C001 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C001 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C002 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C002 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C003 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C003 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
AppleIPAppender::probe(IOResources)
AppleIPAppender::start(IOResources) <1>
X86PlatformPlugin::configResourceCallback - DeepSleep is not supported!
[AGPM][INFO ][CONTROLLER  ][start                   ] Entered AGPMController::start()
[AGPM][INFO ][CONTROLLER  ][start                   ] init fSlotControl, fSlotControl = 0
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] machines_dict->getObject(modelName iMacPro1,1)
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] gpuDict S00
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] build gpuDict by GPU S00.
[AGPM][WARN ][CONTROLLER  ][createAGPMClass         ] GPU = S00 unknownPlatform (no matching vendor_id+device_id or GPU name); don't create AGPM class
[AGPM][INFO ][CONTROLLER  ][start                   ] fIsExternalGPU 0
X86PlatformPlugin::cgRegisterCallbackHandler - entered, type gpu-external-plimit-notification, target AGPM
X86PlatformPlugin::cgRegisterPLimitCallbackHandler - There are 0 entries in the linked list before target name AGPM
HE2N_Key Does Not Exist, use kSMCPStatesEGPU for External GPU
Failed to send SMC number of eGPU P states (16) due to 0x82!
[AGPM][INFO ][CONTROLLER  ][start                   ] GPU = S00 Initialized, Control ID 17
[AGPM][INFO ][CONTROLLER  ][start                   ] Exited AGPMController::start()
SFA: match category IODefaultMatchCategory exists
**** [IOBluetoothHCIUserClient][SetBTRBOffWL] -- mBluetoothFamily->mACPIMethods->SetBTRB (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTLPOffWL] -- mBluetoothFamily->mACPIMethods->SetBTLP (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTRSWL] -- mBluetoothFamily->mACPIMethods->SetBTRS() returned 0xE00002C7 error
kPEDisableScreen 1

@VisualEhrmanntraut
Copy link
Member

VisualEhrmanntraut commented Oct 18, 2024

Hey @Myp3a, can you retry with the latest commit using the romfile method? NootedRed should now be able to read it in theory.

@Myp3a
Copy link
Author

Myp3a commented Oct 18, 2024

Still breaks at the same place with no additional logging. I've tried the old Inject method and the new one, with romfile=.... Also I've rebooted the machine between retries, so they are done with the clean GPU state.

Relevant QEMU config lines:

-device pcie-root-port,port=0,chassis=1,id=pci.0,bus=pcie.0,multifunction=on,addr=0x1
-device vfio-pci,host=30:00.0,bus=pci.0,multifunction=on,addr=0x0,romfile=/my_macos_path/igpu_vbios_msi.rom
-device vfio-pci,host=30:00.1,bus=pci.0,addr=0x0.0x1

@VisualEhrmanntraut
Copy link
Member

@Myp3a Try adding serial=3 to the boot args

@Myp3a
Copy link
Author

Myp3a commented Oct 19, 2024

Done, now it looks like a proper log. Attaching it to the message below.

Boot log
kprintf initialized
Serial mode specified: 00000003
version_variant = 0
version         = Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
KASLR slide: 0x000000000d200000 dynamic
Hiding local relocations
WARNING: ignoring first page in [0x0:0x86]
Physical memory 8192 MB
avail_remaining = 0x1ff6e6
PMAP: Supervisor Mode Execute Protection enabled
Kernel virtual space from 0xffffff8000000000 to 0xffffffffffffefff.
Available physical space from 0x11dc5000 to 0x27ffff000
initialize_screen: b=00000000, w=00000000, h=00000000, r=00000000, d=00000001
initialize_screen: No video - forcing serial mode
Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
pmap_startup() delaying init/free of page nums > 0x200000
pmap_startup() init/release time: 24492 microsec
pmap_startup() delayed init/release of 565595 pages
vm_page_bootstrap: 1482313 free pages, 598455 wired pages, (up to 565595 of which are delayed free)
VM boostrap: 73 maps, 153 entries and 128 holes available
Maximum number of VM swap files: 100
kext submap [0x<ptr> - 0x<ptr>], kernel text [0x<ptr> - 0x<ptr>]
"vm_compressor_mode" is 4
VM bootstrap done: 57 maps, 110 entries and 118 holes left
IOKit IOMD setownership ENABLED
ATM subsystem is initialized
OSLog stream configured: stream: 8192 bytes, cache: 2112 bytes
Firehose configured: 16 chunks, 8 io pages
Log queues configured: slot count: 32, per-slot size: 32768, total size: 1048576
Long logs support configured: size: 16384
Telemetry: Sampling all tasks once per 1 second
Scheduler: Default of dualq
Setting scheduler priority decay band limit 18
standard timeslicing quantum is 10000 us
standard background quantum is 2500 us
mig_table_max_displ = 54 mach_kobj_count = 375
BANK subsystem is initialized
IPC_PTHREAD_PRIORITY subsystem is initialized
Reallocated master cpu data: 0xffffff800e2f3980, interrupt stack: 0xffffffb18f3f0000, fault stack: 0xffffff800d30c800
CPU identification: Intel Core Processor (Haswell, no TSX)
CPU features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 PCLMULQDQ SSSE3 FMA CX16 SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES VMM XSAVE OSXSAVE TSCTMR AVX1.0 RDRAND F16C RDWRFSGS BMI1 AVX2 SMEP BMI2 ERMS INVPCID
  HTT: 4 cores per package; 4 logical cpus per package
CPU extended features: SYSCALL XD EM64T LAHF LZCNT RDTSCP TSCI
Initializing EFI runtime services
MSR_IA32_APIC_BASE 0xfee00000 enabled legacy mode BSP
x2APIC supported and will be enabled
x2APIC mode enabled
ID: 0x0 LDR: 0x1
Boot cpu local APIC id 0x0
TSC sync margin disabled
fpu_state: AVX, state_size: 832
Kernel text 0xffffff800d4e4000-0xffffff800dee4000 to be write-protected
Marking (0xffffff800d410000, 0xffffff800d4e0000) as rwx
Marking (0xffffff800e564000, 0xffffff800e5a0000) as rwx
Marking (0xffffff800e5a0000, 0xffffff800e5a1000) as rwx
Marking (0xffffff800dee4000, 0xffffff800def6000) as rwx
Marking (0xffffff800d4e0000, 0xffffff800d4e1000) as rwx
Marking (0xffffff800e5a1000, 0xffffff800e5a1000) as rwx
Marking (0xffffff800def6000, 0xffffff800def6000) as rwx
Marking (0xffffff8011333000, 0xffffff80116c0000) as rwx
Marking (0xffffff80102b8000, 0xffffff8010303000) as rwx
Marking (0xffffff800d410000, 0xffffff800d410000) as rwx
Marking (0xffffff801034c000, 0xffffff8010e53000) as rwx
[RTCLOCK] frequency 3790000000 (3792888000)
TSC Deadline Timer supported and enabled
kdp_core zlib memory 0x7000
Registered coredump handler for kernel
Kernel boot args: 'keepsyms=1 -v -NRedDebug debug=0x12a msgbuf=1048576 serial=3 '
corecrypto_kext_start (tracing disabled)
FIPSPOST_KEXT [311250128] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, Kernel, Software, SL1]
FIPSPOST_KEXT [312355427] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac
FIPSPOST_KEXT [313661652] fipspost_post:166: PASSED: (0 ms) - fipspost_post_integrity
FIPSPOST_KEXT [314623452] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator
FIPSPOST_KEXT [315543654] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb
FIPSPOST_KEXT [316444590] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc
FIPSPOST_KEXT [319200548] fipspost_post:173: PASSED: (1 ms) - fipspost_post_rsa_sig
FIPSPOST_KEXT [324384190] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa
FIPSPOST_KEXT [325411202] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh
FIPSPOST_KEXT [326054867] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm
FIPSPOST_KEXT [326672923] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac
FIPSPOST_KEXT [327605028] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf
FIPSPOST_KEXT [333526150] fipspost_post:179: PASSED: (5 ms) - fipspost_post_pbkdf
FIPSPOST_KEXT [334298976] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac
FIPSPOST_KEXT [335015227] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr
FIPSPOST_KEXT [335683778] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac
FIPSPOST_KEXT [336344975] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm
FIPSPOST_KEXT [336971338] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts
FIPSPOST_KEXT [337649236] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb
FIPSPOST_KEXT [338320322] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr
FIPSPOST_KEXT [339031103] fipspost_post:210: all tests PASSED (27 ms)
corecrypto_kext_start completed successfully
Matching service count = 0
Matching service count = 0
ulock_initialize>thread_max=10240, ull_hash_buckets=4096
ACPI: ACPI: RSDP 0x000000007FB7E014 000024 (v02 BOCHS )RSDP 0x000000007FB7E014 000024 (v02 BOCHS )

ACPI: ACPI: XSDT 0x000000007FBFA000 000064 (v01 BOCHS  BXPC     00000001      01000013)XSDT 0x000000007FBFA000 000064 (v01 BOCHS  BXPC     00000001      01000013)

ACPI: ACPI: FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: DSDT 0x000000007FB7B000 001FD1 (v01 BOCHS  BXPC     00000001 BXPC 00000001)DSDT 0x000000007FB7B000 001FD1 (v01 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: FACS 0x000000007FBDD000 000040FACS 0x000000007FBDD000 000040

ACPI: ACPI: APIC 0x000000007FB79000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)APIC 0x000000007FB79000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)Darwin Image4 Validator Version 6.3.0: Mon Jul 29 20:57:20 PDT 2024; root:AppleImage4-257.140.2~240/AppleImage4/RELEASE_X86_64
calling mpo_policy_init for AppleImage4
Security policy loaded: AppleImage4 hooks (AppleImage4)
AMFI: queried model name from device tree: ACPI
calling mpo_policy_init for AMFI
Security policy loaded: Apple Mobile File Integrity (AMFI)
AMFI: Booted in a VM
calling mpo_policy_init for Sandbox
Security policy loaded: Seatbelt sandbox policy (Sandbox)
calling mpo_policy_init for Quarantine
Security policy loaded: Quarantine policy (Quarantine)
NootedRed      init: @ (DBG) NootedRed bootstrap DBG-100-2024-10-18
NootedRed      NRed: @ Copyright 2022-2024 ChefKiss. If you've paid for this, you
ACPI: WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)
ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)
ACPI Error: [S38_] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-310)
ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)
ACPI Error: 1 table load failures, 4 successful (20160930/tbxfload-342)
've been scammed.
MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
ACPI: SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)
ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)
ACPI Error: [S38_] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-310)
ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)
ACPI Error: 1 table load failures, 4 successful (20160930/tbxfload-342)
NootedRed      NRed: @ Module initialised
NootedRed      NRed: @ (DBG) catalina = no
NootedRed      NRed: @ (DBG) bigSurAndLater = yes
NootedRed      NRed: @ (DBG) monterey = no
NootedRed      NRed: @ (DBG) montereyAndLater = yes
NootedRed      NRed: @ (DBG) ventura = no
NootedRed      NRed: @ (DBG) venturaAndLater = yes
NootedRed      NRed: @ (DBG) ventura1304Based = no
NootedRed      NRed: @ (DBG) ventura1304AndLater = yes
NootedRed      NRed: @ (DBG) sonoma1404AndLater = yes
NootedRed      NRed: @ (DBG) If any of the above values look incorrect, please report this to the developers.
NootedRed   X6000FB: @ Module initialised
NootedRed    HWLibs: @ Module initialised
NootedRed     X6000: @ Module initialised
NootedRed     X5000: @ Module initialised
ACMKernelUtils: initValueFromBootArgU32: acm_fastsim = 0xffffffff <--- not found.
ACMKernelUtils: initValueFromDTPropertyU32: /defaults/insecure_hpr = 0x0 <--- not found.
ACMKernelUtils: isFastSimTarget: isFastSim = NO.
ACMKernelUtils: initValueFromDTPropertyU32: /efi/platform/apple-coprocessor-version = 0x0 <--- not found.
ACMKernelUtils: getEOSDeviceType: eosDeviceType = 0.
AppleCredentialManager: init: inited KE[1] (ready=NO AVP=NO SIM=NO SIMT=NO USESEP=NO) -> true.
AppleCredentialManager: probe: probed KE[1] (ready=NO) -> true (score=0).
AppleCyrus::probe(IOResources)
AppleKeyStoreTest::probe(IOResources)
AppleCredentialManager: start: starting KE[1] (ready=NO) -> true.
AppleCredentialManager: initImpl: called, KE[1].
AppleCredentialManager: initImpl: eosDeviceType=0, useOptionalSEP=NO.
ACM: Env_SetVariableWithParams: set var[6] len=1 <00>.
ACM: InitCredentialEngine: Global credential set created, CS[20].
ACM: Env_SetVariableWithParams: set var[5] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[23] len=1 <01>.
ACM: Env_SetVariableWithParams: set var[24] len=22 <4a756c20323920323032342c2032313a30383a313500>.
ACM: Env_SetDataProvider: data provider *set* for var[25].
ACM: Env_SetDataProvider: data provider *set* for var[27].
ACM: Env_SetDataProvider: data provider *set* for var[36].
ACM: Env_SetDataProvider: data provider *set* for var[22].
ACM: Env_SetDataProvider: data provider *set* for var[29].
ACM: Env_SetVariableWithParams: set var[7] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[26] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[33] len=1 <01>.
ACM: Env_Spci (build 20:58:17 Jul 29 2024), flags 0xc3080
cpu_data_alloc(1) 0xffffff800e2f4b80 desc_table: 0xffffff800d32c320 ldt: 0xffffffb19003b000 int_stack: 0xfffffff5f6cfd000-0xfffffff5f6d01000
cpu_data_alloc(2) 0xffffff800e2f5d80 desc_table: 0xffffff800d32c640 ldt: 0xffffffb19004b000 int_stack: 0xfffffff5f6d0d000-0xfffffff5f6d11000
cpu_data_alloc(3) 0xffffff800e2f6f80 desc_table: 0xffffff800d32c960 ldt: 0xffffffb19005b000 int_stack: 0xfffffff5f6d15000-0xfffffff5f6d19000
etVariableWithParams: set var[34] len=1 <00>.
pci (build 20:58:17 Jul 29 2024), flags 0xc3080
AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
AppleACPICPU: ProcessorId=3 LocalApicId=3 Enabled
ASP: initializing bastion sandbox callback
no external trust caches found (segment length is zero)
ACM: Env_SetDataProvider: data provider *set* for var[47].
ACM: Env_SetDataProvider: data provider *set* for var[44].
ACM: SEPControl_SetCallback: ACM control provider *set* for control code[1].
ACM: Env_SetDataSetCallback: data set callback *set* for var[43].
ACM: Env_SetDataSetCallback: data set callback *set* for var[42].
ACM: Env_SetDataProvider: data provider *set* for var[51].
ACMFirstResponderKernelService: init: called, .
ACMTRM-S: init: called, starting PersistentStore service.
ACMTRM-A: init: called, starting TRM Analytics service.
ACMTRM-C: init: called, starting AccessoryCache service.
ACMKernelService: initValueFromBootArgAliasesUInt32: acc-cache size = 48 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: acc-cache expiration = 2592000 (default).
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM: init: called, starting TRM service.
ACMKernelService: initValueFromBootArgAliasesUInt32: policy supported in BaseSystem = 0 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMKernelService: initValueFromBootArgAliasesUInt32: policy mode timeout = 604800 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: grace period (bounded) timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: relaxed period timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: unlocked period timeout = 86400 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: enabled by default = 1 (default).
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N* Arg=N HW=N DT=N Env=N Ext=N Dev=N | MC=N Dx2APIC mode enabled
W=StNar teCd Bcp=u N1  (GlaSpi=c Ni dC P0=00N00 0B0S1=)
 MB=x2APIC mode enabled                                N
 St aSrtC=Ne AdS=N  IBc=Np DuM= N)2.
 (AlCMaTRpM:i _cdi saibldeB y:0 [0TR0M 0EN0AB0LE0D=2YE)S]
mask=0, Dx2APIC mode enabled                              (
IStSarAtedB LEcpu D3  (BlYa: pDiecf =iNd  A0r0g0=00N*0 0H3W)=
 DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=ANCP GI:S= N ExCPec=Nut BedS= 3N  bMBlo=Nck Ss C=ofN  mASod=Nul Ie-B=leN veDMl =Nex).ec
utIOabAPleIC A: MLVe crsodioen
0x11 Vectors 64:87
ACPI: Executed 3 blocks of module-level executable AML code
AssertMacros: data (value: 0x0), 'disable-transport-rm' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestricACPI: sleep states S5
ACMTRM: _loadDisabledByOSEnvironment: disabled by OSEnvironment: NO.
1CMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N Arg=N HW=N DT=N Env=N* Ext=N Dev=N | MC=N DkWP=N ECBD=N GS=N CP=N BS=N MBi=Ns SaC=bNl AeS=SN cIBr=Ne DeMn=N )-.
 [
dwMatchemdogo dirsyRanage()b] lAppleVTeD isd by platfor not yet installm ced aos gnSystefm
[iguadratidonMemoryRange()] AppleVTD is not yet installed as gSystem
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[ PCI configuration begin ]
IOPCIConfigurator::configure kMatIcOPhed agCainst SMC (started)
IENo nGuemneeration from SMC.
rationWaitTime is 900
Previous shutdown cause: 0
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y* DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N* Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
AssertMacros: data (value: 0x0), 'external-boot' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeACMTRM: _loadDisabledByExternalBoot: disabled by ExternalBoot: NO.
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DIPSMRABDL:E D SlBYeep :f aiDeluf=reN  cArgode=N H 0xWff=Y fffDT=fffN E 0xnvf=fN ffffExtff
* Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).                                                                      =N
Sleep failure code 0xffffffff 0xffffffff
ACMTRM: _mapAndPublishTRM: set TRM_PolicyTimeout = 604800.
ACMTRM: _mapAndPublishTRM: set TRM_PolicyReason = Unrestricted(0).
[ PCI configuration end, bridges 4, devices 12 ]
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriodTimeout = 86400.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=4) while LOCKED(1), TRM: 604800/U(0) 4294967295/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMLockdownModeKernelService: init: called, .
ACMLockdownModeKernelService: init: returning, result = true.
AppleCredentialManager: initImpl: KE[1] INITED.
AppleCredentialManager: initImpl: returning, KE[1] -> true.
AppleCredentialManager: startImpl: called, KE[1].
ACMTRM: start: security.mac.acm.root_pivot_occurred sysctl registered.
ACMLockdownModeKernelService: start: called, .
ACMLockdownModeKernelService: start: returning, result = true.
AppleCredentialManager: startImpl: registering notifications.
AppleCredentialManager: startImpl: KE[1] STARTED.
AppleCredentialManager: startImpl: returning, KE[1] -> true.
AppleCredentialManager: start: started KE[1] (ready=YES) -> true.
AppleCyrus::start(IOResources) <1>
IOGetBootKeyStoreData: data at address 0 size 0
AppleKeyStore:331:0: starting (BUILT: Jul 29 2024 21:10:56) (normal variant 🌽 , 1655.140.2)
AppleKeyStore:485:0: _sep_enabled = 0
AppleKeyStoreTest::start(IOResources) <1>
[AppleLockdownMode - start] started
erG[ApCIp][PMlLeLock]d[ow0000n00Mo00de]+I - LODAHCMShIPooulrtMdEulntfioprcelPaierirGtly] obraeslst::oIOreOASH CIcPhoecrkt Mulpatsipsedli
   AlpplobeSalSsE:
:sta[rt AHcaClleI]d[
APsMLser]t[Ma0cro00s0: 00val0ue 0]-(vaIlOAue:H 0CxI0Por)t,M u lftiilpel: /ieArGloppblaeIlntes::rIOAHCnIPoal/rLtMibrultaryip/lieBurildGlRoootbsa/lsa
863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleSSE/AppleSSE/AppleSSE.cpp, line: 49                                   4
AppleSSE::start returning, result = 1
virtual bool CoreAnalyticsHub::start(IOService *)::139:CoreAnalyticsHub start
Registered CoreAnalyticsHub functions with xnu.virtual bool CoreAnalyticsHub::start(IOService *)::218:CoreAnalyticsHub start completed
DSMOS has arrived
[AHCI][HBA][00000000] start::266:AppleAHCI::start
lockdown_mode: lockdown Mamode inrking nvram i conss offt DA
TA read-only
Copyright (c) 1982, 1986, 1989, 1991, 1993
        The Regents of the University of California. All rights reserved.

MAC Framework successfully initialized
apfs_module_start:3232: load: com.apple.filesystems.apfs, v2236.141.1, apfs-2236.141.1, 2024/07/29
ktriage_register_subsystem_strings: set subsystem 7 strings
[AHCI][PRT][001F0200] InitializePort::689:Port 0
AppleKeyStore:1019:0: oy vey
AMFI: unable to obtain local signing public key from AKS: e00002bc
AMFI: developer mode is force enabled on this platform
AMFI: finished: 1 1
using 16384 buffer headers and 10240 cluster IO buffer headers
[AHCI][PRT][001F0200] EnablePortOperation::3281:Enabling port 0
[AHCI][PRT][001F0200] setPowerState::2937:inNewPowerState: 2
 found RTC service
RTC: getGMTTimeOfDay 1729352688
ktriage_register_subsystem_strings: set subsystem 8 strings
mcache: 4 CPU(s), 64 bytes CPU cache line size
mbinit: done [128 MB total pool size, (85/42) split]
SK: netagent is enabled by default for this platform
dlil_init: Waiting for all the create dlil kernel threads to get scheduled at least once.
dlil_init: All the created dlil kernel threads have been scheduled at least once. Proceeding.
bsd_autoconf: calling kminit
com.apple.AppleFSCompressionTypeDataless kmod start
com.apple.AppleFSCompressionTypeZlib kmod start
ifnet_attach: All kernel threads created for interface lo0 have been scheduled at least once. Proceeding.
tfnet_attach: Waiting for all kernel threads created for interface giIfO0Su rftaoc eg eatl lsocwhiendgu lgeldo baatl  lleoaosktu posn c(ew.i
 hc owma.ranpipnlges.)A
pIleOFSSCuormfparceesRsoiootn:T:yipnesDtaatlallMeesmso rlyoRaedg isouncsc(e)e
ed                                                                           d
com.apple.AppleFSCompressionTypeZlib load succeeded
Setting up notifier for CoreAnalyticsHub
calling mpo_policy_init for ASP
calling mpo_policy_initbsd for ASP
ASP: NVRAM pointer initialized
ASP: No recovery key set
Security policy loaded: Apple System Policy (ASP)
apfs_sysctl_register:1407: done registering sysctls.
cryptoAlloc:652: Using 64 buffers with size 16384, 512 buffers size 65536
IOKernelDebugger: registering debugger
swcrypto_threadpool_init:1531: Starting ThreadPool
swcrypto_threadpool_init:1553: 4 threads would be used for the ThreadPool
specread_work_queue_init:155: number of threads used for specread work queue 3
dev_init:303: disk0s2 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk0s2 device_handle block size 4096 block count 67057654 features 0 internal
fletcher64_init:88: Selecting AVX2 implementation of fletcher64
nx_mount:1275: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
ifnet_attach: All kernel threads created for interface gif0 have been scheduled at least once. Proceeding.
nx_mount:1617: disk0s2 checkpoint sIeaOGrcethA: RVlaRorgoetstHa sxihDd at23a:92 d97at, a beatst a xddidre 2ss39 229927 31@ 929332
 snxiz_me ou22nt9
61IO9G:e tdAisRVRk0oos2tH rasehlDoaatdai:ng m aemftoreyr  duencscleriapnt uorn m0ouxfntff, fcffhe9cckpc2o3in33t 0cx0i
 239I29OG7e,t AsuRVpeMarbnilofeckst xDaitda :2 3d9a2t7a6                                                             d
atnx a_mddourentss:1 264924:32 d33is28k0 ss2iz es t3a6bl57
ohIOeGcketpoARinVMta niinfdeicstesDa:t ade: scme 9mo2 ryd adteas c56ri0p1t
 rn x_0xgfeftf_vffolf9umcce_23gr35oub6p:0
9: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
authenticate_efi_forwarded_roothash:3427: evaluating authenticity of root hash
populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 229
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 229
populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 3657
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 3657
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
skip attaching fsw to lo0 using legacy TX modelifnet_attach: Waiting for all kernel threads created for interface stf0 to get scheduled at least once.
ifnet_attach: All kernel threads created for interface stf0 have been scheduled at least once. Proceeding.
rooting via boot-uuid from /chosen: 64686C3C-8A70-431F-B812-6846EAE9A739
Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><array ID="2"><string ID="3">IOBSD</string><string ID="4">boot-uuid-media</string></array></dict>
AppleFileSystemDriver: using apfs-preboot-uuid
AppleFileSystemDriver: publishing boot-uuid-media=disk3s5 (macos)
Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/S50@A/AppleVirtIOPCITransport/AppleVirtIOBlockStorageDevice/IOBlockStorageDriver/Apple Inc. VirtIO Block Media/IOGUIDPartitionScheme/Untitled 2@2/AppleAPFSContainerScheme/AppleAPFSMediBSD root: disk3s5, major 1, minor 13
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
bufattr_get_apfs:8739: Volume not mounted
disk3s5: device is not readable.
hfs_mountfs: buf_meta_bread failed with 13
hfs_mount: hfs_mountfs returned error=13 for device unknown-dev
hfs_mountroot failed: 13
apfs_vfsop_mountroot:2965: apfs: mountroot called!
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
dev_init:303: disk3 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk3 device_handle block size 4096 block count 67057654 features 16 internal solidstate
nx_mount:1275: disk3 initializing cache w/hash_size 16384 and cache size 40960
nx_mount:1617: disk3 checkpoint search: largest xid 239297, best xid 239297 @ 93
nx_mount:1619: disk3 reloading after unclean unmount, checkpoint xid 239297, superblock xid 239276
nx_mount:1644: disk3 stable checkpoint indices: desc 92 data 5601
er_state_obj_get_for_recovery:8309: disk3s5 No ER state object for volume macos - rolling is not happening, nothing to recover.
apfs_vfsop_mount:2675: disk3 Promoter has been locked
apfs_vfsop_mount:2744: disk3s5 Rooting from snapshot with xid 3421.
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
handle_snapshot_mount:1144: disk3s5 mounting snapshot w/snap_xid 3421 and sblock oid 0x10c0ec
nx_get_volume_group:669: disk3 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk3 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
is_root_hash_authentication_required_osx:387: disk3s5 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: disk3s5 Root Volume, root hash authentication is required
authenticate_root_hash:637: disk3s5 successfully validated on-disk root hash
handle_snapshot_mount:1327: disk3s5 setting dev block size to 4096 from 512
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:887: disk3s5 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
fs_setup_shadow_fs_root_tree:3425: disk3s5 Created the shadow_fs_root tree <ptr>
nx_volume_group_update:794: disk3s5 Set volume (role 0x1) to 522 xid d5d
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
BootCache: Root disk is an SSD, not caching
load_init_program: attempting to load /sbin/launchd
Serial keyboard started
VM Swap Subsystem is ON
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] EnablePortOperation::3315:Port 0 - HandleComReset
shared_region: 0xc4201dde9f116115 [1(launchd)] check_np(0x7ff7b0fe5d10) vm_shared_region_start_address() failed
Darwin Ignition Sequence Version 1.0.0: Mon Jul 29 21:03:33 PDT 2024; root:libignition-56~36837/libignition_core/RELEASE_X86_64
libignition: 1: arguments           :
libignition: 1:   ignition level    : 0x5
libignition: 1:   force dylib root  : 0x0
libignition: 1:   halt after stage  : n/a
libignition: 1: configuration         :
libignition: 1:   program             : launchd
libignition: 1:   os environment      : n/a
libignition: 1:   rd                  : n/a
libignition: 1:   arp0                : n/a
libignition: 1:   rp                  : n/a
libignition: 1:   pivot src           : n/a
libignition: 1:   root ramdisk        : 0x0
libignition: 1:   restore             : 0x0
libignition: 1:   root device info    : 0x0
libignition: 1:   can haz debugger    : 0x0
libignition: 1:   rootfs mount flags  : 0x4480d001
libignition: 1:   ecid                : 0x0
libignition: 1:   volume group uuid   : 64686C3C-8A70-431F-B812-6846EAE9A739
libignition: 1:   hardware target     : x86legacyap
libignition: 1:   initproc            : 0x1
libignition: 1:   single user         : 0x0
libignition: 1:   userspace reboot    : 0x0
libignition: 1:   x86 translated      : 0x0
libignition: 1:   secure boot level   : 0x3
libignition: 1:   os version          : n/a
libignition: 1: parameters          :
libignition: 1:   version           : 0x1
libignition: 1:   argc              : 0x1
libignition: 1:   log fd            : 0xffffffffffffffff
libignition: 1:   platform          : 0x1
libignition: 1: boot spec           :
libignition: 1:   name              : local
libignition: 1:   stage count       : 0x8
libignition: 1:        hello: commence primary ignition
libignition: 1:        hello: hello from launchd.1
libignition: 1:      preboot: mounting preboot
libignition: 1:      preboot: preboot device: /dev/disk3s2
libignition: 1:      preboot: preboot mount point: /System/Volumes/Preboot
libignition: 1:      preboot: mounting preboot: dev = /dev/disk3s2, uid = 0, gid = 0
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
spaceman_metazone_init:173: disk3 metazone for device 0 of size 1205462 blocks (encrypted: 0-602731 unencrypted: 602731-1205462)
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 15007744
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 15499264
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 7045120
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 8912896
spaceman_scan_free_blocks:3878: disk3 scan took 0.000000 s (no trims)
er_state_obj_get_for_recovery:8309: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s2 mounting volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
handle_mount:817: disk3s2 vol-uuid: E91EC198-BD6C-4F85-9A2A-943A5940E52D block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s2 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s2 volume with role 16 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s2 mount-complete volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
libignition: 1: cryptex1 sniff: detecting cryptex1 directory
libignition: 1: create graft directories: creating graft directories
apfs_log_op_with_proc:3091: disk3s2 updating mounted volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
spaceman_fxc_print_stats:473: disk3 dev 0 smfree 52378002/67057654 table 0/382 blocks 0 0:0:0 0.00% range 0:0 0.00% scans 0
spaceman_scan_free_blocks:3848: disk3 scan took 0.000000 s, trims took 0.000000 s
spaceman_scan_free_blocks:3852: disk3 0 blocks free in 0 extents, avg 0.00
libignition: 1: create graft directories: Cryptexes directory exists
libignition: 1: create graft directories: incoming Cryptexes directory exists
libignition: 1: create graft directories: graft point exists: Cryptexes/OS
libignition: 1: downlevel cryptex not installed: 2
libignition: 1: create graft directories: graft point exists: Cryptexes/App
libignition: 1: create graft directories: graft point exists: Cryptexes/Incoming/OS
libignition: 1:        graft: grafting boot cryptexes
libignition: 1:        graft: os: no root xattr present
libignition: 1:        graft: os: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: os: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: os: opened object: name = os.dmg, type = os hyper dmg, slot = 1
libignition: 1:        graft: os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2
libignition: 1:        graft: os: opened object: name = os.dmg.trustcache, type = os hyper dmg trust cache, slot = 3
libignition: 1:        graft: os: object spec not present: 4
libignition: 1:        graft: os: selected im4m spec: image4 manifest
libignition: 1:        graft: os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 os.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal
nx_mount:1275: os.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: os.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.dmg stable checkpoint indices: desc 8 data 16
er_state_obj_get_for_recovery:8309: os.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] HandleComReset::3832:linkPresent 0 - Port 0
[AHCI][PRT][001F0200] EnablePortOperation::3322:Port 0 - COMRESET did not proceed
[AHCI][PRT][001F0200] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0210] InitializePort::689:Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3281:Enabling port 1
[AHCI][PRT][001F0210] setPowerState::2937:inNewPowerState: 2
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: os.dmgs1 lut contains 9 extents, 3 of which contain metadata
is_root_hash_authentication_required_osx:387: os.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30093, jobj_id range 31894+11784
apfs_graft:743: disk3s2 successfully grafted ino 30093 on dir 1426, dev_name [os.dmg]
libignition: 1:        graft: os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, graft point = /System/Volumes/Preboot/Cryptexes/OS, ignored error = 0
libignition: 1:        graft: querying cryptex dmg node info: os
libignition: 1: downlevel cryptex not installed: 2
libignition: 1:        graft: app: no root xattr present
libignition: 1:        graft: app: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: app: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: app: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: app: opened object: name = app.dmg, type = app hyper dmg, slot = 1
libignition: 1:        graft: app: opened object: name = app.dmg.root_hash, type = app hyper dmg seal, slot = 2
libignition: 1:        graft: app: opened object: name = app.dmg.trustcache, type = app hyper dmg trust cache, slot = 3
libignition: 1:        graft: app: object spec not present: 4
libignition: 1:        graft: app: selected im4m spec: image4 manifest
libignition: 1:        graft: app: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/App, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 app.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 5632 features 0 internal
nx_mount:1275: app.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: app.dmg checkpoint search: largest xid 33, best xid 33 @ 7
nx_mount:1644: app.dmg stable checkpoint indices: desc 6 data 54
er_state_obj_get_for_recovery:8309: app.dmgs1 No ER state object for volume AppCryptex - rolling is not happening, nothing to recover.
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: app.dmgs1 lut contains 1 extents, 1 of which contain metadata
is_root_hash_authentication_required_osx:387: app.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: app.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: app.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30097, jobj_id range 43678+4495
apfs_graft:743: disk3s2 successfully grafted ino 30097 on dir 1427, dev_name [app.dmg]
libignition: 1:        graft: app: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, graft point = /System/Volumes/Preboot/Cryptexes/App, ignored error = 0
libignition: 1:        graft: pre-reboot os: no root xattr present
libignition: 1:        graft: pre-reboot os: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: pre-reboot os: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: pre-reboot os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: pre-reboot os: opened object: name = os.clone.dmg, type = pre-reboot os hyper dmg, slot = 1
libignition: 1:        graft: pre-reboot os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2
libignition: 1:        graft: pre-reboot os: object spec not present: 3
libignition: 1:        graft: pre-reboot os: object spec not present: 4
libignition: 1:        graft: pre-reboot os: selected im4m spec: image4 manifest
libignition: 1:        graft: pre-reboot os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
apfs_graft:511: disk3s2 Grafting a clone, share blockmap lut with os.dmg
graft_dev_init:420: disk3 os.clone.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal
nx_mount:1275: os.clone.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: os.clone.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.clone.dmg stable checkpoint indices: desc 8 data 16
er_state_obj_get_for_recovery:8309: os.clone.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
is_root_hash_authentication_required_osx:387: os.clone.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.clone.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.clone.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30104, jobj_id range 48173+11784
apfs_graft:743: disk3s2 successfully grafted ino 30104 on dir 1429, dev_name [os.clone.dmg]
libignition: 1:        graft: pre-reboot os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, ignored error = 0
libignition: 1:        graft: querying cryptex dmg node info: pre-reboot os
libignition: 1:        graft: evaluating os and pre-reboot os node info: clone id [os] = 0x72f5, clone id [pre-reboot os] = 0x72f5
libignition: 1: select os cryptex path: selecting os cryptex path
libignition: 1: select os cryptex path: dylib cache directory present; not overriding
libignition: 1: select os cryptex path: not forcing root fallback
libignition: 1:  dylib_cache: discovering shared library cache
libignition: 1:  dylib_cache: finding shared cache on cryptex: ignition level = 5, search root fd = 10, subpath = System/Library/dyld/
libignition: 1:  dylib_cache: opened shared cache directory: /System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld
libignition: 1:      goodbye: ignition sequence complete
shared_region: 0xc4201dde9f116115 [1(launchd)] check_np(0x7ff7b0fe5158) vm_shared_region_start_address() failed
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] EnablePortOperation::3315:Port 1 - HandleComReset
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h' is adhoc signed.
ASP: AMFI pointer initialized
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.01' is adhoc signed.
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] HandleComReset::3832:linkPresent 0 - Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3322:Port 1 - COMRESET did not proceed
[AHCI][PRT][001F0210] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0220] InitializePort::689:Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3281:Enabling port 2
[AHCI][PRT][001F0220] setPowerState::2937:inNewPowerState: 2
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.02' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.03' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.04' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.05' is adhoc signed.
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc4201dde9f116115 [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] EnablePortOperation::3315:Port 2 - HandleComReset
dyld: simulator status (/ rw: false; kernel: false, platform: false; pthread: false
[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] HandleComReset::3832:linkPresent 0 - Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3322:Port 2 - COMRESET did not proceed
[AHCI][PRT][001F0220] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0230] InitializePort::689:Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3281:Enabling port 3
[AHCI][PRT][001F0230] setPowerState::2937:inNewPowerState: 2
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] EnablePortOperation::3315:Port 3 - HandleComReset
com.apple.xpc.launchd|2024-10-19 15:44:52.479216 <Notice>: hello, launchd UUID: 3FD2B8A3-0C1D-3561-B8E7-BD27484C6C8B
com.apple.xpc.launchd|2024-10-19 15:44:52.480017 <Notice>: Darwin Bootstrapper Version 7.0.0: Sat Jun 29 04:48:38 PDT 2024; root:libxpc_executables-2748.140.10~372/launchd/RELEASE_X86_64
com.apple.xpc.launchd|2024-10-19 15:44:52.480039 <Notice>: boot-args = keepsyms=1 -v -NRedDebug debug=0x12a msgbuf=1048576 serial=3
com.apple.xpc.launchd|2024-10-19 15:44:52.517653 (system) <Notice>: entering ondemand mode
com.apple.xpc.launchd|2024-10-19 15:44:52.517885 (system) <Notice>: created
skip attaching fsw to lo0 using legacy TX modelcom.apple.xpc.launchd|2024-10-19 15:44:52.541070 (exclaves-boot) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:52.541134 (fsck) <Notice>: Doing boot task
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] HandleComReset::3832:linkPresent 0 - Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3322:Port 3 - COMRESET did not proceed
[AHCI][PRT][001F0230] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0240] InitializePort::689:Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3281:Enabling port 4
[AHCI][PRT][001F0240] setPowerState::2937:inNewPowerState: 2
[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] EnablePortOperation::3315:Port 4 - HandleComReset
[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] HandleComReset::3832:linkPresent 0 - Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3322:Port 4 - COMRESET did not proceed
[AHCI][PRT][001F0240] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0250] InitializePort::689:Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3281:Enabling port 5
[AHCI][PRT][001F0250] setPowerState::2937:inNewPowerState: 2
vnode_create_internal: alias vnode (vid = 689459277) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 689459277), is in state of change (end) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 784393543) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 784393543), is in state of change (end) v_flags = 0x820 v_numoutput = 0
[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] EnablePortOperation::3315:Port 5 - HandleComReset
sendIONotification:2723: Sending notification about e0084006 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084006 for the parent of APFS snapshot 1.14
** Checking the container superblock.
   Checking the checkpoint with transaction ID 239297.
** Checking the object map.
** Checking volume /dev/rdisk3s5.
** Checking the APFS volume superblock.
   The volume macos was formatted by storagekitd (1677.141.3.7.2) and last modified by apfs_kext (2236.141.1).
** QUICKCHECK ONLY; FILESYSTEM CLEAN
sendIONotification:2723: Sending notification about e0084007 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084007 for the parent of APFS snapshot 1.14
com.apple.xpc.launchd|2024-10-19 15:44:54.441812 (mount-phase-1) <Notice>: Doing boot task
mount_by_role:494: Mounting /dev/disk3s4 on /System/Volumes/VM
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s4 No ER state object for volume VM - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s4 mounting volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s4 vol-uuid: AF37A756-F395-4F4C-B9D0-72232BFD70D3 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s4 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s4 Volume VM role 0x8 is not a System or Data volume
apfs_log_op_with_proc:3091: disk3s4 mount-complete volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
kern_direct_file(/System/Volumes/VM/kernelcore): vp size 1048576, alloc 1048576, mp free 214541795328, keep free 1048576
max io m0oux3ntf8_b00y_00ro0 lbyet:e4s5
:k veornl_umopee n/_dfevil/de_ifsokr3_sd2i rweictth_ iroo lteo o=k  110  amslr
eaOpdyen medo unfiteled  a/St ys/Steysm/tVemolkeumrnes_o/VpMe/nk_ferilneel_cfoorre_,d isriectze_i 1o(0<48pt57r>6,,  e0x)t
 nktesr n1_,o pmenax_fioi l3e_f8f0o0r0_0d0i ressctd _i1
topokol 1le dms f                                      o
ileO pmeanjeodr  fi1,l em i/nSoyrs t0e,m /bVloolcumkseisz/eVM 4/k09er6,n eploclolreer,s  s0i
e IO10Po4l8l5ed7Fi6le,Po lleerxsSteteupn(5t) ser ro1r ,0x e0m00a02xbci                      z
ov no3def_c8lo0se0(00)
0 ssd 1               0
polled file major 1, minor 0, blocksize 4096, pollers 0
IOPolledFilePollersSetup(5) error 0xe00002bc
kern_close_file_for_direct_io(<ptr>)
IOPolledFilePollersSetup for corefile failed with error: 0x0
/Volumes/Preboot in APFS container for root device /dev/disk3s1
mount_by_role:494: Mounting /dev/disk3s6 on /System/Volumes/Update
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s6 No ER state object for volume Update - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s6 mounting volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s6 vol-uuid: 9D301B4A-F402-402C-8ECB-DE870D6D32CF block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s6 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s6 Volume Update role 0xc0 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s6 volume with role 192 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s6 mount-complete volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
com.apple.xpc.launchd|2024-10-19 15:44:54.612951 (data-protection) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.671766 (data-protection) <Error>: posix_spawn(): 86: Bad CPU type in executable
com.apple.xpc.launchd|2024-10-19 15:44:54.671833 (detect-installed-roots) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.671860 <Notice>: No cookie from system volume
com.apple.xpc.launchd|2024-10-19 15:44:54.672107 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed
com.apple.xpc.launchd|2024-10-19 15:44:54.672160 <Notice>: No cookie: /System/Volumes/iSCPreboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed
com.apple.xpc.launchd|2024-10-19 15:44:54.672180 (select-boot-mode) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.672226 <Error>: fsctl(APFSIOC_GET_DEV_BY_ROLE) error: 2
com.apple.xpc.launchd|2024-10-19 15:44:54.672277 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.eacs
com.apple.xpc.launchd|2024-10-19 15:44:54.672313 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.templatemigration
com.apple.xpc.launchd|2024-10-19 15:44:54.672331 (commit-boot-mode) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.672343 <Notice>: boot-mode committed: (null)
com.apple.xpc.launchd|2024-10-19 15:44:54.672357 (auto-pivot-root) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.672371 (allow-non-platform-code) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.672385 <Notice>: allowing non-platform code now
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7330937073] [INFO] [Subsystem: launchd] [Event: exclaves-boot] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7332453581] [INFO] [Subsystem: launchd] [Event: fsck] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7333868018] [INFO] [Subsystem: launchd] [Event: mount-phase-1] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7335359630] [INFO] [Subsystem: launchd] [Event: data-protection] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7336720937] [ERROR] [Subsystem: launchd] [Event: data-protection] posix_spawn(): 86: Bad CPU type in executable
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7339102435] [INFO] [Subsystem: launchd] [Event: detect-installed-roots] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7343438800] [INFO] [Subsystem: launchd] [Event: select-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7347401146] [INFO] [Subsystem: launchd] [Event: commit-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7349648643] [INFO] [Subsystem: launchd] [Event: auto-pivot-root] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [7351218651] [INFO] [Subsystem: launchd] [Event: allow-non-platform-code] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
com.apple.xpc.launchd|2024-10-19 15:44:54.712809 <Notice>: Flushed 23 logs [limit: 20]
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
com.apple.xpc.launchd|2024-10-19 15:44:54.714478 (restore-datapartition) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 15:44:54.715883 (restore-datapartition) <Notice>: optional boot task not present
com.apple.xpc.launchd|2024-10-19 15:44:54.715907 (mount-phase-2) <Notice>: Doing boot task
get_volume_from_volume_group:324: found volume /dev/disk3s1 with role = 40 in APFS container for root device /dev/disk3s1
mount_by_role:494: Mounting /dev/disk3s1 on /System/Volumes/Data
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s1 No ER state object for volume macos - Data - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s1 mounting volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
handle_mount:817: disk3s1 vol-uuid: 64686C3C-8A70-431F-B812-6846EAE9A739 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.12)
handle_mount:830: disk3s1 setting dev block size to 4096 from 512
nx_volume_group_update:794: disk3s1 Set volume (role 0x40) to 402 xid 0
apfs_log_op_with_proc:3091: disk3s1 mount-complete volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] HandleComReset::3832:linkPresent 0 - Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3322:Port 5 - COMRESET did not proceed
[AHCI][PRT][001F0250] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][HBA][001F0200] start::512:Successfully initialized AHCI controller
setup_rosv_data:823: failed to stitch firmlinks for root device /dev/disk3s1, ignoring error (c002) ...
unmount_recursively:233: Could not unmount path /System/Volumes/BaseSystem (force: 0): 22 (Invalid argument).
unmount_basesystem:1055: No BaseSystem mounted.
cocomm.parppelses.oxprc_.lsatuoncrhde|20_2s4t-op1_c0o-m1p9ac t0i8:o44n :5= 6FA.L2S18E
71 (enable-swap) <Notice>: Doing boot task                                           7
com.apple.xpc.launchd|2024-10-19 08:44:56.536900 <Notice>: swap enabled
com.apple.xpc.launchd|2024-10-19 08:44:56.536938 (sandbox-enable-root-translation) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:56.537113 (init-with-data-volume) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:56.662469 (deferred_install) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:56.670792 (deferred_install) <Notice>: optional boot task not present
com.apple.xpc.launchd|2024-10-19 08:44:56.670831 (fips) <Notice>: Doing boot task
About to call the FIPS_POST function in the corecrypto.dylib
Tracing: disabled
FIPSPOST_USER [9428536133] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, User, Software, SL1]
FIPSPOST_USER [9431476487] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac
FIPSPOST_USER [9435112582] fipspost_post:166: PASSED: (2 ms) - fipspost_post_integrity
FIPSPOST_USER [9436635091] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator
FIPSPOST_USER [9438043107] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb
FIPSPOST_USER [9439460569] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc
FIPSPOST_USER [9442673022] fipspost_post:173: PASSED: (1 ms) - fipspost_post_rsa_sig
FIPSPOST_USER [9448041399] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa
FIPSPOST_USER [9449626576] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh
FIPSPOST_USER [9451006559] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm
FIPSPOST_USER [9452098562] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac
FIPSPOST_USER [9452973019] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf
FIPSPOST_USER [9460910134] fipspost_post:179: PASSED: (7 ms) - fipspost_post_pbkdf
FIPSPOST_USER [9461740568] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac
FIPSPOST_USER [9462500140] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr
FIPSPOST_USER [9463226870] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac
FIPSPOST_USER [9464220249] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm
FIPSPOST_USER [9465188411] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts
FIPSPOST_USER [9466140303] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb
FIPSPOST_USER [9467090591] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr
FIPSPOST_USER [9473482454] fipspost_post:189: PASSED: (5 ms) - fipspost_post_ffdh
FIPSPOST_USER [9478027771] fipspost_post:190: PASSED: (3 ms) - fipspost_post_rsa_enc_dec
FIPSPOST_USER [9478918598] fipspost_post:191: PASSED: (0 ms) - fipspost_post_shake
FIPSPOST_USER [9479613078] fipspost_post:210: all tests PASSED (51 ms)
Returned from calling the FIPS_POST function in the corecrypto.dylib: result = true
com.apple.xpc.launchd|2024-10-19 08:44:56.839792 (keystore-init) <Notice>: Doing boot task
running early boot task
OD access token exists
AppleKeyStore:2619:10: Mapping volume without a valid persona.
AppleKeyStore:2697:10: mapped uuid 6247366C-7B06-5EF1-A00C-F983162807B1 to bag -5, persona none, compressed uuid: 187818572, flags: 1
AppleKeyStore:4532:10: cmd: 18, booted_from: 1, result: 0
AppleKeyStore:784:10: uuid[0000,0016): 6247366c7b065ef1a00cf983162807b1
AppleKeyStore:2078:10: result = 1
AppleKeyStore:680:10: vek_data cached
AppleKeyStore:2279:10: vek did not decrypt, result: -2, have_kek:0 (loaded locked volume bag)
AppleKeyStore:2300:10: cmd=18, result=0, have_kek=0, booted_from=1
loaded the OD access token as the system keychain
early boot task result: 0
com.apple.xpc.launchd|2024-10-19 08:44:57.184256 (cache-start) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:57.245647 (dirs_cleaner) <Notice>: Doing boot task
get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument
get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument
[System Event] [10026406405] [INFO] [Subsystem: launchd] [Event: restore-datapartition] Doing boot task
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 1588573 size back to 381940 (from 389584)
Couldn't build index for com.apple.init_featureflags: Not eligible for acceleration
[System Event] [10394693112] [INFO] [Subsystem: launchd] [Event: restore-datapartition] optional boot task not present
[System Event] [10396148426] [INFO] [Subsystem: launchd] [Event: mount-phase-2] Doing boot task
[System Event] [10397223768] [INFO] [Subsystem: launchd] [Event: enable-swap] Doing boot task
[System Event] [10398225593] [INFO] [Subsystem: launchd] [Event: sandbox-enable-root-translation] Doing boot task
[System Event] [10399524224] [INFO] [Subsystem: launchd] [Event: init-with-data-volume] Doing boot task
[System Event] [10400662013] [INFO] [Subsystem: launchd] [Event: deferred_install] Doing boot task
[System Event] [10401775106] [INFO] [Subsystem: launchd] [Event: deferred_install] optional boot task not present
[System Event] [10403063408] [INFO] [Subsystem: launchd] [Event: fips] Doing boot task
[System Event] [10404096100] [INFO] [Subsystem: launchd] [Event: keystore-init] Doing boot task
[System Event] [10405124896] [INFO] [Subsystem: launchd] [Event: cache-start] Doing boot task
[System Event] [10406004041] [INFO] [Subsystem: launchd] [Event: dirs_cleaner] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:57.385087 <Notice>: launchd logging initialized. name: com.apple.xpc.launchd pid: 1
com.apple.xpc.launchd|2024-10-19 08:44:57.385104 (xpcroleaccountd) <Notice>: Doing boot task
[System Event] [10408887708] [INFO] [Subsystem: launchd] [Event: xpcroleaccountd] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:57.456202 (init_featureflags) <Notice>: Doing boot task
[System Event] [10421266857] [INFO] [Subsystem: launchd] [Event: init_featureflags] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:58.462089 (EndpointSecurity) <Notice>: Doing boot task
[System Event] [11104627019] [INFO] [Subsystem: launchd] [Event: EndpointSecurity] Doing boot task
endpointsecurityd: Starting early boot task
endpointsecurityd: Loaded 0 early boot clients from .early_boot.plist
endpointsecurityd: No need to downcall, there are no early boot clients
com.apple.xpc.launchd|2024-10-19 08:44:58.581049 (rc.server) <Notice>: Doing boot task
[System Event] [11223714140] [INFO] [Subsystem: launchd] [Event: rc.server] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:58.582563 (rc.server) <Notice>: optional boot task not present
[System Event] [11226052887] [INFO] [Subsystem: launchd] [Event: rc.server] optional boot task not present
com.apple.xpc.launchd|2024-10-19 08:44:58.582572 (tzinit) <Notice>: Doing boot task
[System Event] [11228317515] [INFO] [Subsystem: launchd] [Event: tzinit] Doing boot task
tzinit: Latest update incompatible with system, or not newer than current: 2024a.1.0 vs. 2024a.1.0: Undefined error: 0
com.apple.xpc.launchd|2024-10-19 08:44:58.758075 (dirhelper) <Notice>: Doing boot task
[System Event] [11400507522] [INFO] [Subsystem: launchd] [Event: dirhelper] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:44:59.887161 (rootless-init) <Notice>: Doing boot task
[System Event] [12529550395] [INFO] [Subsystem: launchd] [Event: rootless-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:45:00.087246 (finish-demo-restore) <Notice>: Doing boot task
[System Event] [12729905946] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:45:00.224064 (finish-demo-restore) <Notice>: optional boot task not present
[System Event] [12867146973] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] optional boot task not present
com.apple.xpc.launchd|2024-10-19 08:45:00.314372 (systemstats) <Notice>: Doing boot task
[System Event] [12956830884] [INFO] [Subsystem: launchd] [Event: systemstats] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:45:00.572669 (prng_seedctl) <Notice>: Doing boot task
[System Event] [13215577718] [INFO] [Subsystem: launchd] [Event: prng_seedctl] Doing boot task
Couldn't build index for com.apple.prng_seedctl: Not eligible for acceleration
kern.prng.user_reseed_count: (-1) (2) No such file or directory
com.apple.xpc.launchd|2024-10-19 08:45:00.695406 (workload-properties-init) <Notice>: Doing boot task
[System Event] [13337848598] [INFO] [Subsystem: launchd] [Event: workload-properties-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:45:00.695696 (init-exclavekit) <Notice>: Doing boot task
[System Event] [13340063834] [INFO] [Subsystem: launchd] [Event: init-exclavekit] Doing boot task
com.apple.xpc.launchd|2024-10-19 08:45:00.808170 (boot) <Notice>: Early boot complete. Continuing system boot.
[System Event] [13451081432] [INFO] [Subsystem: launchd] [Event: boot] Early boot complete. Continuing system boot.
com.apple.xpc.launchd|2024-10-19 08:45:01.306351 (cache-tag) <Notice>: Doing boot task
[System Event] [13951298758] [INFO] [Subsystem: launchd] [Event: cache-tag] Doing boot task
Couldn't build index for com.apple.dynamic_pager: Not eligible for acceleration
Couldn't build index for com.apple.KernelEventAgent: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 08:45:02.663773 (system/com.apple.iomfb_bics_daemon [120]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_bics_daemon' Executable: '/usr/libexec/IOMFB_bics_daemon'
Couldn't build index for com.apple.uninstalld: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 08:45:03.041015 (system/com.apple.iomfb_fdr_loader [115]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_fdr_loader' Executable: '/usr/bin/IOMFB_FDR_Loader'
Couldn't build index for com.apple.Installer-Progress: Not eligible for acceleration
AppleCredentialManagerUserClient: start: SUID=-1.
AppleCredentialManagerUserClient: start: SUID=-1.
Couldn't build index for com.apple.digest-service: Not eligible for acceleration
Couldn't build index for com.apple.kextload: Not eligible for acceleration
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 17 ret: e00002c2, -1)
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 7 ret: e00002c2, -1)
AppleCredentialManagerUserClient: start: SUID=-1.
ACMTRM: _onDaemonStarted: registering TRM notifiers.
ACMTRM: _registerBioNotifier: Biometric driver not detected.
ACMTRM: _onDaemonStarted: starting TRM policy engine.
ACMTRM: _onDaemonStarted: entering startup thread (startupFlags=0x0).
AssertMacros: consoleUsersPropertyObject (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelSerACMTRM: _startupThreadCallHandler: _currentDeviceStateFromConsoleUsers() -> 0x0.
ACMTRM: _startPolicy: startingInBaseSystem=NO startingInNormalOS=YES pivotingToNormalOS=NO | startupFlags=0x0 | initial deviceLockState=LOCKED(1) keybagState=0x0 consoleState=0x0.
ACMTRM-S: _loadAll: called, isLockerAvailable=NO.
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM-S: _loadAll: skipping *policy* <- daemon (gen=0 osLen=61).
ACMTRM-S: _loadAll: fetching *analytics* <- daemon (gen=0 osLen=400 dataLen=400 ver=1).
ACMTRM-A: onPolicyStarted: *analytics* successfully loaded.
ACMKernelService: initValueFromBootArgAliasesUInt32: analytics period = 86400 (default).
ACMTRM-A: setProperty: propCollectionPeriod=86400 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propPolicyModeTimeout=604800 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propGracePeriodBoundedTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: incrementCounter: cntDaemonStarted=9.
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _logPolicy: LOADED: ver=0 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=0 gpRsn=0 cMs=NO upTm=0 disBy=0 rpTm=0.
ACMTRM: _logConfig: caller=_loadConfig ver=1 gSw=1 GP=2 Pro=2.
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMTRM-A: setProperty: propGracePeriodTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _mapAndPublishTRM: set TRM_GracePeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=1) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMTRM-A: setProperty: propPolicyDisabledByBits=8 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N* DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N* IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N* SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N* CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N* BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM-C: onPolicyStarted: *acc-cache* not found.
ACMTRM: _startPolicy: timePolicyViolated=NO (saveTime=0 bootCalTime=1729352722 (delta=1729352722) bootUpTime=35 nowUp=1729352722).
ACMTRM: _startPolicy: policyViolated=NO (timePolicyViolated=NO passcodeThreshold=NO corruptedStateDetected=NO unexpectedShutdownDetected=NO).
ACMTRM: _publish: _startPolicy LOCKED(1) reason=0 en=NO pro=2/2 pasThr=NO kb=0 con=0 poRsn=0 smExp=NO gpBlk=NO miss=NO seen=0 now=1729352722(0) | PMT=0/0 GPT=0/0/(0) RPT=0/0 UPT=0/0.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMiss = False.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissThreshold = 5.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissCount = 0.
ACMTRM: _mapAndPublishTRM: set TRM_ConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_EffectiveConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_DeviceLocked = True.
ACMTRM: _mapAndPublishTRM: set TRM_BaseSystem = False.
ACMTRM: _mapAndPublishTRM: set TRM_Recovery = False.
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriod = False.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriod = False.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=10) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=0/5/0 AFNA(2)/AFNA(2) L=1 BS=0 R=0 RP=259200/0 UP=86400/0, CUR: U(0) X(0).
ACMTRM: _logPolicy: SAVING: ver=12 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=1729352722 gpRsn=0 cMs=NO upTm=0 disBy=8 rpTm=0.
ACMTRM-S: setData: saving *policy* (dataLen=61) in 3 seconds (fullSync: NO -> NO).
ACMTRM-C: notifyClients_AccCache_Refreshed: sent kACMTRMMessage_AccCache_Refreshed(0) -> 0xe00002c7.
ACMTRM: _isEnrollmentNeeded: enrollmentReason: eraseInstall=YES upgradeFromPreTRMSystem=NO.
ACMTRM: _isEnrollmentNeeded: enrollmentNeeded=YES (loadedVersion=0).
ACMTRM: _startEnrollment: set TRM_EnrollmentPending = True.
Couldn't build index for com.apple.hfs: Not eligible for acceleration
Couldn't build index for com.apple.fsck_hfs: Not eligible for acceleration
Couldn't obtain preoslog region: result = -1, preoslog_pa = 0, preoslog_size = 0
Couldn't build index for com.apple.mount_hfs: Not eligible for acceleration
Failed to handle the new encryption key. Error 0xe00002d8spec_open : si_devbsdunit initialized to (1), throttle_mask is (0x2), isssd is (1)
hfs: mounted macOS Base System on device disk1s1
ioqueue_depth = 256,   ioscale = 8
bufattr_get_apfs:8688: Only accept buf I/O, no raw disk access
disk3s5s1: device is not readable.
Couldn't build index for com.apple.socketfilterhelper: Not eligible for acceleration
AppleKeyStore:7690:119: unexpected session uid: -1 requested by: powerd (119)
AppleKeyStore:12195:119: operation failed (sel: 7 ret: e00002c2, -1)
ACMTRM-S: _saveAll: pushing *policy* -> daemon (gen=1 dataLen=61 ver=12).
ACMTRM-S: _saveAll: pushing *analytics* -> daemon (gen=1 dataLen=400 ver=1).
ifnet_attach: All kernel threads created for interface en0 have been scheduled at least once. Proceeding.
_dlil_get_flowswitch_buffer_size: en0 1504 1500
AppleKeyStore:7690:106: unexpected session uid: -1 requested by: UserEventAgent (106)
AppleKeyStore:12195:106: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:66:106: ioreg: 0, boot_arg: 0
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
AppleKeyStore:7690:127: unexpected session uid: -1 requested by: keybagd (127)
AppleKeyStore:12195:127: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
Couldn't build index for com.apple.usbmuxd: Not eligible for acceleration
AppleKeyStore:7690:264: unexpected session uid: -1 requested by: containermanagerd_system (264)
AppleKeyStore:12195:264: operation failed (sel: 17 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
Couldn't build index for com.apple.systemkeychain: Not eligible for acceleration
handle_snapshot_lookup:11560: disk3s5 failed to get snapshot metadata object, error = 2
Couldn't build index for com.apple.CodeSigningHelper: Not eligible for acceleration
RTC: setGMTTimeOfDay 1729334739
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
ALUC:init(PID: 314), lifsd_entitlement 1 koio_entitlement 0
methodSetClientDomain entered
registerNotificationPort entered
KextLog: kernelmanagerd is not active
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28429 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28283 size back to 1227792 (from 1236032)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28284 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28417 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28438 size back to 506792 (from 510912)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28439 size back to 3 (from 32768)
KextLog: kernelmanagerd is not active
com.apple.xpc.launchd|2024-10-19 03:46:01.047036 (system/com.apple.appleh13camerad [326]) <Error>: Missing executable detected. Job: 'com.apple.appleh13camerad' Executable: '/usr/sbin/appleh13camerad'
KextLog: kernelmanagerd is not active
KextLog: Loading FileSet KC(s)
KextLog: Loading Pageable KC from file /System/Library/KernelCollections/SystemKernelExtensions.kc
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69295 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69302 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28566 size back to 3 (from 32768)
AppleKeyStore:12195:335: operation failed (sel: 17 ret: e00002f0, 205)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28735 size back to 2884032 (from 2888152)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 41007 size back to 3 (from 32768)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 68573 size back to 1116552 (from 1297832)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 68574 size back to 3 (from 32768)
KextLog: Collection UUID matches with loaded KCs.
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28362 size back to 1907592 (from 2080632)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28363 size back to 3 (from 32768)
ALUC:clientDied(PID: 314), lifsd_entitled 1 koio_entitled 0
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69500 size back to 477952 (from 482072)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69501 size back to 3 (from 32768)
print_unknown_ioctl:16435: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
KextLog: Loading Aux KC from file /Library/KernelCollections/AuxiliaryKernelExtensions.kc
KextLog: Collection UUID matches with loaded KCs.
Matching service count = 13
Matching service count = 17
Matching service count = 17
deferred rematching count 0
print_unknown_ioctl:16435: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
print_unknown_ioctl:16435: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
Driver com.apple.DriverKit-IOUserDockChannelSerial has crasS0h8ed:  m0a ttcimh e(cas)te
gory IODefaultMatchCategory exists
IOG flags 0x3 (0x51)
DK: IOUserDockChannelSerial-0x100000290 waiting for server com.apple.IOUserDockChannelSerial-100000290
nfs_kext_start: successfully loaded NFS kext
No Generation from SMC.
No Generation from SMC.
AppleIPAppender::probe(IOResources)
aX8T6rPlacatef orsmyPnlucghirno::ngietzCaPUtCiStoatne s p-o iC0n00t A CS0T
 nd _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
X86PlatformPlugin::getCPUCStates - C001 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C001 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C001 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C001 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C002 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C002 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C002 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C002 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C003 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C003 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C003 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C003 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
AppleIPAppender::start(IOResources) <1>
GTrace synchronization point 2
com_apple_filesystems_nfs: successfully loaded NFS module
shared_region: 0xc4201dde9f68b6ad [343(com.apple.Driver)] check_np(0x7ff7baabdaa0) vm_shared_region_start_address() failed
shared_region: 0xc4201dde9f68b6ad [343(com.apple.Driver)] check_np(0x7ff7baabcee8) vm_shared_region_start_address() failed
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/DriverKit/System/Library/dyld/dyld_shared_cache_x86_64h' is adhoc signed.
shared_region: 0xc4201dde9f68b6ad [343(com.apple.Driver)]: vnode_lookup(/System/DriverKit/System/Library/dyld/) failed (error=2)
DK: IOUserDockChannelSerial-0x100000290::start(IOUserResources-0x100000118) ok
Couldn't build index for com.apple.audio.DriverHelper: Not eligible for acceleration
X86PlatformPlugin::configResourceCallback - DeepSleep is not supported!
X86PlatformPlugin::configResourceCallback - DeepSleep is not supported!
[AGPM][INFO ][CONTROLLER  ][start                   ] Entered AGPMController::start()
[AGPM][INFO ][CONTROLLER  ][start                   ] init fSlotControl, fSlotControl = 0
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] machines_dict->getObject(modelName iMacPro1,1)
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] gpuDict S00
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] build gpuDict by GPU S00.
[AGPM][WARN ][CONTROLLER  ][createAGPMClass         ] GPU = S00 unknownPlatform (no matching vendor_id+device_id or GPU name); don't create AGPM class
[AGPM][INFO ][CONTROLLER  ][start                   ] fIsExternalGPU 0
X86PlatformPlugin::cgRegisterCallbackHandler - entered, type gpu-external-plimit-notification, target AGPM
X86PlatformPlugin::cgRegisterCallbackHandler - entered, type gpu-external-plimit-notification, target AGPM
X86PlatformPlugin::cgRegisterPLimitCallbackHandler - There are 0 entries in the linked list before target name AGPM
X86PlatformPlugin::cgRegisterPLimitCallbackHandler - There are 0 entries in the linked list before target name AGPM
HE2N_Key Does Not Exist, use kSMCPStatesEGPU for External GPU
HE2N_Key Does Not Exist, use kSMCPStatesEGPU for External GPU
Failed to send SMC number of eGPU P states (16) due to 0x82!
Failed to send SMC number of eGPU P states (16) due to 0x82!
[AGPM][INFO ][CONTROLLER  ][start                   ] GPU = S00 Initialized, Control ID 17
[AGPM][INFO ][CONTROLLER  ][start                   ] Exited AGPMController::start()
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
**** [IOBluetoothHCIUserClient][SetBTRBOffWL] -- mBluetoothFamily->mACPIMethods->SetBTRB (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTLPOffWL] -- mBluetoothFamily->mACPIMethods->SetBTLP (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTRSWL] -- mBluetoothFamily->mACPIMethods->SetBTRS() returned 0xE00002C7 error
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002f0, -1)
  IOTimeSyncTimeSyncTimePort(0x3634b39bb0d40008): Created general notifier <ptr> for local clock port <ptr>
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
eTrace ksyPncEhDroinsizaatbioln epSoicntr 8e
 n -1
S00: Not usable
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
apfs_mount:29352: disk3s5 EALREADY; rooted from snap, apfs <ptr>
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: mount_apfs (pid 365); parent: com.apple.Mobile (pid 358)
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239309)
apfs_mount_livefs:29054: disk3 mount no firmlinks
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:830: disk3s5 setting dev block size to 4096 from 512
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: mount_apfs (pid 365); parent: com.apple.Mobile (pid 358)
ioqueue_depth = 256,   ioscale = 8
nx_global_extent_manipulation_lock:5757: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
nx_global_extent_manipulation_lock:5827: disk3 Shared global_extent_manipulation lock taken after 0 attempts
handle_revert_to_snapshot:8007: disk3s5 On next mount, volume will revert to snapshot 'com.apple.os.update-C6C236054E23451B9FDAC2E9FA0969DAD53C1365B023068D492024B3BDE60770' w/snap xid 3421
nx_global_extent_manipulation_unlock:5852: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
tx_flush:1173: disk3 tx xid 239311 took 1726889 us to flush
apfs_stop_bg_work:883: disk3s5 Volume macos is unmounting, stop any bg work
apfs_log_op_with_proc:3091: disk3s5 unmounting volume macos, requested by: com.apple.MobileSoftwareUpdate. (pid 358); parent: launchd (pid 1)
apfs_vfsop_unmount:3221: disk3s5 waiting for purgatory cleaner to finish
authapfs_seal_restore:598: disk3s5 integrity protection will be re-enabled
apfs_vfsop_unmount:3567: disk3 nx_num_vols_mounted is 5
apfs: total mem allocated: 49124250 (47 mb);
apfs_vfsop_unmount:3580: all done.  going home.  (numMountedAPFSVolumes 5)
apfs_mount:29352: disk3s5 EALREADY; rooted from snap, apfs <ptr>
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: mount_apfs (pid 368); parent: com.apple.Mobile (pid 358)
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239316)
apfs_mount_livefs:29054: disk3 mount no firmlinks
revert_to_snapshot:1605: disk3s5 Reverting to snapshot w/xid 3421 and old sblock oid 1097964.
revert_extents_to_snapshot:1421: disk3s5 free'ing extents in main extentref tree 604578
free_allocated_snapshot_extents:1336: disk3s5 processed 0 extents and free'd 0 blocks
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
supplemental_tree_revert:311: disk3s5 reverted supplemental tree (type 5): 604644 -> 603194
tx_leave:2534: disk3 tx xid 239317 took 4438897 us to close
omap_cleanup:1544: disk3s5 started cleaning snapshots 239317-239317
tx_flush:1173: disk3 tx xid 239317 took 5326763 us to flush
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
tx_flush:1338: disk3 xid 239317 tx stats: # 20 owait 8 64594us finish 20 bar2 20 f 5 enter 161 fq 98 177 17460us close 2219453us prep 857us flush 2801782us
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 119678 size back to 3 (from 32768)
omap_cleanup:1769: disk3s5 completed cleaning snapshot 239317, om_snap_count 1 om_most_recent_snap 239317
obj_cache_remove_reverted_fs_objects:1775: disk3s5 removing reverted fs objects for fs 1314: 3422 - 239317
revert_to_snapshot:1705: disk3s5 DONE reverting to snapshot w/xid 3421
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239321)
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:830: disk3s5 setting dev block size to 4096 from 512
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: mount_apfs (pid 368); parent: com.apple.Mobile (pid 358)
ioqueue_depth = 256,   ioscale = 8
apfs_log_op_with_proc:3091: disk3s5 unmounting volume macos, requested by: com.apple.MobileSoftwareUpdate. (pid 358); parent: launchd (pid 1)
apfs_vfsop_unmount:3221: disk3s5 waiting for purgatory cleaner to finish
authapfs_seal_restore:598: disk3s5 integrity protection will be re-enabled
apfs_vfsop_unmount:3567: disk3 nx_num_vols_mounted is 5
apfs: total mem allocated: 68023225 (65 mb);
apfs_vfsop_unmount:3580: all done.  going home.  (numMountedAPFSVolumes 5)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69530 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 121693 size back to 3 (from 32768)
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002f0, -1)
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
Couldn't build index for com.apple.ViewBridgeAuxiliary: Not eligible for acceleration
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002f0, -1)
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
S00-0x195-A: newUserClient failed: 0 0xe00002be 0x1000002a1 IONDRVFramebuffer
tx_flush:1338: disk3 xid 239337 tx stats: # 40 owait 12 66241us finish 40 bar2 40 f 9 enter 62 fq 45 62 68169us close 2us prep 129us flush 109002us

@VisualEhrmanntraut
Copy link
Member

There's no logs about patches being done at all. Is Lilu even working? 😄

@Myp3a
Copy link
Author

Myp3a commented Oct 19, 2024

I'm pretty sure that it should work: it's defined in OpenCore and located in Kexts directory. However, I've updated it to the latest 1.6.9-debug and enabled logging.

Logs w/ Lilu
kprintf initialized
Serial mode specified: 00000003
version_variant = 0
version         = Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
KASLR slide: 0x0000000009400000 dynamic
Hiding local relocations
WARNING: ignoring first page in [0x0:0x86]
Physical memory 8192 MB
avail_remaining = 0x1ff6ea
PMAP: Supervisor Mode Execute Protection enabled
Kernel virtual space from 0xffffff8000000000 to 0xffffffffffffefff.
Available physical space from 0xe020000 to 0x27ffff000
initialize_screen: b=00000000, w=00000000, h=00000000, r=00000000, d=00000001
initialize_screen: No video - forcing serial mode
Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
pmap_startup() delaying init/free of page nums > 0x200000
pmap_startup() init/release time: 25078 microsec
pmap_startup() delayed init/release of 549818 pages
vm_page_bootstrap: 1498094 free pages, 582674 wired pages, (up to 549818 of which are delayed free)
VM boostrap: 73 maps, 153 entries and 128 holes available
Maximum number of VM swap files: 100
kext submap [0x<ptr> - 0x<ptr>], kernel text [0x<ptr> - 0x<ptr>]
"vm_compressor_mode" is 4
VM bootstrap done: 57 maps, 110 entries and 119 holes left
IOKit IOMD setownership ENABLED
ATM subsystem is initialized
OSLog stream configured: stream: 8192 bytes, cache: 2112 bytes
Firehose configured: 16 chunks, 8 io pages
Log queues configured: slot count: 32, per-slot size: 32768, total size: 1048576
Long logs support configured: size: 16384
Telemetry: Sampling all tasks once per 1 second
Scheduler: Default of dualq
Setting scheduler priority decay band limit 18
standard timeslicing quantum is 10000 us
standard background quantum is 2500 us
mig_table_max_displ = 54 mach_kobj_count = 375
BANK subsystem is initialized
IPC_PTHREAD_PRIORITY subsystem is initialized
Reallocated master cpu data: 0xffffff800a4f3980, interrupt stack: 0xfffffff4f9fde000, fault stack: 0xffffff800950c800
CPU identification: Intel Core Processor (Haswell, no TSX)
CPU features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 PCLMULQDQ SSSE3 FMA CX16 SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES VMM XSAVE OSXSAVE TSCTMR AVX1.0 RDRAND F16C RDWRFSGS BMI1 AVX2 SMEP BMI2 ERMS INVPCID
  HTT: 4 cores per package; 4 logical cpus per package
CPU extended features: SYSCALL XD EM64T LAHF LZCNT RDTSCP TSCI
Initializing EFI runtime services
MSR_IA32_APIC_BASE 0xfee00000 enabled legacy mode BSP
x2APIC supported and will be enabled
x2APIC mode enabled
ID: 0x0 LDR: 0x1
Boot cpu local APIC id 0x0
TSC sync margin disabled
fpu_state: AVX, state_size: 832
Kernel text 0xffffff80096e4000-0xffffff800a0e4000 to be write-protected
Marking (0xffffff8009610000, 0xffffff80096e0000) as rwx
Marking (0xffffff800a764000, 0xffffff800a7a0000) as rwx
Marking (0xffffff800a7a0000, 0xffffff800a7a1000) as rwx
Marking (0xffffff800a0e4000, 0xffffff800a0f6000) as rwx
Marking (0xffffff80096e0000, 0xffffff80096e1000) as rwx
Marking (0xffffff800a7a1000, 0xffffff800a7a1000) as rwx
Marking (0xffffff800a0f6000, 0xffffff800a0f6000) as rwx
Marking (0xffffff800d58e000, 0xffffff800d91b000) as rwx
Marking (0xffffff800c4b8000, 0xffffff800c503000) as rwx
Marking (0xffffff8009610000, 0xffffff8009610000) as rwx
Marking (0xffffff800c54c000, 0xffffff800d053000) as rwx
[RTCLOCK] frequency 3790000000 (3792872000)
TSC Deadline Timer supported and enabled
kdp_core zlib memory 0x7000
Registered coredump handler for kernel
Kernel boot args: 'keepsyms=1 -v -NRedDebug -liludbg debug=0x12a msgbuf=1048576 serial=3 '
corecrypto_kext_start (tracing disabled)
FIPSPOST_KEXT [314147774] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, Kernel, Software, SL1]
FIPSPOST_KEXT [316412933] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac
FIPSPOST_KEXT [318120506] fipspost_post:166: PASSED: (0 ms) - fipspost_post_integrity
FIPSPOST_KEXT [318966594] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator
FIPSPOST_KEXT [319721800] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb
FIPSPOST_KEXT [320633610] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc
FIPSPOST_KEXT [323574106] fipspost_post:173: PASSED: (2 ms) - fipspost_post_rsa_sig
FIPSPOST_KEXT [328624540] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa
FIPSPOST_KEXT [329508207] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh
FIPSPOST_KEXT [330145363] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm
FIPSPOST_KEXT [330891632] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac
FIPSPOST_KEXT [331971308] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf
FIPSPOST_KEXT [338402040] fipspost_post:179: PASSED: (5 ms) - fipspost_post_pbkdf
FIPSPOST_KEXT [339266782] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac
FIPSPOST_KEXT [340078415] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr
FIPSPOST_KEXT [341130268] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac
FIPSPOST_KEXT [342036919] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm
FIPSPOST_KEXT [343010244] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts
FIPSPOST_KEXT [343799114] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb
FIPSPOST_KEXT [344791005] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr
FIPSPOST_KEXT [345718625] fipspost_post:210: all tests PASSED (31 ms)
corecrypto_kext_start completed successfully
Matching service count = 0
Matching service count = 0
ulock_initialize>thread_max=10240, ull_hash_buckets=4096
ACPI: ACPI: RSDP 0x000000007FB7E014 000024 (v02 BOCHS )RSDP 0x000000007FB7E014 000024 (v02 BOCHS )

ACPI: ACPI: XSDT 0x000000007FBFA000 000064 (v01 BOCHS  BXPC     00000001      01000013)XSDT 0x000000007FBFA000 000064 (v01 BOCHS  BXPC     00000001      01000013)

ACPI: ACPI: FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: DSDT 0x000000007FB7B000 001FD1 (v01 BOCHS  BXPC     00000001 BXPC 00000001)DSDT 0x000000007FB7B000 001FD1 (v01 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: FACS 0x000000007FBDD000 000040FACS 0x000000007FBDD000 000040

ACPI: ACPI: APIC 0x000000007FB79000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)Darwin Image4 Validator Version 6.3.0: Mon Jul 29 20:57:20 PDT 2024; root:AppleImage4-257.140.2~240/AppleImage4/RELEASE_X86_64
calling mpo_policy_init for AppleImage4
Security policy loaded: AppleImage4 hooks (AppleImage4)
AMFI: queried model name from device tree: ACPI
calling mpo_policy_init for AMFI
Security policy loaded: Apple Mobile File Integrity (AMFI)
AMFI: Booted in a VM
calling mpo_policy_init for Sandbox
Security policy loaded: Seatbelt sandbox policy (Sandbox)
calling mpo_policy_init for Quarantine
Security policy loaded: Quarantine policy (Quarantine)
APIC 0x000000007FB79000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)

ACPI: ACPI: SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)

ACPI: ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)

ACPI: ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)SSDT 0AppleCyrus::probe(IOResources)
AppleKeyStoreTest::probe(IOResources)
AppleCyrus::start(IOResources) <1>
IOGetBootKeyStoreData: data at address 0 size 0
AppleKeyStoreTest::start(IOResources) <1>
x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)Lilu    config: @ (DBG) version DBG-169-2024-10-08 (x86_64), args: disabled 0, debug 1, slow 0, decompress 1
Lilu       dev: @ (DBG) got iMacPro1,1 model from /efi/platform
Lilu       dev: @ (DBG) got Mac-7BA5B2D9E42DDD94 board-id from /efi/platform
Lilu    config: @ (DBG) initialising policy
Lilu     iokit: @ (DBG) OSPrelinkKextCount equals to 5
Lilu      mach: @ (DBG) MachInfo asKernel 1 object constructed
Lilu      mach: @ (DBG) found kernel nouveau mach-o header address at ffffff8009600000
Lilu      mach: @ (DBG) memory init mode - 1
Lilu      mach: @ (DBG) looking up inner kernel in 863 commands at 0xFFFFFF8009600000
Lilu      mach: @ (DBG) got nouveau mach-o for kernel at 0xFFFFFF80096E4000
Lilu      mach: @ (DBG) kernel has segment is __TEXT from 0xFFFFFF80096E4000 to 0xFFFFFF800A0E4000
Lilu      mach: @ (DBG) kernel has segment is __DATA from 0xFFFFFF800A4D4000 to 0xFFFFFF800A764000
Lilu      mach: @ (DBG) kernel has segment is __DATA_CONST from 0xFFFFFF8009610000 to 0xFFFFFF80096E0000
Lilu      mach: @ (DBG) kernel has segment is __KLDDATA from 0xFFFFFF800A764000 to 0xFFFFFF800A7A0000
Lilu      mach: @ (DBG) kernel has segment is __HIB from 0xFFFFFF8009500000 to 0xFFFFFF800959F000
Lilu      mach: @ (DBG) kernel has segment is __VECTORS from 0xFFFFFF800A7A0000 to 0xFFFFFF800A7A1000
Lilu      mach: @ (DBG) kernel has segment is __KLD from 0xFFFFFF800A0E4000 to 0xFFFFFF800A0F6000
Lilu      mach: @ (DBG) kernel has segment is __LASTDATA_CONST from 0xFFFFFF80096E0000 to 0xFFFFFF80096E1000
Lilu      mach: @ (DBG) kernel has segment is __LAST from 0xFFFFFF800A7A1000 to 0xFFFFFF800A7A1000
Lilu      mach: @ (DBG) kernel has segment is __PRELINK_TEXT from 0xFFFFFF800A0F6000 to 0xFFFFFF800A0F6000
Lilu      mach: @ (DBG) kernel has segment is __PRELINK_INFO from 0xFFFFFF800D58E000 to 0xFFFFFF800D91B000
Lilu      mach: @ (DBG) kernel has segment is __LINKINFO from 0xFFFFFF800C4B8000 to 0xFFFFFF800C503000
Lilu      mach: @ (DBG) kernel has segment is __CTF from 0xFFFFFF8009610000 to 0xFFFFFF8009610000
Lilu      mach: @ (DBG) kernel has segment is __LINKEDIT from 0xFFFFFF800C54C000 to 0xFFFFFF800D052430
Lilu      mach: @ (DBG) activating slots for kernel in 0xFFFFFF80096E53E8 - 0xFFFFFF80097BF3E7
Lilu      mach: @ (DBG) found symbol _PE_initialize_console at 0xffffff8009fa91a0 (non-aslr 0xffffff8009fa91a0), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF8009FA91A0 to 0xFFFFFF800D0EEBC0 diff 0x0000000003145A1B argument 3145A1B
Lilu   patcher: @ (DBG) from 0xFFFFFF800D0E8F56 to 0xFFFFFF8009FA91A6 diff 0xFFFFFFFFFCEC024B argument FCEC024B
Lilu   patcher: @ (DBG) wrapped _PE_initialize_console
Lilu       api: @ (DBG) got load request from NootedRed (100)
NootedRed      init: @ (DBG) NootedRed bootstrap DBG-100-2024-10-18
NootedRed      NRed: @ Copyright 2022-2024 ChefKiss. If you've paid for this, you've been scammed.
NootedRed      NRed: @ Module initialised
NootedRed      NRed: @ (DBG) catalina = no
NootedRed      NRed: @ (DBG) bigSurAndLater = yes
NootedRed      NRed: @ (DBG) monterey = no
NootedRed      NRed: @ (DBG) montereyAndLater = yes
NootedRed      NRed: @ (DBG) ventura = no
NootedRed      NRed: @ (DBG) venturaAndLater = yes
NootedRed      NRed: @ (DBG) ventura1304Based = no
NootedRed      NRed: @ (DBG) ventura1304AndLater = yes
NootedRed      NRed: @ (DBG) sonoma1404AndLater = yes
NootedRed      NRed: @ (DBG) If any of the above values look incorrect, please report this to the developers.
NootedRed   X6000FB: @ Module initialised
NootedRed    HWLibs: @ Module initialised
NootedRed     X6000: @ Module initialised
NootedRed     X5000: @ Module initialised
Lilu       api: @ (DBG) got load request from AppleALC (190)
ACMKernelUtils: initValueFromBootArgU32: acm_fastsim = 0xffffffff <--- not found.
ACMKernelUtils: initValueFromDTPropertyU32: /defaults/insecure_hpr = 0x0 <--- not found.
ACMKernelUtils: isFastSimTarget: isFastSim = NO.
ACMKernelUtils: initValueFromDTPropertyU32: /efi/platform/apple-coprocessor-version = 0x0 <--- not found.
ACMKernelUtils: getEOSDeviceType: eosDeviceType = 0.
AppleCredentialManager: init: inited KE[1] (ready=NO AVP=NO SIM=NO SIMT=NO USESEP=NO) -> true.
AppleCredentialManager: probe: probed KE[1] (ready=NO) -> true (score=0).
AppleCredentialManager: start: starting KE[1] (ready=NO) -> true.
AppleCredentialManager: initImpl: called, KE[1].
AppleCredentialManager: initImpl: eosDeviceType=0, useOptionalSEP=NO.
ACM: Env_SetVariableWithParams: set var[6] len=1 <00>.
ACM: InitCredentialEngine: Global credential set created, CS[20].
ACM: Env_SetVariableWithParams: set var[5] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[23] len=1 <01>.
ACM: Env_SetVariableWithParams: set var[24] len=22 <4a756c20323920323032342c2032313a30383a313500>.
ACM: Env_SetDataProvider: data provider *set* for var[25].
ACM: Env_SetDataProvider: data provider *set* for var[27].
ACM: Env_SetDataProvider: data provider *set* for var[36].
ACM: Env_SetDataProvider: data provider *set* for var[22].
ACM: Env_SetDataProvider: data provider *set* for var[29].
ACM: Env_SetVariableWithParams: set var[7] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[26] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[33] len=1 <01>.
ACM: Env_SetVariableWithParams: set var[34] len=1 <00>.
ACM: Env_SetDataProvider: data provider *set* for var[47].
ACM: Env_SetDataProvider: data provider *set* for var[44].
ACM: SEPControl_SetCallback: ACM control provider *set* for control code[1].
ACM: Env_SetDataSetCallback: data set callback *set* for var[43].
ACM: Env_SetDataSetCallback: data set callback *set* for var[42].
ACM: Env_SetDataProvider: data provider *set* for var[51].
ACMFirstResponderKernelService: init: called, .
ACMTRM-S: init: called, starting PersistentStore service.
ACMTRM-A: init: called, starting TRM Analytics service.
ACMTRM-C: init: called, starting AccessoryCache service.
ACMKernelService: initValueFromBootArgAliasesUInt32: acc-cache size = 48 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: acc-cache expiration = 2592000 (default).
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM: init: called, starting TRM service.
ACMKernelService: initValueFromBootArgAliasesUInt32: policy supported in BaseSystem = 0 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMKernelService: initValueFromBootArgAliasesUInt32: policy mode timeout = 604800 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: grace period (bounded) timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: relaxed period timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: unlocked period timeout = 86400 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: enabled by default = 1 (default).
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N* Arg=N HW=N DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N Arg=N* HW=N DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
AssertMacros: data (value: 0x0), 'disable-transport-rm' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestricACMTRM: _loadDisabledByOSEnvironment: disabled by OSEnvironment: NO.
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N Arg=N HW=N DT=N Env=N* Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y* DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N* Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
AssertMacros: data (value: 0x0), 'external-boot' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeACMTRM: _loadDisabledByExternalBoot: disabled by ExternalBoot: NO.
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N* Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _mapAndPublishTRM: set TRM_PolicyTimeout = 604800.
ACMTRM: _mapAndPublishTRM: set TRM_PolicyReason = Unrestricted(0).
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriodTimeout = 86400.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=4) while LOCKED(1), TRM: 604800/U(0) 4294967295/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMLockdownModeKernelService: init: called, .
ACMLockdownModeKernelService: init: returning, result = true.
AppleCredentialManager: initImpl: KE[1] INITED.
AppleCredentialManager: initImpl: returning, KE[1] -> true.
AppleCredentialManager: startImpl: called, KE[1].
ACMTRM: start: security.mac.acm.root_pivot_occurred sysctl registered.
ACMLockdownModeKernelService: start: called, .
ACMLockdownModeKernelService: start: returning, result = true.
AppleCredentialManager: startImpl: registering notifications.
AppleCredentialManager: startImpl: KE[1] STARTED.
AppleCredentialManager: startImpl: returning, KE[1] -> true.
AppleCredentialManager: start: started KE[1] (ready=YES) -> true.
AppleKeyStore:331:0: starting (BUILT: Jul 29 2024 21:10:56) (normal variant 🌽 , 1655.140.2)
AppleKeyStore:485:0: _sep_enabled = 0
[AppleLockdownMode - start] started
AppleSSE::start called
AssertMacros: value (value: 0x0),  file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleSSE/AppleSSE/AppleSSE.cpp, line: 49
AppleSSE::start returning, result = 1
virtual bool CoreAnalyticsHub::start(IOService *)::139:CoreAnalyticsHub start
Registered CoreAnalyticsHub functions with xnu.virtual bool CoreAnalyticsHub::start(IOService *)::218:CoreAnalyticsHub start completed
[AppleLockdownMode - LDMShouldEnforceParity] restoreOS check passed


ACPI: ACPI: SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)

ACPI Error: ACPI Error: [S38_][S38_] Namespace lookup failure, AE_NOT_FOUND Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)
 (20160930/dswload-292)
ACPI Exception: AE_NOT_FOUND, ACPI Exception: AE_NOT_FOUND, During name lookup/catalogDuring name lookup/catalog (20160930/psobject-310)
 (20160930/psobject-310)
ACPI Exception: AE_NOT_FOUND, ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table(SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)
 (20160930/tbxfload-319)
ACPI Error: ACPI Error: 1 table load failures, 4 successful1 table load failures, 4 successful (20160930/tbxfload-342)
 (20160930/tbxfload-342)
pci (build 20:58:17 Jul 29 2024), flags 0xc3080
pci (build 20:58:17 Jul 29 2024), flags 0xc3080
AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
cpu_data_alloc(1) 0xffffff800a4f4b80 desc_table: 0xffffff800952c320 ldt: 0xffffffc4529b1000 int_stack: 0xffffffc4539a2000-0xffffffc4539a6000
AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
cpu_data_alloc(2) 0xffffff800a4f5d80 desc_table: 0xffffff800952c640 ldt: 0xffffffc4529c1000 int_stack: 0xffffffc4539da000-0xffffffc4539de000
AppleACPICPU: ProcessorId=3 LocalApicId=3 Enabled
cpu_data_alloc(3) 0xffffff800a4f6f80 desc_table: 0xffffff800952c960 ldt: 0xffffffc4529d1000 int_stack: 0xffffffc4539ca000-0xffffffc4539ce000
ASP: initializing bastion sandbox callback
no external trust caches found (segment length is zero)
x2APIC mode enabled
Started cpu 1 (lapic id 00000001)
x2APIC mode enabled
Started cpu 2 (lapic id 00000002)
x2APIC mode enabled
Started cpu 3 (lapic id 00000003)
IOAPIC: Version 0x11 Vectors 64:87
ACPI: ACPI: Executed 3 blocks of module-level executable AML codeExecuted 3 blocks of module-level executable AML code

ACPI: sleep states S5
[addMemoryRange()] AppleVTD is not yet installed as gSystem
daddMemoryRange()] AppleVTD is not yet installed as wagSystctehm
 o[ga dddiMesmaobrlyeRda nbgy ep()l]a AtfpploeVrTDm configuration is not yet installed as gSystem
Previous shutdown cause: 0
lockdown_mode: lockdown mode in nvram is off
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[ PCI configuration begin ]
IOPCIMaCtochnedfigu argaaintsot rSM::coC n(sftaigurrte ekIdOP)CI
umNo GereantieornWaaittTiimoe nis  9f00r                        En
oDSmMO S ShaMs Car.ri
d                    ve
Lilu    config: @ M(DBGar) kPE_ininitig aclizeo_connsoles 7
t DATA read-only
kPEDisableScreen -1
Copyright (c) 1982, 1986, 1989, 1991, 1993
        The Regents of the University of California. All rights reserved.

MAC FPMRDr:a Smleepew orfakil sucurec escodsfuell 0xy ffffffff 0xffffffff
initialized
Sleep failure code 0xffffffff 0xffffffff
AppleKeyStore:1019:0: oy vey
AMFI: unable to obtain local signing public key from AKS: e00002bc
AMFI: developer mode is force enabled on this platform
using 16384 buffer headers and 10240 cluster IO buffer headers
AMFI: finished: 1 1
 found RTC service
RTC: getGMTTimeOfDay 1729355906
[ PCI configuration end, bridges 4, devices 12 ]
rtriage_register_subsysSteK:m _nsettriagngesn:t  siset e snaubblsyedst bemy  8de sfatrulitn gfso
  mcthaichs e:pl 4at CfoPUrm(s
), 64 bytes CPU cache line size
mbinbitsd: _adoutneoc [on12f8:  cMBal ltointag l kmpoinoil t
ize, (85/42) split]                                         s
dlil_init: Waiting for all the create dlil kernel threads to get scheduled at least once.
dlil_init: All the created dlil kernel threads have been scheduled at least once. Proceeding.
com.apple.AppleFSCompressionTypeDataless kmod start
ifnet_attach: All kernel threads created for interface lIo0OS uhrafvaec eb aelelno wsicnhge dgulloebda la tl oloekuapsst  (ownicteh.  wParroncienegdsi)n
IO                                                                                                                                                      g
  Siufrnfaecte_Raototta:c:hi:n sWtaailtliMnegm ofroyrR eaglilo nkse(r)n
l threads created for interface gif0 to get scheduled at least once.   e
ifnet_attach: All kernel threads created for interface gif0 have been scheduled at least once. Proceeding.
skip attaching fsw to lo0 using legacy TX modelifnet_attach: Waiting for all kernel threads created for interface stf0 to get scheduled at least once.
ifnet_attach: All kernel threads created for interface stf0 have been scheduled at least once. Proceeding.
com.apple.AppleFSCompressionTypeZlib kmod start
apfs_module_start:3232: load: com.apple.filesystems.apfs, v2236.141.1, apfs-2236.141.1, 2024/07/29
ktriage_register_subsystem_strings: set subsystem 7 strings
com.apple.AppleFSCompressionTypeDataless load succeeded
com.apple.AppleFSCompressionTypeZlib load succeeded
Setting up notifier for CoreAnalyticsHub
calling mpo_policy_init for ASP
calling mpo_policy_initbsd for ASP
ASP: NVRAM pointer initialized
ASP: No recovery key set
Security policy loaded: Apple System Policy (ASP)
apfs_sysctl_register:1407: done registering sysctls.
rooting via boot-uuid from /chosen: 64686C3C-8A70-431F-B812-6846EAE9A739
Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><array ID="2"><string ID="3">IOBSD</string><string ID="4">boot-uuid-media</string></array></dict>
AppleFileSystemDriver: using apfs-preboot-uuid
[AHCI][PML][00000000]+IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals
[AHCI][PML][00000000]-IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals
[AHCI][HBA][00000000] start::266:AppleAHCI::start
cryptoAlloc:652: Using 64 buffers with size 16384, 512 buffers size 65536
IOKernelDebugger: registering debugger
[AHCI][PRT][001F0200] InitializePort::689:Port 0
[AHCI][PRT][001F0200] EnablePortOperation::3281:Enabling port 0
[AHCI][PRT][001F0200] setPowerState::2937:inNewPowerState: 2
swcrypto_threadpool_init:1531: Starting ThreadPool
swcrypto_threadpool_init:1553: 4 threads would be used for the ThreadPool
specread_work_queue_init:155: number of threads used for specread work queue 3
dev_init:303: disk0s2 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk0s2 device_handle block size 4096 block count 67057654 features 0 internal
fletcher64_init:88: Selecting AVX2 implementation of fletcher64
nx_mount:1275: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
nx_mount:1617: disk0s2 checkpoint search: largest xid 239460, best xid 239460 @ 139
nx_mount:1619: disk0s2 reloading after unclean unmount, checkpoint xid 239460, superblock xid 239377
nx_mount:1644: disk0s2 stable checkpoint indices: desc 138 data 7190
nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
authenticate_efi_forwarded_roothash:3427: evaluating authenticity of root hash
IOGetARVRootHashData: data at address 227680256 size 229
IOGetARVRootHashData: memory descriptor 0xffffff9078929190
populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 229
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 229
IOGetARVManifestData: data at address 227684352 size 3657
IOGetARVManifestData: memory descriptor 0xffffff90789292f0
populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 3657
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 3657
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
AppleFileSystemDriver: publishing boot-uuid-media=disk3s5 (macos)
Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/S50@A/AppleVirtIOPCITransport/AppleVirtIOBlockStorageDevice/IOBlockStorageDriver/Apple Inc. VirtIO Block Media/IOGUIDPartitionScheme/Untitled 2@2/AppleAPFSContainerScheme/AppleAPFSMediBSD root: disk3s5, major 1, minor 12
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
bufattr_get_apfs:8739: Volume not mounted
disk3s5: device is not readable.
hfs_mountfs: buf_meta_bread failed with 13
hfs_mount: hfs_mountfs returned error=13 for device unknown-dev
hfs_mountroot failed: 13
apfs_vfsop_mountroot:2965: apfs: mountroot called!
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
dev_init:303: disk3 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk3 device_handle block size 4096 block count 67057654 features 16 internal solidstate
nx_mount:1275: disk3 initializing cache w/hash_size 16384 and cache size 40960
nx_mount:1617: disk3 checkpoint search: largest xid 239460, best xid 239460 @ 139
nx_mount:1619: disk3 reloading after unclean unmount, checkpoint xid 239460, superblock xid 239377
nx_mount:1644: disk3 stable checkpoint indices: desc 138 data 7190
er_state_obj_get_for_recovery:8309: disk3s5 No ER state object for volume macos - rolling is not happening, nothing to recover.
apfs_vfsop_mount:2675: disk3 Promoter has been locked
apfs_vfsop_mount:2744: disk3s5 Rooting from snapshot with xid 3421.
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
handle_snapshot_mount:1144: disk3s5 mounting snapshot w/snap_xid 3421 and sblock oid 0x10c0ec
nx_get_volume_group:669: disk3 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk3 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
is_root_hash_authentication_required_osx:387: disk3s5 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: disk3s5 Root Volume, root hash authentication is required
authenticate_root_hash:637: disk3s5 successfully validated on-disk root hash
handle_snapshot_mount:1327: disk3s5 setting dev block size to 4096 from 512
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:887: disk3s5 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
fs_setup_shadow_fs_root_tree:3425: disk3s5 Created the shadow_fs_root tree <ptr>
nx_volume_group_update:794: disk3s5 Set volume (role 0x1) to 522 xid d5d
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] EnablePortOperation::3315:Port 0 - HandleComReset
loadSe_riinailt _kperyobograma:r da tstteamrptetidn
 to load /sbin/launchd                             g
BootCache: Root disk is an SSD, not caching
VM Swap Subsystem is ON
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] HandleComReset::3832:linkPresent 0 - Port 0
[AHCI][PRT][001F0200] EnablePortOperation::3322:Port 0 - COMRESET did not proceed
[AHCI][PRT][001F0200] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0210] InitializePort::689:Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3281:Enabling port 1
[AHCI][PRT][001F0210] setPowerState::2937:inNewPowerState: 2
shared_region: 0xc7be2fef29ea183b [1(launchd)] check_np(0x7ff7b65e1d10) vm_shared_region_start_address() failed
Darwin Ignition Sequence Version 1.0.0: Mon Jul 29 21:03:33 PDT 2024; root:libignition-56~36837/libignition_core/RELEASE_X86_64
libignition: 1: arguments           :
libignition: 1:   ignition level    : 0x5
libignition: 1:   force dylib root  : 0x0
libignition: 1:   halt after stage  : n/a
libignition: 1: configuration         :
libignition: 1:   program             : launchd
libignition: 1:   os environment      : n/a
libignition: 1:   rd                  : n/a
libignition: 1:   arp0                : n/a
libignition: 1:   rp                  : n/a
libignition: 1:   pivot src           : n/a
libignition: 1:   root ramdisk        : 0x0
libignition: 1:   restore             : 0x0
libignition: 1:   root device info    : 0x0
libignition: 1:   can haz debugger    : 0x0
libignition: 1:   rootfs mount flags  : 0x4480d001
libignition: 1:   ecid                : 0x0
libignition: 1:   volume group uuid   : 64686C3C-8A70-431F-B812-6846EAE9A739
libignition: 1:   hardware target     : x86legacyap
libignition: 1:   initproc            : 0x1
libignition: 1:   single user         : 0x0
libignition: 1:   userspace reboot    : 0x0
libignition: 1:   x86 translated      : 0x0
libignition: 1:   secure boot level   : 0x3
libignition: 1:   os version          : n/a
libignition: 1: parameters          :
libignition: 1:   version           : 0x1
libignition: 1:   argc              : 0x1
libignition: 1:   log fd            : 0xffffffffffffffff
libignition: 1:   platform          : 0x1
libignition: 1: boot spec           :
libignition: 1:   name              : local
libignition: 1:   stage count       : 0x8
libignition: 1:        hello: commence primary ignition
libignition: 1:        hello: hello from launchd.1
libignition: 1:      preboot: mounting preboot
libignition: 1:      preboot: preboot device: /dev/disk3s2
libignition: 1:      preboot: preboot mount point: /System/Volumes/Preboot
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] EnablePortOperation::3315:Port 1 - HandleComReset
libignition: 1:      preboot: mounting preboot: dev = /dev/disk3s2, uid = 0, gid = 0
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
spaceman_metazone_init:173: disk3 metazone for device 0 of size 1205462 blocks (encrypted: 0-602731 unencrypted: 602731-1205462)
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 15007744
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 15499264
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 7045120
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 8912896
spaceman_scan_free_blocks:3878: disk3 scan took 0.000000 s (no trims)
er_state_obj_get_for_recovery:8309: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s2 mounting volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
handle_mount:817: disk3s2 vol-uuid: E91EC198-BD6C-4F85-9A2A-943A5940E52D block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s2 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s2 volume with role 16 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s2 mount-complete volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
libignition: 1: cryptex1 sniff: detecting cryptex1 directory
libignition: 1: create graft directories: creating graft directories
apfs_log_op_with_proc:3091: disk3s2 updating mounted volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
spaceman_fxc_print_stats:473: disk3 dev 0 smfree 52373906/67057654 table 0/382 blocks 0 0:0:0 0.00% range 0:0 0.00% scans 0
spaceman_scan_free_blocks:3848: disk3 scan took 0.000000 s, trims took 0.000000 s
spaceman_scan_free_blocks:3852: disk3 0 blocks free in 0 extents, avg 0.00
libignition: 1: create graft directories: Cryptexes directory exists
libignition: 1: create graft directories: incoming Cryptexes directory exists
libignition: 1: create graft directories: graft point exists: Cryptexes/OS
libignition: 1: downlevel cryptex not installed: 2
libignition: 1: create graft directories: graft point exists: Cryptexes/App
libignition: 1: create graft directories: graft point exists: Cryptexes/Incoming/OS
libignition: 1:        graft: grafting boot cryptexes
libignition: 1:        graft: os: no root xattr present
libignition: 1:        graft: os: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: os: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: os: opened object: name = os.dmg, type = os hyper dmg, slot = 1
libignition: 1:        graft: os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2
libignition: 1:        graft: os: opened object: name = os.dmg.trustcache, type = os hyper dmg trust cache, slot = 3
libignition: 1:        graft: os: object spec not present: 4
libignition: 1:        graft: os: selected im4m spec: image4 manifest
libignition: 1:        graft: os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 os.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal
nx_mount:1275: os.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: os.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.dmg stable checkpoint indices: desc 8 data 16
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] HandleComReset::3832:linkPresent 0 - Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3322:Port 1 - COMRESET did not proceed
[AHCI][PRT][001F0210] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0220] InitializePort::689:Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3281:Enabling port 2
[AHCI][PRT][001F0220] setPowerState::2937:inNewPowerState: 2
er_state_obj_get_for_recovery:8309: os.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] EnablePortOperation::3315:Port 2 - HandleComReset
[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] HandleComReset::3832:linkPresent 0 - Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3322:Port 2 - COMRESET did not proceed
[AHCI][PRT][001F0220] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0230] InitializePort::689:Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3281:Enabling port 3
[AHCI][PRT][001F0230] setPowerState::2937:inNewPowerState: 2
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: os.dmgs1 lut contains 9 extents, 3 of which contain metadata
is_root_hash_authentication_required_osx:387: os.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30093, jobj_id range 31894+11784
apfs_graft:743: disk3s2 successfully grafted ino 30093 on dir 1426, dev_name [os.dmg]
libignition: 1:        graft: os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, graft point = /System/Volumes/Preboot/Cryptexes/OS, ignored error = 0
libignition: 1:        graft: querying cryptex dmg node info: os
libignition: 1: downlevel cryptex not installed: 2
libignition: 1:        graft: app: no root xattr present
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] EnablePortOperation::3315:Port 3 - HandleComReset
libignition: 1:        graft: app: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: app: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: app: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: app: opened object: name = app.dmg, type = app hyper dmg, slot = 1
libignition: 1:        graft: app: opened object: name = app.dmg.root_hash, type = app hyper dmg seal, slot = 2
libignition: 1:        graft: app: opened object: name = app.dmg.trustcache, type = app hyper dmg trust cache, slot = 3
libignition: 1:        graft: app: object spec not present: 4
libignition: 1:        graft: app: selected im4m spec: image4 manifest
libignition: 1:        graft: app: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/App, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 app.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 5632 features 0 internal
nx_mount:1275: app.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: app.dmg checkpoint search: largest xid 33, best xid 33 @ 7
nx_mount:1644: app.dmg stable checkpoint indices: desc 6 data 54
er_state_obj_get_for_recovery:8309: app.dmgs1 No ER state object for volume AppCryptex - rolling is not happening, nothing to recover.
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: app.dmgs1 lut contains 1 extents, 1 of which contain metadata
is_root_hash_authentication_required_osx:387: app.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: app.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: app.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30097, jobj_id range 43678+4495
apfs_graft:743: disk3s2 successfully grafted ino 30097 on dir 1427, dev_name [app.dmg]
libignition: 1:        graft: app: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, graft point = /System/Volumes/Preboot/Cryptexes/App, ignored error = 0
libignition: 1:        graft: pre-reboot os: no root xattr present
libignition: 1:        graft: pre-reboot os: opening preboot subdirectory: cryptex1/current
libignition: 1:        graft: pre-reboot os: opened preboot subdirectory: cryptex1/current
libignition: 1:        graft: pre-reboot os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0
libignition: 1:        graft: pre-reboot os: opened object: name = os.clone.dmg, type = pre-reboot os hyper dmg, slot = 1
libignition: 1:        graft: pre-reboot os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2
libignition: 1:        graft: pre-reboot os: object spec not present: 3
libignition: 1:        graft: pre-reboot os: object spec not present: 4
libignition: 1:        graft: pre-reboot os: selected im4m spec: image4 manifest
libignition: 1:        graft: pre-reboot os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
apfs_graft:511: disk3s2 Grafting a clone, share blockmap lut with os.dmg
graft_dev_init:420: disk3 os.clone.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal
nx_mount:1275: os.clone.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: os.clone.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.clone.dmg stable checkpoint indices: desc 8 data 16
er_state_obj_get_for_recovery:8309: os.clone.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
is_root_hash_authentication_required_osx:387: os.clone.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.clone.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.clone.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30104, jobj_id range 48173+11784
apfs_graft:743: disk3s2 successfully grafted ino 30104 on dir 1429, dev_name [os.clone.dmg]
libignition: 1:        graft: pre-reboot os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, ignored error = 0
libignition: 1:        graft: querying cryptex dmg node info: pre-reboot os
libignition: 1:        graft: evaluating os and pre-reboot os node info: clone id [os] = 0x72f5, clone id [pre-reboot os] = 0x72f5
libignition: 1: select os cryptex path: selecting os cryptex path
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] HandleComReset::3832:linkPresent 0 - Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3322:Port 3 - COMRESET did not proceed
[AHCI][PRT][001F0230] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0240] InitializePort::689:Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3281:Enabling port 4
[AHCI][PRT][001F0240] setPowerState::2937:inNewPowerState: 2
libignition: 1: select os cryptex path: dylib cache directory present; not overriding
libignition: 1: select os cryptex path: not forcing root fallback
libignition: 1:  dylib_cache: discovering shared library cache
libignition: 1:  dylib_cache: finding shared cache on cryptex: ignition level = 5, search root fd = 10, subpath = System/Library/dyld/
libignition: 1:  dylib_cache: opened shared cache directory: /System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld
libignition: 1:      goodbye: ignition sequence complete
shared_region: 0xc7be2fef29ea183b [1(launchd)] check_np(0x7ff7b65e1158) vm_shared_region_start_address() failed
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h' is adhoc signed.
ASP: AMFI pointer initialized
[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] EnablePortOperation::3315:Port 4 - HandleComReset
[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] HandleComReset::3832:linkPresent 0 - Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3322:Port 4 - COMRESET did not proceed
[AHCI][PRT][001F0240] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0250] InitializePort::689:Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3281:Enabling port 5
[AHCI][PRT][001F0250] setPowerState::2937:inNewPowerState: 2
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.01' is adhoc signed.
[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] EnablePortOperation::3315:Port 5 - HandleComReset
[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] HandleComReset::3832:linkPresent 0 - Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3322:Port 5 - COMRESET did not proceed
[AHCI][PRT][001F0250] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][HBA][001F0200] start::512:Successfully initialized AHCI controller
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.02' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.03' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.04' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.05' is adhoc signed.
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0xc7be2fef29ea183b [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
dyld: simulator status (/ rw: false; kernel: false, platform: false; pthread: false
com.apple.xpc.launchd|2024-10-19 16:38:44.873962 <Notice>: hello, launchd UUID: 3FD2B8A3-0C1D-3561-B8E7-BD27484C6C8B
com.apple.xpc.launchd|2024-10-19 16:38:44.874630 <Notice>: Darwin Bootstrapper Version 7.0.0: Sat Jun 29 04:48:38 PDT 2024; root:libxpc_executables-2748.140.10~372/launchd/RELEASE_X86_64
com.apple.xpc.launchd|2024-10-19 16:38:44.874651 <Notice>: boot-args = keepsyms=1 -v -NRedDebug -liludbg debug=0x12a msgbuf=1048576 serial=3
com.apple.xpc.launchd|2024-10-19 16:38:45.070767 (system) <Notice>: entering ondemand mode
com.apple.xpc.launchd|2024-10-19 16:38:45.071023 (system) <Notice>: created
skip attaching fsw to lo0 using legacy TX modelcom.apple.xpc.launchd|2024-10-19 16:38:45.338463 (exclaves-boot) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:45.338539 (fsck) <Notice>: Doing boot task
vnode_create_internal: alias vnode (vid = 806840622) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 806840622), is in state of change (end) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 297179074) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 297179074), is in state of change (end) v_flags = 0x820 v_numoutput = 0
sendIONotification:2723: Sending notification about e0084006 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084006 for the parent of APFS snapshot 1.14
** Checking the container superblock.
   Checking the checkpoint with transaction ID 239460.
** Checking the object map.
** Checking volume /dev/rdisk3s5.
** Checking the APFS volume superblock.
   The volume macos was formatted by storagekitd (1677.141.3.7.2) and last modified by apfs_kext (2236.141.1).
** QUICKCHECK ONLY; FILESYSTEM CLEAN
sendIONotification:2723: Sending notification about e0084007 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084007 for the parent of APFS snapshot 1.14
com.apple.xpc.launchd|2024-10-19 16:38:55.597874 (mount-phase-1) <Notice>: Doing boot task
mount_by_role:494: Mounting /dev/disk3s4 on /System/Volumes/VM
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s4 No ER state object for volume VM - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s4 mounting volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s4 vol-uuid: AF37A756-F395-4F4C-B9D0-72232BFD70D3 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s4 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s4 Volume VM role 0x8 is not a System or Data volume
apfs_log_op_with_proc:3091: disk3s4 mount-complete volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
kern_direct_file(/System/Volumes/VM/kernelcore): vp size 1048576, alloc 1048576, mp free 214523969536, keep free 1048576
max io 0x3fm8o00un0t_00by _rbolyet:e4s5
: kvoelrn_oume /pdeenv/_fdiislek3_sfo2 rw_ditihr ercotl_ei o= t o1o0k  2a lmsr
aOdpeyne d mfioleu n/tSyestdem /aVotlu me/s/SVMy/ksetrneelmckoree,r sniz_eo pe10n48_57f6i, lexet_enftosr 1_, dmaixiro e3cf8t00_00i0 oss(d< 1p
i>p,ol le0d) f                                                                                                                               t
 lek meajrorn 1_, omipneonr _0f,i blloeck_sifzeo 4r09_6,d iporlleercst 0_
SeoO PtololeodkFi le2Po lmlesrs
  tOupp(5e) nererodr  0xfe0i00l02ebc /
Svnyosdtee_cmlo/sVe(o0l)
mes/VM/kernelcore, size 1048576, extents 1, maxio 3f800000 ssd 1
polled file major 1, minor 0, blocksize 4096, pollers 0
IOPolledFilePollersSetup(5) error 0xe00002bc
kern_close_file_for_direct_io(<ptr>)
IOPolledFilePollersSetup for corefile failed with error: 0x0
/Volumes/Preboot in APFS container for root device /dev/disk3s1
mount_by_role:494: Mounting /dev/disk3s6 on /System/Volumes/Update
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s6 No ER state object for volume Update - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s6 mounting volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s6 vol-uuid: 9D301B4A-F402-402C-8ECB-DE870D6D32CF block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s6 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s6 Volume Update role 0xc0 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s6 volume with role 192 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s6 mount-complete volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
com.apple.xpc.launchd|2024-10-19 16:38:56.141166 (data-protection) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280343 (data-protection) <Error>: posix_spawn(): 86: Bad CPU type in executable
com.apple.xpc.launchd|2024-10-19 16:38:56.280388 (detect-installed-roots) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280407 <Notice>: No cookie from system volume
com.apple.xpc.launchd|2024-10-19 16:38:56.280555 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed
com.apple.xpc.launchd|2024-10-19 16:38:56.280612 <Notice>: No cookie: /System/Volumes/iSCPreboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed
com.apple.xpc.launchd|2024-10-19 16:38:56.280638 (select-boot-mode) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280667 <Error>: fsctl(APFSIOC_GET_DEV_BY_ROLE) error: 2
com.apple.xpc.launchd|2024-10-19 16:38:56.280706 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.eacs
com.apple.xpc.launchd|2024-10-19 16:38:56.280726 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.templatemigration
com.apple.xpc.launchd|2024-10-19 16:38:56.280739 (commit-boot-mode) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280761 <Notice>: boot-mode committed: (null)
com.apple.xpc.launchd|2024-10-19 16:38:56.280774 (auto-pivot-root) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280786 (allow-non-platform-code) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.280794 <Notice>: allowing non-platform code now
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31023476796] [INFO] [Subsystem: launchd] [Event: exclaves-boot] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31025627711] [INFO] [Subsystem: launchd] [Event: fsck] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31027612444] [INFO] [Subsystem: launchd] [Event: mount-phase-1] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31029536282] [INFO] [Subsystem: launchd] [Event: data-protection] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31031238946] [ERROR] [Subsystem: launchd] [Event: data-protection] posix_spawn(): 86: Bad CPU type in executable
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31033892323] [INFO] [Subsystem: launchd] [Event: detect-installed-roots] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31038737572] [INFO] [Subsystem: launchd] [Event: select-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31042984809] [INFO] [Subsystem: launchd] [Event: commit-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31045402464] [INFO] [Subsystem: launchd] [Event: auto-pivot-root] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
[System Event] [31047422212] [INFO] [Subsystem: launchd] [Event: allow-non-platform-code] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
com.apple.xpc.launchd|2024-10-19 16:38:56.328941 <Notice>: Flushed 23 logs [limit: 20]
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2
com.apple.xpc.launchd|2024-10-19 16:38:56.330784 (restore-datapartition) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 16:38:56.331853 (restore-datapartition) <Notice>: optional boot task not present
com.apple.xpc.launchd|2024-10-19 16:38:56.331885 (mount-phase-2) <Notice>: Doing boot task
get_volume_from_volume_group:324: found volume /dev/disk3s1 with role = 40 in APFS container for root device /dev/disk3s1
mount_by_role:494: Mounting /dev/disk3s1 on /System/Volumes/Data
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s1 No ER state object for volume macos - Data - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s1 mounting volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
handle_mount:817: disk3s1 vol-uuid: 64686C3C-8A70-431F-B812-6846EAE9A739 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.12)
handle_mount:830: disk3s1 setting dev block size to 4096 from 512
nx_volume_group_update:794: disk3s1 Set volume (role 0x40) to 402 xid 0
apfs_log_op_with_proc:3091: disk3s1 mount-complete volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
setup_rosv_data:823: failed to stitch firmlinks for root device /dev/disk3s1, ignoring error (c002) ...
unmount_recursively:233: Could not unmount path /System/Volumes/BaseSystem (force: 0): 22 (Invalid argument).
unmount_basesystem:1055: No BaseSystem mounted.
cocomm.paprpelse.sxopcr._lasuntchod|r20e24_-1s0t-o1p9_ c0o9m:p3a9c:t0i0o.n8 5=6 7F4A6L S(Ee
able-swap) <Notice>: Doing boot task                                                       n
com.apple.xpc.launchd|2024-10-19 09:39:02.108078 <Notice>: swap enabled
com.apple.xpc.launchd|2024-10-19 09:39:02.108114 (sandbox-enable-root-translation) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:02.108283 (init-with-data-volume) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:02.861064 (deferred_install) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:02.868286 (deferred_install) <Notice>: optional boot task not present
com.apple.xpc.launchd|2024-10-19 09:39:02.868325 (fips) <Notice>: Doing boot task
About to call the FIPS_POST function in the corecrypto.dylib
Tracing: disabled
FIPSPOST_USER [37928249432] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, User, Software, SL1]
FIPSPOST_USER [37930938306] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac
FIPSPOST_USER [37934451626] fipspost_post:166: PASSED: (2 ms) - fipspost_post_integrity
FIPSPOST_USER [37935475637] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator
FIPSPOST_USER [37936366548] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb
FIPSPOST_USER [37937028200] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc
FIPSPOST_USER [37939571500] fipspost_post:173: PASSED: (1 ms) - fipspost_post_rsa_sig
FIPSPOST_USER [37944612346] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa
FIPSPOST_USER [37945666393] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh
FIPSPOST_USER [37946594975] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm
FIPSPOST_USER [37947443476] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac
FIPSPOST_USER [37948324629] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf
FIPSPOST_USER [37956271015] fipspost_post:179: PASSED: (7 ms) - fipspost_post_pbkdf
FIPSPOST_USER [37957117072] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac
FIPSPOST_USER [37957891094] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr
FIPSPOST_USER [37958778388] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac
FIPSPOST_USER [37959777683] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm
FIPSPOST_USER [37960767359] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts
FIPSPOST_USER [37961724755] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb
FIPSPOST_USER [37962680568] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr
FIPSPOST_USER [37969350810] fipspost_post:189: PASSED: (5 ms) - fipspost_post_ffdh
FIPSPOST_USER [37973911835] fipspost_post:190: PASSED: (3 ms) - fipspost_post_rsa_enc_dec
FIPSPOST_USER [37974756119] fipspost_post:191: PASSED: (0 ms) - fipspost_post_shake
FIPSPOST_USER [37975683980] fipspost_post:210: all tests PASSED (47 ms)
Returned from calling the FIPS_POST function in the corecrypto.dylib: result = true
com.apple.xpc.launchd|2024-10-19 09:39:03.256239 (keystore-init) <Notice>: Doing boot task
running early boot task
OD access token exists
AppleKeyStore:2619:10: Mapping volume without a valid persona.
AppleKeyStore:2697:10: mapped uuid 6247366C-7B06-5EF1-A00C-F983162807B1 to bag -5, persona none, compressed uuid: 187818572, flags: 1
AppleKeyStore:4532:10: cmd: 18, booted_from: 1, result: 0
AppleKeyStore:784:10: uuid[0000,0016): 6247366c7b065ef1a00cf983162807b1
AppleKeyStore:2078:10: result = 1
AppleKeyStore:680:10: vek_data cached
AppleKeyStore:2279:10: vek did not decrypt, result: -2, have_kek:0 (loaded locked volume bag)
AppleKeyStore:2300:10: cmd=18, result=0, have_kek=0, booted_from=1
loaded the OD access token as the system keychain
early boot task result: 0
com.apple.xpc.launchd|2024-10-19 09:39:04.292571 (cache-start) <Notice>: Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:04.477033 (dirs_cleaner) <Notice>: Doing boot task
get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument
get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument
[System Event] [39566954177] [INFO] [Subsystem: launchd] [Event: restore-datapartition] Doing boot task
Couldn't build index for com.apple.init_featureflags: Not eligible for acceleration
[System Event] [41845274064] [INFO] [Subsystem: launchd] [Event: restore-datapartition] optional boot task not present
[System Event] [41847133272] [INFO] [Subsystem: launchd] [Event: mount-phase-2] Doing boot task
[System Event] [41848056123] [INFO] [Subsystem: launchd] [Event: enable-swap] Doing boot task
[System Event] [41848874598] [INFO] [Subsystem: launchd] [Event: sandbox-enable-root-translation] Doing boot task
[System Event] [41849887829] [INFO] [Subsystem: launchd] [Event: init-with-data-volume] Doing boot task
[System Event] [41850731120] [INFO] [Subsystem: launchd] [Event: deferred_install] Doing boot task
[System Event] [41851750963] [INFO] [Subsystem: launchd] [Event: deferred_install] optional boot task not present
[System Event] [41852875553] [INFO] [Subsystem: launchd] [Event: fips] Doing boot task
[System Event] [41853834181] [INFO] [Subsystem: launchd] [Event: keystore-init] Doing boot task
[System Event] [41854782500] [INFO] [Subsystem: launchd] [Event: cache-start] Doing boot task
[System Event] [41855814265] [INFO] [Subsystem: launchd] [Event: dirs_cleaner] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:04.845492 <Notice>: launchd logging initialized. name: com.apple.xpc.launchd pid: 1
com.apple.xpc.launchd|2024-10-19 09:39:04.845510 (xpcroleaccountd) <Notice>: Doing boot task
[System Event] [41869123060] [INFO] [Subsystem: launchd] [Event: xpcroleaccountd] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:05.697865 (init_featureflags) <Notice>: Doing boot task
[System Event] [41871228890] [INFO] [Subsystem: launchd] [Event: init_featureflags] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:10.563962 (EndpointSecurity) <Notice>: Doing boot task
[System Event] [45286510087] [INFO] [Subsystem: launchd] [Event: EndpointSecurity] Doing boot task
endpointsecurityd: Starting early boot task
endpointsecurityd: Loaded 0 early boot clients from .early_boot.plist
endpointsecurityd: No need to downcall, there are no early boot clients
com.apple.xpc.launchd|2024-10-19 09:39:11.158096 (rc.server) <Notice>: Doing boot task
[System Event] [45880701995] [INFO] [Subsystem: launchd] [Event: rc.server] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:11.159452 (rc.server) <Notice>: optional boot task not present
[System Event] [45883487891] [INFO] [Subsystem: launchd] [Event: rc.server] optional boot task not present
com.apple.xpc.launchd|2024-10-19 09:39:11.159460 (tzinit) <Notice>: Doing boot task
[System Event] [45886649261] [INFO] [Subsystem: launchd] [Event: tzinit] Doing boot task
tzinit: Latest update incompatible with system, or not newer than current: 2024a.1.0 vs. 2024a.1.0: Undefined error: 0
com.apple.xpc.launchd|2024-10-19 09:39:11.476168 (dirhelper) <Notice>: Doing boot task
[System Event] [46198756348] [INFO] [Subsystem: launchd] [Event: dirhelper] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:14.383611 (rootless-init) <Notice>: Doing boot task
[System Event] [49106144625] [INFO] [Subsystem: launchd] [Event: rootless-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:15.644025 (finish-demo-restore) <Notice>: Doing boot task
[System Event] [50366872695] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:17.255146 (finish-demo-restore) <Notice>: optional boot task not present
[System Event] [51978099807] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] optional boot task not present
com.apple.xpc.launchd|2024-10-19 09:39:17.334188 (systemstats) <Notice>: Doing boot task
[System Event] [52056918134] [INFO] [Subsystem: launchd] [Event: systemstats] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:17.777183 (prng_seedctl) <Notice>: Doing boot task
[System Event] [52499885517] [INFO] [Subsystem: launchd] [Event: prng_seedctl] Doing boot task
Couldn't build index for com.apple.prng_seedctl: Not eligible for acceleration
kern.prng.user_reseed_count: (-1) (2) No such file or directory
com.apple.xpc.launchd|2024-10-19 09:39:17.898654 (workload-properties-init) <Notice>: Doing boot task
[System Event] [52621379684] [INFO] [Subsystem: launchd] [Event: workload-properties-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:17.898969 (init-exclavekit) <Notice>: Doing boot task
[System Event] [52624133841] [INFO] [Subsystem: launchd] [Event: init-exclavekit] Doing boot task
com.apple.xpc.launchd|2024-10-19 09:39:18.141289 (boot) <Notice>: Early boot complete. Continuing system boot.
[System Event] [52864611887] [INFO] [Subsystem: launchd] [Event: boot] Early boot complete. Continuing system boot.
com.apple.xpc.launchd|2024-10-19 09:39:19.847649 (cache-tag) <Notice>: Doing boot task
[System Event] [54572414224] [INFO] [Subsystem: launchd] [Event: cache-tag] Doing boot task
Couldn't build index for com.apple.dynamic_pager: Not eligible for acceleration
Couldn't build index for com.apple.KernelEventAgent: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 09:39:24.320070 (system/com.apple.iomfb_bics_daemon [120]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_bics_daemon' Executable: '/usr/libexec/IOMFB_bics_daemon'
Couldn't build index for com.apple.uninstalld: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 09:39:25.398414 (system/com.apple.iomfb_fdr_loader [115]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_fdr_loader' Executable: '/usr/bin/IOMFB_FDR_Loader'
Couldn't build index for com.apple.Installer-Progress: Not eligible for acceleration
AppleCredentialManagerUserClient: start: SUID=-1.
AppleCredentialManagerUserClient: start: SUID=-1.
Couldn't build index for com.apple.digest-service: Not eligible for acceleration
Couldn't build index for com.apple.kextload: Not eligible for acceleration
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 17 ret: e00002c2, -1)
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 7 ret: e00002c2, -1)
tx_flush:853: disk3 tx xid 239470 was closed for 1404561 us waiting to prepare to flush
tx_enter_internal:2403: disk3 waited 1331972 us to open tx xid 239471 (nx_tx_wait_closed)
AppleCredentialManagerUserClient: start: SUID=-1.
ACMTRM: _onDaemonStarted: registering TRM notifiers.
ACMTRM: _registerBioNotifier: Biometric driver not detected.
ACMTRM: _onDaemonStarted: starting TRM policy engine.
ACMTRM: _onDaemonStarted: entering startup thread (startupFlags=0x0).
AssertMacros: consoleUsersPropertyObject (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelSerACMTRM: _startupThreadCallHandler: _currentDeviceStateFromConsoleUsers() -> 0x0.
ACMTRM: _startPolicy: startingInBaseSystem=NO startingInNormalOS=YES pivotingToNormalOS=NO | startupFlags=0x0 | initial deviceLockState=LOCKED(1) keybagState=0x0 consoleState=0x0.
ACMTRM-S: _loadAll: called, isLockerAvailable=NO.
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM-S: _loadAll: skipping *policy* <- daemon (gen=0 osLen=61).
ACMTRM-S: _loadAll: fetching *analytics* <- daemon (gen=0 osLen=400 dataLen=400 ver=1).
ACMTRM-A: onPolicyStarted: *analytics* successfully loaded.
ACMKernelService: initValueFromBootArgAliasesUInt32: analytics period = 86400 (default).
ACMTRM-A: setProperty: propCollectionPeriod=86400 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propPolicyModeTimeout=604800 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propGracePeriodBoundedTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: incrementCounter: cntDaemonStarted=11.
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _logPolicy: LOADED: ver=0 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=0 gpRsn=0 cMs=NO upTm=0 disBy=0 rpTm=0.
ACMTRM: _logConfig: caller=_loadConfig ver=1 gSw=1 GP=2 Pro=2.
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMTRM-A: setProperty: propGracePeriodTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _mapAndPublishTRM: set TRM_GracePeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=1) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMTRM-A: setProperty: propPolicyDisabledByBits=8 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N* DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N* IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N* SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N* CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N* BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM-C: onPolicyStarted: *acc-cache* not found.
ACMTRM: _startPolicy: timePolicyViolated=NO (saveTime=0 bootCalTime=1729356023 (delta=1729356023) bootUpTime=117 nowUp=1729356023).
ACMTRM: _startPolicy: policyViolated=NO (timePolicyViolated=NO passcodeThreshold=NO corruptedStateDetected=NO unexpectedShutdownDetected=NO).
ACMTRM: _publish: _startPolicy LOCKED(1) reason=0 en=NO pro=2/2 pasThr=NO kb=0 con=0 poRsn=0 smExp=NO gpBlk=NO miss=NO seen=0 now=1729356023(0) | PMT=0/0 GPT=0/0/(0) RPT=0/0 UPT=0/0.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMiss = False.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissThreshold = 5.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissCount = 0.
ACMTRM: _mapAndPublishTRM: set TRM_ConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_EffectiveConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_DeviceLocked = True.
ACMTRM: _mapAndPublishTRM: set TRM_BaseSystem = False.
ACMTRM: _mapAndPublishTRM: set TRM_Recovery = False.
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriod = False.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriod = False.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=10) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=0/5/0 AFNA(2)/AFNA(2) L=1 BS=0 R=0 RP=259200/0 UP=86400/0, CUR: U(0) X(0).
ACMTRM: _logPolicy: SAVING: ver=12 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=1729356023 gpRsn=0 cMs=NO upTm=0 disBy=8 rpTm=0.
ACMTRM-S: setData: saving *policy* (dataLen=61) in 3 seconds (fullSync: NO -> NO).
ACMTRM-C: notifyClients_AccCache_Refreshed: sent kACMTRMMessage_AccCache_Refreshed(0) -> 0xe00002c7.
ACMTRM: _isEnrollmentNeeded: enrollmentReason: eraseInstall=YES upgradeFromPreTRMSystem=NO.
ACMTRM: _isEnrollmentNeeded: enrollmentNeeded=YES (loadedVersion=0).
ACMTRM: _startEnrollment: set TRM_EnrollmentPending = True.
Couldn't build index for com.apple.hfs: Not eligible for acceleration
Couldn't build index for com.apple.fsck_hfs: Not eligible for acceleration
Couldn't obtain preoslog region: result = -1, preoslog_pa = 0, preoslog_size = 0
Couldn't build index for com.apple.mount_hfs: Not eligible for acceleration
spec_open : si_devbsdunit initialized to (2), throttle_mask is (0x4), isssd is (1)
hfs: mounted macOS Base System on device disk2s1
ioqueue_depth = 256,   ioscale = 8
Failed to handle the new encryption key. Error 0xe00002d8bufattr_get_apfs:8688: Only accept buf I/O, no raw disk access
disk3s5s1: device is not readable.
Couldn't build index for com.apple.socketfilterhelper: Not eligible for acceleration
AppleKeyStore:7690:119: unexpected session uid: -1 requested by: powerd (119)
AppleKeyStore:12195:119: operation failed (sel: 7 ret: e00002c2, -1)
ACMTRM-S: _saveAll: pushing *policy* -> daemon (gen=1 dataLen=61 ver=12).
ACMTRM-S: _saveAll: pushing *analytics* -> daemon (gen=1 dataLen=400 ver=1).
ifnet_attach: All kernel threads created for interface en0 have been scheduled at least once. Proceeding.
_dlil_get_flowswitch_buffer_size: en0 1504 1500
AppleKeyStore:7690:106: unexpected session uid: -1 requested by: UserEventAgent (106)
AppleKeyStore:12195:106: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:66:106: ioreg: 0, boot_arg: 0
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
AppleKeyStore:7690:127: unexpected session uid: -1 requested by: keybagd (127)
AppleKeyStore:12195:127: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
Couldn't build index for com.apple.usbmuxd: Not eligible for acceleration
AppleKeyStore:7690:264: unexpected session uid: -1 requested by: containermanagerd_system (264)
AppleKeyStore:12195:264: operation failed (sel: 17 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
Couldn't build index for com.apple.systemkeychain: Not eligible for acceleration
Couldn't build index for com.apple.CodeSigningHelper: Not eligible for acceleration
handle_snapshot_lookup:11560: disk3s5 failed to get snapshot metadata object, error = 2
RTC: setGMTTimeOfDay 1729338049
tx_flush:1173: disk3 tx xid 239472 took 1701474 us to flush
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
ALUC:init(PID: 315), lifsd_entitlement 1 koio_entitlement 0
methodSetClientDomain entered
registerNotificationPort entered
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
KextLog: kernelmanagerd is not active
tx_flush:1173: disk3 tx xid 239479 took 1034227 us to flush
tx_flush:1274: disk3 tx xid 239479 took 1075433 us to sync and write superblock
tx_flush:1338: disk3 xid 239480 tx stats: # 20 owait 7 308547us finish 20 bar2 20 f 3 enter 216 fq 27 30 12821us close 9us prep 435us flush 1107922us
KextLog: kernelmanagerd is not active
KextLog: kernelmanagerd is not active
KextLog: Loading FileSet KC(s)
KextLog: Loading Pageable KC from file /System/Library/KernelCollections/SystemKernelExtensions.kc
com.apple.xpc.launchd|2024-10-19 04:41:32.455081 (system/com.apple.appleh13camerad [333]) <Error>: Missing executable detected. Job: 'com.apple.appleh13camerad' Executable: '/usr/sbin/appleh13camerad'
ALUC:clientDied(PID: 315), lifsd_entitled 1 koio_entitled 0
KextLog: Collection UUID matches with loaded KCs.
KextLog: Loading Aux KC from file /Library/KernelCollections/AuxiliaryKernelExtensions.kc
KextLog: Collection UUID matches with loaded KCs.
Matching service count = 13
Matching service count = 17
Matching service count = 17
deferred rematching count 0
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
print_unknown_ioctl:16435: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
print_unknown_ioctl:16435: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
busy timeout[0], (60s): multiple entries holding the registry busy, IOKit termination queue depth 0: 'AppleACPICPU' (1e,4020001), 'S00' (1e,4020001), 'S01' (1e,4020001), 'S08' (1e,4020001), 'SFB' (1e,4020001), 'COM1' (1e,4020001), 'IOTimeSyncRootService' print_unknown_ioctl:16435: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 134
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
apfs_mount:29352: disk3s5 EALREADY; rooted from snap, apfs <ptr>
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: mount_apfs (pid 347); parent: com.apple.Mobile (pid 342)
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239483)
IOG flags 0x3 (0x51)
Driver com.apple.DriverKit-IOUserDockChannelSerial has crashed 0 time(s)
DK: NIOoU seGrenDerocatkiCohna fnrnoemlS SeMrCi.a
0x100000297 waiting for server com.apple.IOUserDockChannelSerial-100000297
No Generation from SMC.
X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
X86PlatformPlugin::getCPUCStates - C001 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C001 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C001 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C001 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C002 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C002 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C002 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C002 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::getCPUCStates - C003 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - C003 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C003 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - C003 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
apfs_mount_livefs:29054: disk3 mount no firmlinks
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
nfs_kext_start: successfully loaded NFS kext
AppleIPAppender::probe(IOResources)
handle_mount:830: disk3s5 setting dev block size to 4096 from 512
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: mount_apfs (pid 347); parent: com.apple.Mobile (pid 342)
ioqueue_depth = 256,   ioscale = 8
nx_global_extent_manipulation_lock:5757: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
nx_global_extent_manipulation_lock:5827: disk3 Shared global_extent_manipulation lock taken after 0 attempts
handle_revert_to_snapshot:8007: disk3s5 On next mount, volume will revert to snapshot 'com.apple.os.update-C6C236054E23451B9FDAC2E9FA0969DAD53C1365B023068D492024B3BDE60770' w/snap xid 3421
nx_global_extent_manipulation_unlock:5852: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
tx_flush:1173: disk3 tx xid 239484 took 1595312 us to flush
S08: match category IODefaultMatchCategory exists
AppleIPAppender::start(IOResources) <1>
GTrace synchronization point 0
GTrace synchronization point 2
com_apple_filesystems_nfs: successfully loaded NFS module
shared_region: 0xc7be2fef29b9283b [352(com.apple.Driver)] check_np(0x7ff7b7408aa0) vm_shared_region_start_address() failed
shared_region: 0xc7be2fef29b9283b [352(com.apple.Driver)] check_np(0x7ff7b7407ee8) vm_shared_region_start_address() failed
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/DriverKit/System/Library/dyld/dyld_shared_cache_x86_64h' is adhoc signed.
shared_region: 0xc7be2fef29b9283b [352(com.apple.Driver)]: vnode_lookup(/System/DriverKit/System/Library/dyld/) failed (error=2)
tx_flush:1173: disk3 tx xid 239485 took 1215912 us to flush
Couldn't build index for com.apple.mdbulkimport: Not eligible for acceleration
DK: IOUserDockChannelSerial-0x100000297::start(IOUserResources-0x100000118) ok
apfs_stop_bg_work:883: disk3s5 Volume macos is unmounting, stop any bg work
X86PlatformPlugin::configResourceCallback - DeepSleep is not supported!
X86PlatformPlugin::configResourceCallback - DeepSleep is not supported!
[AGPM][INFO ][CONTROLLER  ][start                   ] Entered AGPMController::start()
[AGPM][INFO ][CONTROLLER  ][start                   ] init fSlotControl, fSlotControl = 0
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] machines_dict->getObject(modelName iMacPro1,1)
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] gpuDict S00
[AGPM][INFO ][CONTROLLER  ][createAGPMClass         ] build gpuDict by GPU S00.
[AGPM][WARN ][CONTROLLER  ][createAGPMClass         ] GPU = S00 unknownPlatform (no matching vendor_id+device_id or GPU name); don't create AGPM class
[AGPM][INFO ][CONTROLLER  ][start                   ] fIsExternalGPU 0
X86PlatformPlugin::cgRegisterCallbackHandler - entered, type gpu-external-plimit-notification, target AGPM
X86PlatformPlugin::cgRegisterCallbackHandler - entered, type gpu-external-plimit-notification, target AGPM
X86PlatformPlugin::cgRegisterPLimitCallbackHandler - There are 0 entries in the linked list before target name AGPM
X86PlatformPlugin::cgRegisterPLimitCallbackHandler - There are 0 entries in the linked list before target name AGPM
HE2N_Key Does Not Exist, use kSMCPStatesEGPU for External GPU
HE2N_Key Does Not Exist, use kSMCPStatesEGPU for External GPU
Failed to send SMC number of eGPU P states (16) due to 0x82!
Failed to send SMC number of eGPU P states (16) due to 0x82!
[AGPM][INFO ][CONTROLLER  ][start                   ] GPU = S00 Initialized, Control ID 17
[AGPM][INFO ][CONTROLLER  ][start                   ] Exited AGPMController::start()
busy extended ok[1], (60s, 69s)
apfs_log_op_with_proc:3091: disk3s5 unmounting volume macos, requested by: com.apple.MobileSoftwareUpdate. (pid 342); parent: launchd (pid 1)
apfs_vfsop_unmount:3221: disk3s5 waiting for purgatory cleaner to finish
authapfs_seal_restore:598: disk3s5 integrity protection will be re-enabled
apfs_vfsop_unmount:3567: disk3 nx_num_vols_mounted is 5
apfs: total mem allocated: 49209846 (47 mb);
apfs_vfsop_unmount:3580: all done.  going home.  (numMountedAPFSVolumes 5)
apfs_mount:29352: disk3s5 EALREADY; rooted from snap, apfs <ptr>
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: mount_apfs (pid 372); parent: com.apple.Mobile (pid 342)
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239496)
apfs_mount_livefs:29054: disk3 mount no firmlinks
revert_to_snapshot:1605: disk3s5 Reverting to snapshot w/xid 3421 and old sblock oid 1097964.
revert_extents_to_snapshot:1421: disk3s5 free'ing extents in main extentref tree 603828
free_allocated_snapshot_extents:1336: disk3s5 processed 0 extents and free'd 0 blocks
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:12195:373: operation failed (sel: 17 ret: e00002f0, 205)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
louldn'*t b*uil**d [ IiOnBdelxu feort coomo.atpphleH.aCudIioU.sDreirvCerlHeilpeern:t N]ot[ SeleigtibBleT fRoBr OacfcfWeLle] ra-t-i omBn
 uetoothFamily->mACPIMethods->SetBTRB (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTLPOffWL] -- mBluetoothFamily->mACPIMethods->SetBTLP (OFF) returned 0xE00002C7 error
**** [IOBluetoothHCIUserClient][SetBTRSWL] -- mBluetoothFamily->mACPIMethods->SetBTRS() returned 0xE00002C7 error
AppleKeyStore:7690:167: unexpected session uid: -1 requested by: bluetoothd (167)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:167: operation failed (sel: 7 ret: e00002f0, -1)
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
supplemental_tree_revert:311: disk3s5 reverted supplemental tree (type 5): 604031 -> 603403
tx_leave:2534: disk3 tx xid 239497 took 4241528 us to close
omap_cleanup:1544: disk3s5 started cleaning snapshots 239497-239497
tx_flush:1173: disk3 tx xid 239497 took 4611736 us to flush
Lilu    config: @ (DBG) PE_initialize_console 5
GTkrPaEcDeis asbylnecShcrreoenni z-a1t
on point 8                            i
Lilu    config: @ (DBG) PE_initialize_console 7
S00: Not usable
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
Lilu    config: @ (DBG) PE_initialize_console 5
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
Lilu    config: @ (DBG) PE_initialize_console 5
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
Lilu    config: @ (DBG) PE_initialize_console 5
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
  IOTimeSyncTimeSyncTimePort(0x3634b39bb0d40008): Created general notifier <ptr> for local clock port <ptr>
omap_cleanup:1769: disk3s5 completed cleaning snapshot 239497, om_snap_count 1 om_most_recent_snap 239497
obj_cache_remove_reverted_fs_objects:1775: disk3s5 removing reverted fs objects for fs 1314: 3422 - 239497
revert_to_snapshot:1705: disk3s5 DONE reverting to snapshot w/xid 3421
authapfs_seal_break:502: disk3s5 integrity protection will be disabled (from xid: 239500)
tx_flush:1338: disk3 xid 239500 tx stats: # 40 owait 20 170446us finish 42 bar2 40 f 10 enter 216 fq 63 71 318us close 277881us prep 313us flush 904744us
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:830: disk3s5 setting dev block size to 4096 from 512
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: mount_apfs (pid 372); parent: com.apple.Mobile (pid 342)
ioqueue_depth = 256,   ioscale = 8
apfs_log_op_with_proc:3091: disk3s5 unmounting volume macos, requested by: com.apple.MobileSoftwareUpdate. (pid 342); parent: launchd (pid 1)
apfs_vfsop_unmount:3221: disk3s5 waiting for purgatory cleaner to finish
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
authapfs_seal_restore:598: disk3s5 integrity protection will be re-enabled
apfs_vfsop_unmount:3567: disk3 nx_num_vols_mounted is 5
apfs: total mem allocated: 69243739 (66 mb);
apfs_vfsop_unmount:3580: all done.  going home.  (numMountedAPFSVolumes 5)
IOConsoleUsers: time(0) 0->0, lin 0, llk 1,
IOConsoleUsers: gIOScreenLockState 3, hs 0, bs 0, now 0, sm 0x0
Lilu    config: @ (DBG) PE_initialize_console 5
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
Lilu    config: @ (DBG) PE_initialize_console 5
S00-0x1a5-A: newUserClient failed: 0 0xe00002be 0x1000002b9 IONDRVFramebuffer
Couldn't build index for com.apple.kextstat: Not eligible for acceleration
tx_flush:1338: disk3 xid 239520 tx stats: # 60 owait 23 157082us finish 63 bar2 60 f 12 enter 79 fq 38 48 328us close 28us prep 174us flush 139461us

@VisualEhrmanntraut
Copy link
Member

That’s a bit better, still not useful though. I’m not sure what’s going on here, I’d suggest reconfiguring the EFI as per https://chefkissinc.github.io/guides/hackintosh and seeing if the behaviour changes afterwards.

@Myp3a
Copy link
Author

Myp3a commented Oct 19, 2024

I think I have a clue: my log starts with initialize_screen: No video - forcing serial mode. So macOS thinks there's no display, and because of that GPU isn't initialized at all.

But if I'm adding a QEMU VGA display, everything starts to work - NootedRed loads and patches proper values. However, system is thrown into a reboot afterwards, so we're back at square one. It recognizes the videocard, gets VBIOS and probably behaves as expected. VBIOS is probably fine - if I try other's people VBIOS, system breaks even earlier.

My boot log with VGA attached
kprintf initialized

Serial mode specified: 00000003

version_variant = 0

version         = Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64

KASLR slide: 0x0000000003200000 dynamic

Hiding local relocations

WARNING: ignoring first page in [0x0:0x0]

Physical memory 8192 MB

avail_remaining = 0x1ff6e7

PMAP: Supervisor Mode Execute Protection enabled
Kernel virtual space from 0xffffff8000000000 to 0xffffffffffffefff.

Available physical space from 0x7e20000 to 0x27ffff000

initialize_screen: b=80000000, w=00000780, h=00000438, r=00001E00, d=00000001

Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:00 PDT 2024; root:xnu-10063.141.2~1/RELEASE_X86_64
pmap_startup() delaying init/free of page nums > 0x200000
pmap_startup() init/release time: 25046 microsec
pmap_startup() delayed init/release of 524727 pages
vm_page_bootstrap: 1523182 free pages, 557586 wired pages, (up to 524727 of which are delayed free)
VM boostrap: 73 maps, 153 entries and 128 holes available
Maximum number of VM swap files: 100
kext submap [0x<ptr> - 0x<ptr>], kernel text [0x<ptr> - 0x<ptr>]
"vm_compressor_mode" is 4
VM bootstrap done: 57 maps, 110 entries and 118 holes left
IOKit IOMD setownership ENABLED

ATM subsystem is initialized

OSLog stream configured: stream: 8192 bytes, cache: 2112 bytes
Firehose configured: 16 chunks, 8 io pages
Log queues configured: slot count: 8, per-slot size: 32768, total size: 262144
Long logs support configured: size: 16384
Telemetry: Sampling all tasks once per 1 second

Scheduler: Default of dualq

Setting scheduler priority decay band limit 18

standard timeslicing quantum is 10000 us
standard background quantum is 2500 us
mig_table_max_displ = 54 mach_kobj_count = 375
BANK subsystem is initialized

IPC_PTHREAD_PRIORITY subsystem is initialized

Reallocated master cpu data: 0xffffff80042f3980, interrupt stack: 0xffffffe228b26000, fault stack: 0xffffff800330c800

CPU identification: Intel Core Processor (Haswell, no TSX)

CPU features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 SSE3 PCLMULQDQ SSSE3 FMA CX16 SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES VMM XSAVE OSXSAVE TSCTMR AVX1.0 RDRAND F16C RDWRFSGS BMI1 AVX2 SMEP BMI2 ERMS INVPCID

CPU extended features: SYSCALL XD EM64T LAHF LZCNT RDTSCP TSCI

Initializing EFI runtime services

MSR_IA32_APIC_BASE 0xfee00000 enabled legacy mode BSP

x2APIC supported and will be enabled

x2APIC mode enabled

ID: 0x0 LDR: 0x1

Boot cpu local APIC id 0x0

TSC sync margin disabled

fpu_state: AVX, state_size: 832

Kernel text 0xffffff80034e4000-0xffffff8003ee4000 to be write-protected

Marking (0xffffff8003410000, 0xffffff80034e0000) as rwx

Marking (0xffffff8004564000, 0xffffff80045a0000) as rwx

Marking (0xffffff80045a0000, 0xffffff80045a1000) as rwx

Marking (0xffffff8003ee4000, 0xffffff8003ef6000) as rwx

Marking (0xffffff80034e0000, 0xffffff80034e1000) as rwx

Marking (0xffffff80045a1000, 0xffffff80045a1000) as rwx

Marking (0xffffff8003ef6000, 0xffffff8003ef6000) as rwx

Marking (0xffffff800738e000, 0xffffff800771b000) as rwx

Marking (0xffffff80062b8000, 0xffffff8006303000) as rwx

Marking (0xffffff8003410000, 0xffffff8003410000) as rwx

Marking (0xffffff800634c000, 0xffffff8006e53000) as rwx

[RTCLOCK] frequency 3790000000 (3792888000)

TSC Deadline Timer supported and enabled
kdp_core zlib memory 0x7000
Registered coredump handler for kernel

Kernel boot args: 'keepsyms=1 -v -NRedDebug -liludbg -liluforce debug=0x12a msgbuf=1048576 serial=3 '

corecrypto_kext_start (tracing disabled)

FIPSPOST_KEXT [549167209] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, Kernel, Software, SL1]

FIPSPOST_KEXT [550810204] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac

FIPSPOST_KEXT [552477054] fipspost_post:166: PASSED: (0 ms) - fipspost_post_integrity

FIPSPOST_KEXT [553589456] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator

FIPSPOST_KEXT [554678283] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb

FIPSPOST_KEXT [555748917] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc

FIPSPOST_KEXT [558708677] fipspost_post:173: PASSED: (1 ms) - fipspost_post_rsa_sig

FIPSPOST_KEXT [564085951] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa

FIPSPOST_KEXT [565412343] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh

FIPSPOST_KEXT [566458190] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm

FIPSPOST_KEXT [567546096] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac

FIPSPOST_KEXT [568661815] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf

FIPSPOST_KEXT [574717098] fipspost_post:179: PASSED: (5 ms) - fipspost_post_pbkdf

FIPSPOST_KEXT [575800786] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac

FIPSPOST_KEXT [576906716] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr

FIPSPOST_KEXT [577980946] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac

FIPSPOST_KEXT [579138673] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm

FIPSPOST_KEXT [580215789] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts

FIPSPOST_KEXT [581302563] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb

FIPSPOST_KEXT [582420255] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr

FIPSPOST_KEXT [583502650] fipspost_post:210: all tests PASSED (34 ms)

corecrypto_kext_start completed successfully

Matching service count = 0

Matching service count = 0

ulock_initialize>thread_max=10240, ull_hash_buckets=4096

ACPI: ACPI: RSDP 0x000000007FB7E014 000024 (v02 BOCHS )RSDP 0x000000007FB7E014 000024 (v02 BOCHS )


ACPI: ACPI: XSDT 0x000000007FBFA000 00006C (v01 BOCHS  BXPC     00000001      01000013)XSDT 0x000000007FBFA000 00006C (v01 BOCHS  BXPC     00000001      01000013)


ACPI: ACPI: FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)FACP 0x000000007FB7A000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)


ACPI: ACPI: DSDT 0x000000007FB7B000 001EF0 (v01 BOCHS  BXPC     00000001 BXPC 00000001)DSDT 0x000000007FB7B000 001EF0 (v01 BOCHS  BXPC     00000001 BXPC 00000001)


ACPI: ACPI: FACS 0x000000007FBDD000 000040Darwin Image4 Validator Version 6.3.0: Mon Jul 29 20:57:20 PDT 2024; root:AppleImage4-257.140.2~240/AppleImage4/RELEASE_X86_64
calling mpo_policy_init for AppleImage4
Security policy loaded: AppleImage4 hooks (AppleImage4)
AMFI: queried model name from device tree: ACPI
calling mpo_policy_init for AMFI
Security policy loaded: Apple Mobile File Integrity (AMFI)
AMFI: Booted in a VM
calling mpo_policy_init for Sandbox
Security policy loaded: Seatbelt sandbox policy (Sandbox)
calling mpo_policy_init for Quarantine
Security policy loaded: Quarantine policy (Quarantine)
FACS 0x000000007FBDD000 000040


ACPI: ACPI: APIC 0x000000007FB79000 000078 (v03 BOCHS  BXPC     00000001 BXPC 00000001)APIC 0x000000007FB79000 000078 (v03 BOCHS  BXPC     00000001 BXPC 00000001)


ACPI: ACPI: MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)MCFG 0x000000007FB78000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)


ACPI: ACPI: WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)WAET 0x000000007FB77000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)


ACPI: ACPI: BGRT 0x000000007FB76000 000038 (v01 INTEL  EDK2     00000002      01000013)BGRT 0x000000007FB76000 000038 (v01 INTEL  EDK2     00000002      01000013)


ACPI: ACPI: SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)Lilu    config: @ force enabling due to force flag
Lilu    config: @ (DBG) version DBG-169-2024-10-08 (x86_64), args: disabled 0, debug 1, slow 0, decompress 1
Lilu       dev: @ (DBG) got iMacPro1,1 model from /efi/platform
Lilu       dev: @ (DBG) got Mac-7BA5B2D9E42DDD94 board-id from /efi/platform
Lilu    config: @ (DBG) initialising policy
Lilu     iokit: @ (DBG) OSPrelinkKextCount equals to 5
Lilu      mach: @ (DBG) MachInfo asKernel 1 object constructed
Lilu      mach: @ (DBG) found kernel nouveau mach-o header address at ffffff8003400000
Lilu      mach: @ (DBG) memory init mode - 1
Lilu      mach: @ (DBG) looking up inner kernel in 863 commands at 0xFFFFFF800340

ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)

ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)

ACPI: SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)

ACPI Error: [S38_] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)

ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-310)

ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)

ACPI Error: 1 table load failures, 4 successful (20160930/tbxfload-342)

0000
SSDT 0x000000007FBFE000 00010B (v02 ACDT   SsdtEC   00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFD000 0000B1 (v02 CpuRef CpuPlug  00003000 INTL 20190509)
ACPI: SSDT 0x000000007FBFC000 000064 (v02 KGP    DTPG     00001000 INTL 20190509)
ACPI: SSDT 0x000000007FBFB000 0000A3 (v01 KGP    QEMUUSB  00000000 INTL 20190509)
ACPI Error: [S38_] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-292)
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-310)
ACPI Exception: AE_NOT_FOUND, (SSDT: QEMUUSB) while loading table (20160930/tbxfload-319)
ACPI Error: 1 table load failures, 4 successful (20160930/tbxfload-342)
Lilu      mach: @ (DBG) got nouveau mach-o for kernel at 0xFFFFFF80034E4000
Lilu      mach: @ (DBG) kernel has segment is __TEXT from 0xFFFFFF80034E4000 to 0xFFFFFF8003EE4000
Lilu      mach: @ (DBG) kernel has segment is __DATA from 0xFFFFFF80042D4000 to 0xFFFFFF8004564000
Lilu      mach: @ (DBG) kernel has segment is __DATA_CONST from 0xFFFFFF8003410000 to 0xFFFFFF80034E0000
Lilu      mach: @ (DBG) kernel has segment is __KLDDATA from 0xFFFFFF8004564000 to 0xFFFFFF80045A0000
Lilu      mach: @ (DBG) kernel has segment is __HIB from 0xFFFFFF8003300000 to 0xFFFFFF800339F000
Lilu      mach: @ (DBG) kernel has segment is __VECTORS from 0xFFFFFF80045A0000 to 0xFFFFFF80045A1000
Lilu      mach: @ (DBG) kernel has segment is __KLD from 0xFFFFFF8003EE4000 to 0xFFFFFF8003EF6000
Lilu      mach: @ (DBG) kernel has segment is __LASTDATA_CONST from 0xFFFFFF80034E0000 to 0xFFFFFF80034E1000
Lilu      mach: @ (DBG) kernel has segment is __LAST from 0xFFFFFF80045A1000 to 0xFFFFFF80045A1000
Lilu      mach: @ (DBG) kernel has segment is __PRELINK_TEXT from 0xFFFFFF8003EF6000 to 0xFFFFFF8003EF6000
Lilu      mach: @ (DBG) kernel has segment is __PRELINK_INFO from 0xFFFFFF800738E000 to 0xFFFFFF800771B000
Lilu      mach: @ (DBG) kernel has segment is __LINKINFO from 0xFFFFFF80062B8000 to 0xFFFFFF8006303000
Lilu      mach: @ (DBG) kernel has segment is __CTF from 0xFFFFFF8003410000 to 0xFFFFFF8003410000
Lilu      mach: @ (DBG) kernel has segment is __LINKEDIT from 0xFFFFFF800634C000 to 0xFFFFFF8006E52430
Lilu      mach: @ (DBG) activating slots for kernel in 0xFFFFFF80034E53E8 - 0xFFFFFF80035BF3E7
Lilu      mach: @ (DBG) found symbol _PE_initialize_console at 0xffffff8003da91a0 (non-aslr 0xffffff8003da91a0), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF8003DA91A0 to 0xFFFFFF8006EEEBC0 diff 0x0000000003145A1B argument 3145A1B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8F56 to 0xFFFFFF8003DA91A6 diff 0xFFFFFFFFFCEC024B argument FCEC024B
Lilu   patcher: @ (DBG) wrapped _PE_initialize_console
Lilu       api: @ (DBG) got load request from NootedRed (100)
NootedRed      init: @ (DBG) NootedRed bootstrap DBG-100-2024-10-18
NootedRed      NRed: @ Copyright 2022-2024 ChefKiss. If you've paid for this, you've been scammed.
NootedRed      NRed: @ Module initialised
NootedRed      NRed: @ (DBG) catalina = no
NootedRed      NRed: @ (DBG) bigSurAndLater = yes
NootedRed      NRed: @ (DBG) monterey = no
NootedRed      NRed: @ (DBG) montereyAndLater = yes
NootedRed      NRed: @ (DBG) ventura = no
NootedRed      NRed: @ (DBG) venturaAndLater = yes
NootedRed      NRed: @ (DBG) ventura1304Based = no
NootedRed      NRed: @ (DBG) ventura1304AndLater = yes
NootedRed      NRed: @ (DBG) sonoma1404AndLater = yes
NootedRed      NRed: @ (DBG) If any of the above values look incorrect, please report this to the developers.
NootedRed   X6000FB: @ Module initialised
NootedRed    HWLibs: @ Module initialised
NootedRed     X6000: @ Module initialised
NootedRed     X5000: @ Module initialised
Lilu       api: @ (DBG) got load request from AppleALC (190)
ACMKernelUtils: initValueFromBootArgU32: acm_fastsim = 0xffffffff <--- not found.
ACMKernelUtils: initValueFromDTPropertyU32: /defaults/insecure_hpr = 0x0 <--- not found.
ACMKernelUtils: isFastSimTarget: isFastSim =pci (build 20:58:17 Jul 29 2024), flags 0xc3080

 NO.
pci (build 20:58:17 Jul 29 2024), flags 0xc3080
AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
ASP: initializing bastion sandbox callback
no external trust caches found (segment length is zero)
ACMKernelUtils: initValueFromDTPropertyU32: /efi/platform/apple-coprocessor-version = 0x0 <--- not found.
ACMKernelUtils: getEOSDeviceType: eosDeviceType = 0.
AppleCredentialManager: init: inited KE[1] (ready=NO AVP=NO SIM=NO SIMT=NO USESEP=NO) -> true.
AppleCredentialManager: probe: probed KE[1] (ready=NO) -> true (score=0).
AppleCyrus::probe(IOResources)

AppleKeyStoreTest::probe(IOResources)

AppleCredentialManager: start: starting KE[1] (ready=NO) -> true.
AppleCredentialManager: initImpl: called, KE[1].
AppleCredentialManager: initImpl: eosDeviceType=0, useOptionalSEP=NO.
ACM: Env_SetVariableWithParams: set var[6] len=1 <00>.
ACM: InitCredentialEngine: Global credential set created, CS[20].
ACM: Env_SetVariableWithParams: set var[5] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[23] len=1 <01>.
ACM: Env_SetVariableWithParams: set var[24] len=22 <4a756c20323920323032342c2032313a30383a313500>.
ACM: Env_SetDataProvider: data provider *set* for var[25].
ACM: Env_SetDataProvider: data provider *set* for var[27].
ACM: Env_SetDataProvider: data provider *set* for var[36].
ACM: Env_SetDataProvider: data provider *set* for var[22].
ACM: Env_SetDataProvider: data provider *set* for var[29].
ACM: Env_SetVariableWithParams: set var[7] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[26] len=1 <00>.
ACM: Env_SetVariableWithParams: set var[33] len=1 <01>.
IOAPIC: Version 0x11 Vectors 64:87
ACM: Env_SetVariableWithParams: set var[34] len=1 <00>.
ACM: Env_SetDataProvider: data provider *set* for var[47].
ACM: Env_SetDataProvider: data provider *set* for var[44].
ACM: SEPControl_SetCallback: ACM control provider *set* for control code[1].
ACM: Env_SetDataSetCallback: data set callback *set* for var[43].
ACM: Env_SetDataSetCallback: data set callback *set* for var[42].
ACM: Env_SetDataProvider: data provider *set* for var[51].
ACMFirstResponderKernelService: init: called, .
ACMTRM-S: init: called, starting PersistentStore service.
ACMTRM-A: init: called, starting TRM Analytics service.
ACMTRM-C: init: called, starting AccessoryCache service.
ACMKernelService: initValueFromBootArgAliasesUInt32: acACPI: Executed 3 blocks of module-level executable AML code

kPEDisableScreen -1

watchdog disabled by platform configurationPMRD: Sleep failure code 0xffffffff 0xffffffff

Matched against SMC (started)

No Generation from SMC.

c-cache size = 48 (default).
ACPI: Executed 3 blocks of module-level executable AML code
ACPI: sleep states S5
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[addMemoryRange()] AppleVTD is not yet installed as gSystem
[ PCI configuration begin ]
IOPCIConfigurator::configure kIOPCIEnumerationWaitTime is 900
Lilu    config: @ (DBG) PE_initialize_console 7
Previous shutdown cause: 0
Sleep failure code 0xffffffff 0xffffffff
ACMKernelService: initValueFromBootArgAliasesUInt32: acc-cache expiration = 2592000 (default).
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM: init: called, starting TRM service.
ACMKernelService: initValueFromBootArgAliasesUInt32: policy supported in BaseSystem = 0 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMKernelService: initValueFromBootArgAliasesUInt32: policy mode timeout = 604800 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: grace period (bounded) timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: relaxed period timeout = 259200 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: unlocked period timeout = 86400 (default).
ACMKernelService: initValueFromBootArgAliasesUInt32: enabled by default = 1 (default).
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N* Arg=N HW=N DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N Arg=N* HW=N DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
AssertMacros: data (value: 0x0), 'disable-transport-rm' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestricACMTRM: _loadDisabledByOSEnvironment: disabled by OSEnvironment: NO.
ACMTRM: _disableBy: [TRM ENABLED=YES] (mask=0, DISABLED BY: Def=N Arg=N HW=N DT=N Env=N* Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y* DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N* Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
AssertMacros: data (value: 0x0), 'kPEEnableScreen -1

[AHCI][PML][00000000]+IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals

[AHCI][PML][00000000]-IOAHCIPortMultiplierGlobals::IOAHCIPortMultiplierGlobals

external-boot' property not found, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeLilu    config: @ (DBG) PE_initialize_console 6
Lilu    config: @ (DBG) PE_initialize_console 6 performing init
Lilu       dev: @ (DBG) creating device info
Lilu       dev: @ (DBG) found root device chosen
Lilu       dev: @ (DBG) found root device efi
Lilu       dev: @ (DBG) found root device cpus
Lilu       dev: @ (DBG) found root device memory
Lilu       dev: @ (DBG) found root device rom
Lilu       dev: @ (DBG) found root device PCI0
Lilu       dev: @ (DBG) found PCI root PCI0
Lilu       dev: @ (DBG) pci bridge PCI0 is configured 0
Lilu     iokit: @ (DBG) getOSData vendor-id was not found
Lilu     iokit: @ (DBG) getOSData class-code was not found
Lilu       dev: @ (DBG) found pci device PRES 0x0 0x0
Lilu     iokit: @ (DBG) getOSData vendor-id was not found
Lilu     iokit: @ (DBG) getOSData class-code was not found
Lilu       dev: @ (DBG) found pci device GPE0 0x0 0x0
Lilu     iokit: @ (DBG) getOSData vendor-id was not found
Lilu     iokit: @ (DBG) getOSData class-code was not found
Lilu       dev: @ (DBG) found pci device FWCF 0x0 0x0
Lilu     iokit: @ (DBG) getOSData vendor-id was not found
Lilu     iokit: @ (DBG) getOSData class-code was not found
Lilu       dev: @ (DBG) found pci device EC 0x0 0x0
Lilu     iokit: @ (DBG) getOSData vendor-id has 8086 value
Lilu     iokit: @ (DBG) getOSData class-code has 60000 value
Lilu       dev: @ (DBG) found pci device S00 0x8086 0x60000
Lilu     iokit: @ (DBG) getOSData vendor-id has 1B36 value
Lilu     iokit: @ (DBG) getOSData class-code has 60400 value
Lilu       dev: @ (DBG) found pci device S08 0x1b36 0x60400
Lilu       dev: @ (DBG) found pci bridge S08
Lilu       dev: @ (DBG) pci bridge S08 is configured 0
Lilu       dev: @ (DBG) found S00 on pci bridge
Lilu     iokit: @ (DBG) getOSData vendor-id has 1002 value
Lilu     iokit: @ (DBG) getOSData class-code has 30000 value
Lilu     iokit: @ (DBG) getOSData device-id has 1638 value
Lilu       dev: @ (DBG) found IGPU device S00
Lilu       dev: @ (DBG) found S01 on pci bridge
Lilu     iokit: @ (DBG) getOSData vendor-id has 1002 value
Lilu     iokit: @ (DBG) getOSData class-code has 40300 value
Lilu       dev: @ (DBG) found audio device S01 at S08 by 1002
Lilu       dev: @ (DBG) marking audio device as HDEF at S01
Lilu     iokit: @ (DBG) getOSData vendor-id has 1B36 value
Lilu     iokit: @ (DBG) getOSData class-code has 60400 value
Lilu       dev: @ (DBG) found pci device S0A 0x1b36 0x60400
Lilu       dev: @ (DBG) found pci bridge S0A
Lilu       dev: @ (DBG) pci bridge S0A is configured 0
Lilu       dev: @ (DBG) found S00 on pci bridge
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has 30000 value
Lilu       dev: @ (DBG) found GFX0 device S00 at S0A by 1AF4
Lilu     iokit: @ (DBG) getOSData vendor-id has 1B36 value
Lilu     iokit: @ (DBG) getOSData class-code has 60400 value
Lilu       dev: @ (DBG) found pci device S0B 0x1b36 0x60400
Lilu       dev: @ (DBG) found pci bridge S0B
Lilu       dev: @ (DBG) pci bridge S0B is configured 0
Lilu       dev: @ (DBG) found S00 on pci bridge
Lilu     iokit: @ (DBG) getOSData vendor-id has 1B36 value
Lilu     iokit: @ (DBG) getOSData class-code has 60400 value
Lilu       dev: @ (DBG) found S08 on pci bridge
Lilu     iokit: @ (DBG) getOSData vendor-id has 15AD value
Lilu     iokit: @ (DBG) getOSData class-code has 20000 value
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has FF00 value
Lilu       dev: @ (DBG) found pci device S20 0x1af4 0xff00
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has 10000 value
Lilu       dev: @ (DBG) found pci device S28 0x1af4 0x10000
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has 10000 value
Lilu       dev: @ (DBG) found pci device S30 0x1af4 0x10000
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has 10000 value
Lilu       dev: @ (DBG) found pci device S50 0x1af4 0x10000
Lilu     iokit: @ (DBG) getOSData vendor-id has 1AF4 value
Lilu     iokit: @ (DBG) getOSData class-code has FF00 value
Lilu       dev: @ (DBG) found pci device SE0 0x1af4 0xff00
Lilu     iokit: @ (DBG) getOSData vendor-id has 8086 value
Lilu     iokit: @ (DBG) getOSData class-code has 60100 value
Lilu       dev: @ (DBG) found pci device SF8 0x8086 0x60100
Lilu     iokit: @ (DBG) getOSData vendor-id has 8086 value
Lilu     iokit: @ (DBG) getOSData class-code has 10601 value
Lilu       dev: @ (DBG) found pci device SFA 0x8086 0x10601
Lilu     iokit: @ (DBG) getOSData vendor-id has 8086 value
Lilu     iokit: @ (DBG) getOSData class-code has C0500 value
Lilu       dev: @ (DBG) found pci device SFB 0x8086 0xc0500
Lilu       dev: @ (DBG) found root device DRAC
Lilu       dev: @ (DBG) found root device LNKA
Lilu       dev: @ (DBG) found root device LNKB
Lilu       dev: @ (DBG) found root device LNKC
Lilu       dev: @ (DBG) found root device LNKD
Lilu       dev: @ (DBG) found root device LNKE
Lilu       dev: @ (DBG) found root device LNKF
Lilu       dev: @ (DBG) found root device LNKG
Lilu       dev: @ (DBG) found root device LNKH
Lilu       dev: @ (DBG) found root device GSIA
Lilu       dev: @ (DBG) found root device GSIB
Lilu       dev: @ (DBG) found root device GSIC
Lilu       dev: @ (DBG) found root device GSID
Lilu       dev: @ (DBG) found root device GSIE
Lilu       dev: @ (DBG) found root device GSIF
Lilu       dev: @ (DBG) found root device GSIG
Lilu       dev: @ (DBG) found root device GSIH
Lilu       dev: @ (DBG) found root device CPUS
Lilu       dev: @ (DBG) found root device AppleEFINVRAM
Lilu     iokit: @ (DBG) getOSData apple-layout-id was not found
Lilu     iokit: @ (DBG) getOSData AAPL,ig-platform-id was not found
Lilu      igfx: @ (DBG) discovered external GPU, using frame without connectors
Lilu       dev: @ (DBG) processing 1 external GPUs to disable - selective
Lilu     iokit: @ (DBG) getOSData disable-gpu-min was not found
Lilu     iokit: @ (DBG) getOSData disable-gpu-max was not found
Lilu       dev: @ (DBG) disable S00 GPU request from 0 to 23 on 23 kernel
Lilu       dev: @ (DBG) pci device S00 is not in service plane 0, polling
[ PCI configuration end, bridges 5, devices 13 ]
[AHCI][HBA][00000000] start::266:AppleAHCI::start
Lilu       dev: @ (DBG) pci device S00 is in service plane 1
Lilu     iokit: @ (DBG) read pci config discovered S00 space to be 0x00020000
Lilu     iokit: @ (DBG) compatible property starts with pci1002,1636 and is 46 bytes
Lilu     iokit: @ (DBG) fixing compatible to have IGPU
Lilu       dev: @ (DBG) pci device IGPU is in service plane 0
Lilu       dev: @ (DBG) pci device IGPU is in service plane 0
Lilu     iokit: @ (DBG) read pci config discovered IGPU space to be 0x00020000
Lilu       dev: @ (DBG) pci device IGPU is in service plane 0
Lilu     iokit: @ (DBG) read pci config discovered IGPU space to be 0x00020000
Lilu       dev: @ (DBG) pci device S00 is in service plane 0
Lilu     iokit: @ (DBG) read pci config discovered S00 space to be 0x00010000
Lilu     iokit: @ (DBG) compatible property starts with pci1af4,1100 and is 46 bytes
Lilu     iokit: @ (DBG) fixing compatible to have GFX0
Lilu       dev: @ (DBG) pci device GFX0 is in service plane 0
Lilu      mach: @ (DBG) found symbol __ZN15OSMetaClassBase12safeMetaCastEPKS_PK11OSMetaClass at 0xffffff8003c60e80 (non-aslr 0xffffff8003c60e80), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN11IOCatalogue10addDriversEP7OSArrayb at 0xffffff8003d06c40 (non-aslr 0xffffff8003d06c40), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF8003C60E80 to 0xFFFFFF8006F78880 diff 0x00000000033179FB argument 33179FB
Lilu   patcher: @ (DBG) using slotted jumping via 0xFFFFFF80034E53E8
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8F6A to 0xFFFFFF8003C60E86 diff 0xFFFFFFFFFCD77F17 argument FCD77F17
Lilu   patcher: @ (DBG) wrapped __ZN15OSMetaClassBase12safeMetaCastEPKS_PK11OSMetaClass
Lilu   patcher: @ (DBG) from 0xFFFFFF8003D06C40 to 0xFFFFFF8006F78A40 diff 0x0000000003271DFB argument 3271DFB
Lilu   patcher: @ (DBG) using slotted jumping via 0xFFFFFF80034E53F0
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8F7E to 0xFFFFFF8003D06C46 diff 0xFFFFFFFFFCE1DCC3 argument FCE1DCC3
Lilu   patcher: @ (DBG) wrapped __ZN11IOCatalogue10addDriversEP7OSArrayb
Lilu     iokit: @ (DBG) compatible property starts with pci1462,7c91 and is 46 bytes
Lilu     iokit: @ (DBG) fixing compatible to have HDEF
AppleALC       alc: @ error: no layout-id property found in configuration
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.driver.AppleGraphicsDevicePolicy at 1 index
Lilu      mach: @ (DBG) found symbol _kmod at 0xffffff80044e61a8 (non-aslr 0xffffff80044e61a8), type f, sect e, desc 0
Lilu   patcher: @ (DBG) _kmod address 0xffffff80044e61a8
Lilu      mach: @ (DBG) found symbol __ZN6OSKext6unloadEv at 0xffffff8003c6d990 (non-aslr 0xffffff8003c6d990), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN6OSKext23saveLoadedKextPanicListEv at 0xffffff8003c77660 (non-aslr 0xffffff8003c77660), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF8003C6D990 to 0xFFFFFF8006EE5010 diff 0x000000000327767B argument 327767B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8F92 to 0xFFFFFF8003C6D996 diff 0xFFFFFFFFFCD849FF argument FCD849FF
Lilu   patcher: @ (DBG) wrapped __ZN6OSKext6unloadEv
Lilu   patcher: @ (DBG) from 0xFFFFFF8003C77660 to 0xFFFFFF8006EE50C0 diff 0x000000000326DA5B argument 326DA5B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8FA5 to 0xFFFFFF8003C77665 diff 0xFFFFFFFFFCD8E6BB argument FCD8E6BB
Lilu   patcher: @ (DBG) wrapped __ZN6OSKext23saveLoadedKextPanicListEv
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.kext.AMDRadeonX6000Framebuffer at 2 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.driver.AppleGFXHDA at 3 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.kext.AMDRadeonX5000HWLibs at 4 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.kext.AMDRadeonX6000 at 5 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.kext.AMDRadeonX5000 at 6 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.driver.AppleHDA at 7 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.driver.AppleHDAController at 8 index
Lilu   patcher: @ (DBG) found an already loaded MachInfo for com.apple.driver.AppleGFXHDA at 3
Lilu   patcher: @ (DBG) loaded kinfo com.apple.driver.AppleGFXHDA at 3 index
Lilu      mach: @ (DBG) MachInfo asKernel 0 object constructed
Lilu   patcher: @ (DBG) loaded kinfo com.apple.iokit.IOHDAFamily at 9 index
Lilu      user: @ disabling user patcher on request!
Lilu   patcher: @ (DBG) processing already loaded kexts by iterating over all kmods
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005955000 and its name is com.apple.driver.AppleVmxnet3Ethernet (start func is 0xFFFFFF8005959DE6)
[AHCI][PRT][001F0200] InitializePort::689:Port 0
ACMTRM: _loadDisabledByExternalBoot: disabled by ExternalBoot: NO.
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N* Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _mapAndPublishTRM: set TRM_PolicyTimeout = 604800.
ACMTRM: _mapAndPublishTRM: set TRM_PolicyReason = Unrestricted(0).
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriodTimeout = 86400.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=4) while LOCKED(1), TRM: 604800/U(0) 4294967295/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMLockdownModeKernelService: init: called, .
ACMLockdownModeKernelService: init: returning, result = true.
AppleCredentialManager: initImpl: KE[1] INITED.
AppleCredentialManager: initImpl: returning, KE[1] -> true.
AppleCredentialManager: startImpl: called, KE[1].
ACMTRM: start: security.mac.acm.root_pivot_occurred sysctl registered.
ACMLockdownModeKernelService: start: called, .
ACMLockdownModeKernelService: start: returning, result = true.
AppleCredentialManager: startImpl: registering notifications.
AppleCredentialManager: startImpl: KE[1] STARTED.
AppleCredentialManager: startImpl: returning, KE[1] -> true.
AppleCredentialManager: start: started KE[1] (ready=YES) -> true.
AppleCyrus::start(IOResources) <1>

IOGetBootKeyStoreData: data at address 0 size 0

AppleKeyStore:331:0: starting (BUILT: Jul 29 2024 21:10:56) (normal variant 🌽 , 1655.140.2)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005008000 and its name is com.apple.driver.AppleXsanScheme (start func is 0xFFFFFF800500ABBE)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005FF2000 and its name is com.apple.filesystems.apfs (start func is 0xFFFFFF8005FF3917)
apfs_module_start:3232: load: com.apple.filesystems.apfs, v2236.141.1, apfs-2236.141.1, 2024/07/29
ktriage_register_subsystem_strings: set subsystem 7 strings
AppleKeyStore:485:0: _sep_enabled = 0
AppleKeyStoreTest::start(IOResources) <1>

[AppleLockdownMode - start] started
AppleSSE::start called
[AppleLockdownMode - LDMShouldEnforceParity] restoreOS check passed
AssertMacros: value (value: 0x0),  file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleSSE/AppleSSE/AppleSSE.cpp, line: 49
AppleSSE::start returning, result = 1
virtual bool CoreAnalyticsHub::start(IOService *)::139:CoreAnalyticsHub start
Registered CoreAnalyticsHub functions with xnu.virtual bool CoreAnalyticsHub::start(IOService *)::218:CoreAnalyticsHub start completed
DSMOS has arrived
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005C75000 and its name is com.apple.iokit.IOUSBFamily (start func is 0xFFFFFF8005CD06B8)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005DFF000 and its name is com.apple.driver.usb.AppleUSBHostPacketFilter (start func is 0xFFFFFF8005E01C46)
lockdown_mode: lockdown mode in nvram is off
Marking const DATA read-only

Copyright (c) 1982, 1986, 1989, 1991, 1993
	The Regents of the University of California. All rights reserved.

MAC Framework successfully initialized
using 16384 buffer headers and 10240 cluster IO buffer headers
 found RTC service

RTC: getGMTTimeOfDay 1729390056

ktriage_register_subsystem_strings: set subsystem 8 strings
mcache: 1 CPU(s), 64 bytes CPU cache line size
mbinit: done [128 MB total pool size, (85/42) split]
SK: netagent is enabled by default for this platform

dlil_init: Waiting for all the create dlil kernel threads to get scheduled at least once.
AppleKeyStore:1019:0: oy vey
AMFI: unable to obtain local signing public key from AKS: e00002bc
AMFI: developer mode is force enabled on this platform
AMFI: finished: 1 1
dlil_init: All the created dlil kernel threads have been scheduled at least once. Proceeding.
bsd_autoconf: calling kminit

ifnet_attach: All kernel threads created for interface lo0 have been scheduled at least once. Proceeding.
ifnet_attach: Waiting for all kernel threads created for interface gif0 to get scheduled at least once.
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8004AE4000 and its name is com.apple.AppleFSCompression.AppleFSCompressionTypeDataless (start func is 0xFFFFFF8004AE4A9E)
com.apple.AppleFSCompressionTypeDataless kmod start
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8004AE8000 and its name is com.apple.AppleFSCompression.AppleFSCompressionTypeZlib (start func is 0xFFFFFF8004AF4761)
com.apple.AppleFSCompressionTypeZlib kmod start
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8004E21000 and its name is com.apple.driver.AppleSyntheticGameController (start func is 0xFFFFFF8004E253BA)
ifnet_attach: All kernel threads created for interface gif0 have been scheduled at least once. Proceeding.
skip attaching fsw to lo0 using legacy TX modelifnet_attach: Waiting for all kernel threads created for interface stf0 to get scheduled at least once.
ifnet_attach: All kernel threads created for interface stf0 have been scheduled at least once. Proceeding.
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF800506E000 and its name is com.apple.BootCache (start func is 0xFFFFFF8005079809)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005275000 and its name is com.apple.filesystems.hfs.encodings.kext (start func is 0xFFFFFF8005276A7C)
[AHCI][PRT][001F0200] EnablePortOperation::3281:Enabling port 0
[AHCI][PRT][001F0200] setPowerState::2937:inNewPowerState: 2
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005211000 and its name is com.apple.filesystems.hfs.kext (start func is 0xFFFFFF80052117F0)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005ACC000 and its name is com.apple.iokit.IOSurface (start func is 0xFFFFFF8005AED961)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8006277000 and its name is com.apple.filesystems.lifs (start func is 0xFFFFFF8006291C77)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8004973000 and its name is com.apple.driver.AppleBSDKextStarter (start func is 0xFFFFFF8004973EE8)
com.apple.AppleFSCompressionTypeDataless load succeeded
com.apple.AppleFSCompressionTypeZlib load succeeded
Setting up notifier for CoreAnalyticsHub
calling mpo_policy_init for ASP
calling mpo_policy_initbsd for ASP
ASP: NVRAM pointer initialized
ASP: No recovery key set
Security policy loaded: Apple System Policy (ASP)
IOSurfaceRoot::installMemoryRegions()

IOSurface allowing global lookups (with warnings)

apfs_sysctl_register:1407: done registering sysctls.
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF80062A2000 and its name is com.apple.filesystems.tmpfs (start func is 0xFFFFFF80062AC64A)
IOKernelDebugger: registering debugger
rooting via boot-uuid from /chosen: 64686C3C-8A70-431F-B812-6846EAE9A739
Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><array ID="2"><string ID="3">IOBSD</string><string ID="4">boot-uuid-media</string></array></dict>
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8004AFE000 and its name is com.apple.driver.AppleFileSystemDriver (start func is 0xFFFFFF8004AFFD2C)
AppleFileSystemDriver: using apfs-preboot-uuid
cryptoAlloc:652: Using 64 buffers with size 16384, 512 buffers size 65536
swcrypto_threadpool_init:1531: Starting ThreadPool
swcrypto_threadpool_init:1553: 4 threads would be used for the ThreadPool
specread_work_queue_init:155: number of threads used for specread work queue 3
dev_init:303: disk0s2 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk0s2 device_handle block size 4096 block count 67057654 features 0 internal 
fletcher64_init:88: Selecting AVX2 implementation of fletcher64
nx_mount:1275: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
nx_mount:1617: disk0s2 checkpoint search: largest xid 239943, best xid 239942 @ 263
nx_mount:1619: disk0s2 reloading after unclean unmount, checkpoint xid 239942, superblock xid 239923
nx_mount:1644: disk0s2 stable checkpoint indices: desc 262 data 11857
nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk0s2 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
authenticate_efi_forwarded_roothash:3427: evaluating authenticity of root hash
IOGetARVRootHashData: data at address 124919808 size 229

IOGetARVRootHashData: memory descriptor 0xffffff9010667da0

populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 229
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 229
IOGetARVManifestData: data at address 124923904 size 3657

IOGetARVManifestData: memory descriptor 0xffffff9010668740

populate_value_from_memory_descriptor:13195:  populate_value_from_memory_descriptor boot_args arv blob size 3657
populate_value_from_memory_descriptor:13202: populate_value_from_memory_descriptor copied into arv blob size 3657
root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
AppleFileSystemDriver: publishing boot-uuid-media=disk3s5 (macos)
Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/S50@A/AppleVirtIOPCITransport/AppleVirtIOBlockStorageDevice/IOBlockStorageDriver/Apple Inc. VirtIO Block Media/IOGUIDPartitionScheme/Untitled 2@2/AppleAPFSContainerScheme/AppleAPFSMediBSD root: disk3s5, major 1, minor 12
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
bufattr_get_apfs:8739: Volume not mounted
disk3s5: device is not readable.
hfs_mountfs: buf_meta_bread failed with 13
hfs_mount: hfs_mountfs returned error=13 for device unknown-dev
hfs_mountroot failed: 13
apfs_vfsop_mountroot:2965: apfs: mountroot called!
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
dev_init:303: disk3 device accelerated crypto: 0 (compiled @ Jul 29 2024 21:03:52)
dev_init:306: disk3 device_handle block size 4096 block count 67057654 features 16 internal solidstate
nx_mount:1275: disk3 initializing cache w/hash_size 16384 and cache size 40960
nx_mount:1617: disk3 checkpoint search: largest xid 239943, best xid 239942 @ 263
nx_mount:1619: disk3 reloading after unclean unmount, checkpoint xid 239942, superblock xid 239923
nx_mount:1644: disk3 stable checkpoint indices: desc 262 data 11857
er_state_obj_get_for_recovery:8309: disk3s5 No ER state object for volume macos - rolling is not happening, nothing to recover.
apfs_vfsop_mount:2675: disk3 Promoter has been locked 
apfs_vfsop_mount:2744: disk3s5 Rooting from snapshot with xid 3421.
apfs_log_op_with_proc:3091: disk3s5 mounting volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
handle_snapshot_mount:1144: disk3s5 mounting snapshot w/snap_xid 3421 and sblock oid 0x10c0ec
nx_get_volume_group:669: disk3 volume groups tree is not setup yet
getVolumeGroupMountFrom:9357: disk3 nx_get_volume_group(64686C3C-8A70-431F-B812-6846EAE9A739) failed with error 2
spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
is_root_hash_authentication_required_osx:387: disk3s5 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: disk3s5 Root Volume, root hash authentication is required
authenticate_root_hash:637: disk3s5 successfully validated on-disk root hash
handle_snapshot_mount:1327: disk3s5 setting dev block size to 4096 from 512
handle_mount:817: disk3s5 vol-uuid: B0679A4F-0859-427D-8BD8-261FCF3901CE block size: 4096 block count: 67057654 (unencrypted; flags: 0x201; features: 21.0.12)
handle_mount:887: disk3s5 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
fs_setup_shadow_fs_root_tree:3425: disk3s5 Created the shadow_fs_root tree <ptr>
nx_volume_group_update:794: disk3s5 Set volume (role 0x1) to 522 xid d5d
apfs_log_op_with_proc:3091: disk3s5 mount-complete volume macos, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
BootCache: Root disk is an SSD, not caching
Serial keyboard started

VM Swap Subsystem is ON
load_init_program: attempting to load /sbin/launchd
shared_region: 0x775daddf9517f4ef [1(launchd)] check_np(0x7ff7b2630d10) vm_shared_region_start_address() failed
Darwin Ignition Sequence Version 1.0.0: Mon Jul 29 21:03:33 PDT 2024; root:libignition-56~36837/libignition_core/RELEASE_X86_64

libignition: 1: arguments           :

libignition: 1:   ignition level    : 0x5

libignition: 1:   force dylib root  : 0x0

libignition: 1:   halt after stage  : n/a

libignition: 1: configuration         :

libignition: 1:   program             : launchd

libignition: 1:   os environment      : n/a

libignition: 1:   rd                  : n/a

libignition: 1:   arp0                : n/a

libignition: 1:   rp                  : n/a

libignition: 1:   pivot src           : n/a

libignition: 1:   root ramdisk        : 0x0

libignition: 1:   restore             : 0x0

libignition: 1:   root device info    : 0x0

libignition: 1:   can haz debugger    : 0x0

libignition: 1:   rootfs mount flags  : 0x4480d001

libignition: 1:   ecid                : 0x0

libignition: 1:   volume group uuid   : 64686C3C-8A70-431F-B812-6846EAE9A739

libignition: 1:   hardware target     : x86legacyap

libignition: 1:   initproc            : 0x1

libignition: 1:   single user         : 0x0

libignition: 1:   userspace reboot    : 0x0

libignition: 1:   x86 translated      : 0x0

libignition: 1:   secure boot level   : 0x3

libignition: 1:   os version          : n/a

libignition: 1: parameters          :

libignition: 1:   version           : 0x1

libignition: 1:   argc              : 0x1

libignition: 1:   log fd            : 0xffffffffffffffff

libignition: 1:   platform          : 0x1

libignition: 1: boot spec           :

libignition: 1:   name              : local

libignition: 1:   stage count       : 0x8

libignition: 1:        hello: commence primary ignition

libignition: 1:        hello: hello from launchd.1

libignition: 1:      preboot: mounting preboot

libignition: 1:      preboot: preboot device: /dev/disk3s2

libignition: 1:      preboot: preboot mount point: /System/Volumes/Preboot

libignition: 1:      preboot: mounting preboot: dev = /dev/disk3s2, uid = 0, gid = 0

spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
spaceman_metazone_init:173: disk3 metazone for device 0 of size 1205462 blocks (encrypted: 0-602731 unencrypted: 602731-1205462)
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 15007744
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 15499264
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 7045120
spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 8912896
spaceman_scan_free_blocks:3878: disk3 scan took 0.000000 s (no trims)
spaceman_fxc_print_stats:473: disk3 dev 0 smfree 52365687/67057654 table 0/382 blocks 0 0:0:0 0.00% range 0:0 0.00% scans 0
spaceman_scan_free_blocks:3848: disk3 scan took 0.000000 s, trims took 0.000000 s
spaceman_scan_free_blocks:3852: disk3 0 blocks free in 0 extents, avg 0.00
er_state_obj_get_for_recovery:8309: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s2 mounting volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
handle_mount:817: disk3s2 vol-uuid: E91EC198-BD6C-4F85-9A2A-943A5940E52D block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] EnablePortOperation::3315:Port 0 - HandleComReset
handle_mount:830: disk3s2 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s2 volume with role 16 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s2 mount-complete volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
ioqueue_depth = 256,   ioscale = 8
libignition: 1: cryptex1 sniff: detecting cryptex1 directory

libignition: 1: create graft directories: creating graft directories

apfs_log_op_with_proc:3091: disk3s2 updating mounted volume Preboot, requested by: launchd (pid 1); parent: kernel_task (pid 0)
libignition: 1: create graft directories: Cryptexes directory exists

libignition: 1: create graft directories: incoming Cryptexes directory exists

libignition: 1: create graft directories: graft point exists: Cryptexes/OS

libignition: 1: downlevel cryptex not installed: 2

libignition: 1: create graft directories: graft point exists: Cryptexes/App

libignition: 1: create graft directories: graft point exists: Cryptexes/Incoming/OS

libignition: 1:        graft: grafting boot cryptexes

omap_cleanup:1544: disk3s5 started cleaning snapshots 239942-239942
libignition: 1:        graft: os: no root xattr present

libignition: 1:        graft: os: opening preboot subdirectory: cryptex1/current

libignition: 1:        graft: os: opened preboot subdirectory: cryptex1/current

libignition: 1:        graft: os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0

libignition: 1:        graft: os: opened object: name = os.dmg, type = os hyper dmg, slot = 1

libignition: 1:        graft: os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2

libignition: 1:        graft: os: opened object: name = os.dmg.trustcache, type = os hyper dmg trust cache, slot = 3

libignition: 1:        graft: os: object spec not present: 4

libignition: 1:        graft: os: selected im4m spec: image4 manifest

libignition: 1:        graft: os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m

root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 os.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal 
nx_mount:1275: os.dmg initializing cache w/hash_size 512 and cache size 2048
[AHCI][PRT][001F0200] WaitForLinkPresent::4023:Port 0 PxSSTS: 0x0
[AHCI][PRT][001F0200] HandleComReset::3832:linkPresent 0 - Port 0
[AHCI][PRT][001F0200] EnablePortOperation::3322:Port 0 - COMRESET did not proceed
[AHCI][PRT][001F0200] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0210] InitializePort::689:Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3281:Enabling port 1
[AHCI][PRT][001F0210] setPowerState::2937:inNewPowerState: 2
nx_mount:1617: os.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.dmg stable checkpoint indices: desc 8 data 16
er_state_obj_get_for_recovery:8309: os.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] EnablePortOperation::3315:Port 1 - HandleComReset
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: os.dmgs1 lut contains 9 extents, 3 of which contain metadata
is_root_hash_authentication_required_osx:387: os.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30093, jobj_id range 31894+11784
apfs_graft:743: disk3s2 successfully grafted ino 30093 on dir 1426, dev_name [os.dmg]
libignition: 1:        graft: os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg, graft point = /System/Volumes/Preboot/Cryptexes/OS, ignored error = 0

libignition: 1:        graft: querying cryptex dmg node info: os

libignition: 1: downlevel cryptex not installed: 2

libignition: 1:        graft: app: no root xattr present

libignition: 1:        graft: app: opening preboot subdirectory: cryptex1/current

libignition: 1:        graft: app: opened preboot subdirectory: cryptex1/current

libignition: 1:        graft: app: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0

libignition: 1:        graft: app: opened object: name = app.dmg, type = app hyper dmg, slot = 1

libignition: 1:        graft: app: opened object: name = app.dmg.root_hash, type = app hyper dmg seal, slot = 2

libignition: 1:        graft: app: opened object: name = app.dmg.trustcache, type = app hyper dmg trust cache, slot = 3

libignition: 1:        graft: app: object spec not present: 4

libignition: 1:        graft: app: selected im4m spec: image4 manifest

libignition: 1:        graft: app: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/App, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m

root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
graft_dev_init:420: disk3 app.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 5632 features 0 internal 
nx_mount:1275: app.dmg initializing cache w/hash_size 512 and cache size 2048
nx_mount:1617: app.dmg checkpoint search: largest xid 33, best xid 33 @ 7
nx_mount:1644: app.dmg stable checkpoint indices: desc 6 data 54
er_state_obj_get_for_recovery:8309: app.dmgs1 No ER state object for volume AppCryptex - rolling is not happening, nothing to recover.
graft_dev_blockmap_lut_switch_to_metadata_based_if_needed:1212: app.dmgs1 lut contains 1 extents, 1 of which contain metadata
is_root_hash_authentication_required_osx:387: app.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: app.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: app.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30097, jobj_id range 43678+4495
apfs_graft:743: disk3s2 successfully grafted ino 30097 on dir 1427, dev_name [app.dmg]
libignition: 1:        graft: app: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/app.dmg, graft point = /System/Volumes/Preboot/Cryptexes/App, ignored error = 0

libignition: 1:        graft: pre-reboot os: no root xattr present

libignition: 1:        graft: pre-reboot os: opening preboot subdirectory: cryptex1/current

libignition: 1:        graft: pre-reboot os: opened preboot subdirectory: cryptex1/current

libignition: 1:        graft: pre-reboot os: opened object: name = apticket.x86legacyap.im4m, type = image4 manifest, slot = 0

libignition: 1:        graft: pre-reboot os: opened object: name = os.clone.dmg, type = pre-reboot os hyper dmg, slot = 1

libignition: 1:        graft: pre-reboot os: opened object: name = os.dmg.root_hash, type = os hyper dmg seal, slot = 2

libignition: 1:        graft: pre-reboot os: object spec not present: 3

libignition: 1:        graft: pre-reboot os: object spec not present: 4

libignition: 1:        graft: pre-reboot os: selected im4m spec: image4 manifest

libignition: 1:        graft: pre-reboot os: grafting: method = syscall, dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, seal = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.dmg.root_hash, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, im4m = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/apticket.x86legacyap.im4m

root_hash_execution_cb:2982: img4_firmware_execute: successfully validated the payload and the manifest
apfs_graft:511: disk3s2 Grafting a clone, share blockmap lut with os.dmg
graft_dev_init:420: disk3 os.clone.dmg GRAFT (compiled @ Jul 29 2024 21:03:53)
graft_dev_init:423: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 452608 features 0 internal 
nx_mount:1275: os.clone.dmg initializing cache w/hash_size 512 and cache size 2048
[AHCI][PRT][001F0210] WaitForLinkPresent::4023:Port 1 PxSSTS: 0x0
[AHCI][PRT][001F0210] HandleComReset::3832:linkPresent 0 - Port 1
[AHCI][PRT][001F0210] EnablePortOperation::3322:Port 1 - COMRESET did not proceed
[AHCI][PRT][001F0210] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0220] InitializePort::689:Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3281:Enabling port 2
[AHCI][PRT][001F0220] setPowerState::2937:inNewPowerState: 2
nx_mount:1617: os.clone.dmg checkpoint search: largest xid 21, best xid 21 @ 9
nx_mount:1644: os.clone.dmg stable checkpoint indices: desc 8 data 16
er_state_obj_get_for_recovery:8309: os.clone.dmgs1 No ER state object for volume SunburstG23G93.x86_64SystemCryptex - rolling is not happening, nothing to recover.
is_root_hash_authentication_required_osx:387: os.clone.dmgs1 Release kext with internal build: 0, ARV disabled: 1, booting xid: 0
is_root_hash_authentication_required:555: os.clone.dmgs1 RSR Graft, root hash authentication is required
authenticate_root_hash:637: os.clone.dmgs1 successfully validated on-disk root hash
apfs_lookup_ge_jobj_id:4952: disk3s2 Found OBJID 0xeaa4 type 3
apfs_graft:667: disk3s2 Graft ino 30104, jobj_id range 48173+11784
apfs_graft:743: disk3s2 successfully grafted ino 30104 on dir 1429, dev_name [os.clone.dmg]
libignition: 1:        graft: pre-reboot os: grafted cryptex: dmg = /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/cryptex1/current/os.clone.dmg, graft point = /System/Volumes/Preboot/Cryptexes/Incoming/OS, ignored error = 0

libignition: 1:        graft: querying cryptex dmg node info: pre-reboot os

libignition: 1:        graft: evaluating os and pre-reboot os node info: clone id [os] = 0x72f5, clone id [pre-reboot os] = 0x72f5

libignition: 1: select os cryptex path: selecting os cryptex path

libignition: 1: select os cryptex path: dylib cache directory present; not overriding

libignition: 1: select os cryptex path: not forcing root fallback

libignition: 1:  dylib_cache: discovering shared library cache

libignition: 1:  dylib_cache: finding shared cache on cryptex: ignition level = 5, search root fd = 10, subpath = System/Library/dyld/

libignition: 1:  dylib_cache: opened shared cache directory: /System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld

libignition: 1:      goodbye: ignition sequence complete

shared_region: 0x775daddf9517f4ef [1(launchd)] check_np(0x7ff7b2630158) vm_shared_region_start_address() failed
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h' is adhoc signed.
ASP: AMFI pointer initialized
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.01' is adhoc signed.
omap_cleanup:1769: disk3s5 completed cleaning snapshot 239942, om_snap_count 1 om_most_recent_snap 239942
obj_cache_remove_reverted_fs_objects:1775: disk3s5 removing reverted fs objects for fs 1314: 3422 - 239942
[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] EnablePortOperation::3315:Port 2 - HandleComReset
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.02' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.03' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.04' is adhoc signed.
AMFI: '/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.05' is adhoc signed.
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
shared_region: 0x775daddf9517f4ef [1(launchd)]: vnode_lookup(/System/Library/dyld/) failed (error=2)
dyld: simulator status (/ rw: false; kernel: false, platform: false; pthread: false

[AHCI][PRT][001F0220] WaitForLinkPresent::4023:Port 2 PxSSTS: 0x0
[AHCI][PRT][001F0220] HandleComReset::3832:linkPresent 0 - Port 2
[AHCI][PRT][001F0220] EnablePortOperation::3322:Port 2 - COMRESET did not proceed
[AHCI][PRT][001F0220] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0230] InitializePort::689:Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3281:Enabling port 3
[AHCI][PRT][001F0230] setPowerState::2937:inNewPowerState: 2
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] EnablePortOperation::3315:Port 3 - HandleComReset
[AHCI][PRT][001F0230] WaitForLinkPresent::4023:Port 3 PxSSTS: 0x0
[AHCI][PRT][001F0230] HandleComReset::3832:linkPresent 0 - Port 3
[AHCI][PRT][001F0230] EnablePortOperation::3322:Port 3 - COMRESET did not proceed
[AHCI][PRT][001F0230] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0240] InitializePort::689:Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3281:Enabling port 4
[AHCI][PRT][001F0240] setPowerState::2937:inNewPowerState: 2
com.apple.xpc.launchd|2024-10-20 02:07:41.137448 <Notice>: hello, launchd UUID: 3FD2B8A3-0C1D-3561-B8E7-BD27484C6C8B

com.apple.xpc.launchd|2024-10-20 02:07:41.138101 <Notice>: Darwin Bootstrapper Version 7.0.0: Sat Jun 29 04:48:38 PDT 2024; root:libxpc_executables-2748.140.10~372/launchd/RELEASE_X86_64

com.apple.xpc.launchd|2024-10-20 02:07:41.138122 <Notice>: boot-args = keepsyms=1 -v -NRedDebug -liludbg -liluforce debug=0x12a msgbuf=1048576 serial=3 

com.apple.xpc.launchd|2024-10-20 02:07:41.140948 (system) <Notice>: entering ondemand mode

com.apple.xpc.launchd|2024-10-20 02:07:41.141090 (system) <Notice>: created

skip attaching fsw to lo0 using legacy TX modelcom.apple.xpc.launchd|2024-10-20 02:07:41.149364 (exclaves-boot) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:41.150733 (fsck) <Notice>: Doing boot task

[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] EnablePortOperation::3315:Port 4 - HandleComReset
[AHCI][PRT][001F0240] WaitForLinkPresent::4023:Port 4 PxSSTS: 0x0
[AHCI][PRT][001F0240] HandleComReset::3832:linkPresent 0 - Port 4
[AHCI][PRT][001F0240] EnablePortOperation::3322:Port 4 - COMRESET did not proceed
[AHCI][PRT][001F0240] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][PRT][001F0250] InitializePort::689:Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3281:Enabling port 5
[AHCI][PRT][001F0250] setPowerState::2937:inNewPowerState: 2
[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] EnablePortOperation::3315:Port 5 - HandleComReset
vnode_create_internal: alias vnode (vid = 269657212) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 269657212), is in state of change (end) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 311019856) is in state of change (start) v_flags = 0x820 v_numoutput = 0
vnode_create_internal: alias vnode (vid = 311019856), is in state of change (end) v_flags = 0x820 v_numoutput = 0
sendIONotification:2723: Sending notification about e0084006 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084006 for the parent of APFS snapshot 1.14
** Checking the container superblock.

   Checking the checkpoint with transaction ID 239943.

** Checking the object map.

** Checking volume /dev/rdisk3s5.

** Checking the APFS volume superblock.

   The volume macos was formatted by storagekitd (1677.141.3.7.2) and last modified by apfs_kext (2236.141.1).

[AHCI][PRT][001F0250] WaitForLinkPresent::4023:Port 5 PxSSTS: 0x0
[AHCI][PRT][001F0250] HandleComReset::3832:linkPresent 0 - Port 5
[AHCI][PRT][001F0250] EnablePortOperation::3322:Port 5 - COMRESET did not proceed
[AHCI][PRT][001F0250] StartPort::1215:EnablePortOperation returned: 0xE00002D6
[AHCI][HBA][001F0200] start::512:Successfully initialized AHCI controller
** QUICKCHECK ONLY; FILESYSTEM CLEAN

sendIONotification:2723: Sending notification about e0084007 for APFS snapshot 1.14
sendIONotification:2729: Sending additional notification about e0084007 for the parent of APFS snapshot 1.14
com.apple.xpc.launchd|2024-10-20 02:07:43.222892 (mount-phase-1) <Notice>: Doing boot task

mount_by_role:494: Mounting /dev/disk3s4 on /System/Volumes/VM

spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s4 No ER state object for volume VM - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s4 mounting volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s4 vol-uuid: AF37A756-F395-4F4C-B9D0-72232BFD70D3 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s4 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s4 Volume VM role 0x8 is not a System or Data volume
apfs_log_op_with_proc:3091: disk3s4 mount-complete volume VM, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
kern_direct_file(/System/Volumes/VM/kernelcore): vp size 1048576, alloc 1048576, mp free 214501949440, keep free 1048576

max io 0x3f800000 bytes

kern_open_file_for_direct_io(<ptr>, 0)
kern_open_file_for_direct_io took 2 ms

kern_open_file_for_direct_io took 2 ms
Opened file /System/Volumes/VM/kernelcore, size 1048576, extents 1, maxio 3f800000 ssd 1

Opened file /System/Volumes/VM/kernelcore, size 1048576, extents 1, maxio 3f800000 ssd 1
polled file major 1, minor 0, blocksize 4096, pollers 0

polled file major 1, minor 0, blocksize 4096, pollers 0
IOPolledFilePollersSetup(5) error 0xe00002bc

IOPolledFilePollersSetup(5) error 0xe00002bc
kern_close_file_for_direct_io(<ptr>)
vnode_close(0)

IOPolledFilePollersSetup for corefile failed with error: 0x0
mount_by_role:458: volume /dev/disk3s2 with role = 10 already mounted at /System/Volumes/Preboot in APFS container for root device /dev/disk3s1

mount_by_role:494: Mounting /dev/disk3s6 on /System/Volumes/Update

spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s6 No ER state object for volume Update - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s6 mounting volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
handle_mount:817: disk3s6 vol-uuid: 9D301B4A-F402-402C-8ECB-DE870D6D32CF block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.2)
handle_mount:830: disk3s6 setting dev block size to 4096 from 512
nx_volume_group_update:704: disk3s6 Volume Update role 0xc0 is not a System or Data volume
apfs_should_be_system_mount:673: disk3s6 volume with role 192 will be mounted until system shutdown
apfs_log_op_with_proc:3091: disk3s6 mount-complete volume Update, requested by: apfs_boot_util (pid 4); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
com.apple.xpc.launchd|2024-10-20 02:07:43.357004 (data-protection) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.479535 (data-protection) <Error>: posix_spawn(): 86: Bad CPU type in executable

com.apple.xpc.launchd|2024-10-20 02:07:43.479582 (detect-installed-roots) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.479602 <Notice>: No cookie from system volume

com.apple.xpc.launchd|2024-10-20 02:07:43.481457 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed

com.apple.xpc.launchd|2024-10-20 02:07:43.481505 <Notice>: No cookie: /System/Volumes/iSCPreboot/64686C3C-8A70-431F-B812-6846EAE9A739/.roots-installed

com.apple.xpc.launchd|2024-10-20 02:07:43.481522 (select-boot-mode) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.481546 <Error>: fsctl(APFSIOC_GET_DEV_BY_ROLE) error: 2

com.apple.xpc.launchd|2024-10-20 02:07:43.481578 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.eacs

com.apple.xpc.launchd|2024-10-20 02:07:43.481594 <Notice>: No cookie: /System/Volumes/Preboot/64686C3C-8A70-431F-B812-6846EAE9A739/var/db/.com.apple.templatemigration

com.apple.xpc.launchd|2024-10-20 02:07:43.481601 (commit-boot-mode) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.481608 <Notice>: boot-mode committed: (null)

com.apple.xpc.launchd|2024-10-20 02:07:43.481617 (auto-pivot-root) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.481626 (allow-non-platform-code) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.481632 <Notice>: allowing non-platform code now

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8666869024] [INFO] [Subsystem: launchd] [Event: exclaves-boot] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8669391455] [INFO] [Subsystem: launchd] [Event: fsck] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8672205241] [INFO] [Subsystem: launchd] [Event: mount-phase-1] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8674812561] [INFO] [Subsystem: launchd] [Event: data-protection] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8677228202] [ERROR] [Subsystem: launchd] [Event: data-protection] posix_spawn(): 86: Bad CPU type in executable
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8680064460] [INFO] [Subsystem: launchd] [Event: detect-installed-roots] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8685775789] [INFO] [Subsystem: launchd] [Event: select-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8691443797] [INFO] [Subsystem: launchd] [Event: commit-boot-mode] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8694975798] [INFO] [Subsystem: launchd] [Event: auto-pivot-root] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

[System Event] [8697438036] [INFO] [Subsystem: launchd] [Event: allow-non-platform-code] Doing boot task
launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

com.apple.xpc.launchd|2024-10-20 02:07:43.541622 <Notice>: Flushed 23 logs [limit: 20]

launchd.log: fopen(/private/var/log/com.apple.xpc.launchd/launchd.log): 2

com.apple.xpc.launchd|2024-10-20 02:07:43.543965 (restore-datapartition) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-20 02:07:43.545815 (restore-datapartition) <Notice>: optional boot task not present

com.apple.xpc.launchd|2024-10-20 02:07:43.547508 (mount-phase-2) <Notice>: Doing boot task

get_volume_from_volume_group:324: found volume /dev/disk3s1 with role = 40 in APFS container for root device /dev/disk3s1

mount_by_role:494: Mounting /dev/disk3s1 on /System/Volumes/Data

spec_open : si_devbsdunit initialized to (0), throttle_mask is (0x9), isssd is (1)
er_state_obj_get_for_recovery:8309: disk3s1 No ER state object for volume macos - Data - rolling is not happening, nothing to recover.
apfs_log_op_with_proc:3091: disk3s1 mounting volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
handle_mount:817: disk3s1 vol-uuid: 64686C3C-8A70-431F-B812-6846EAE9A739 block size: 4096 block count: 67057654 (unencrypted; flags: 0x1; features: 1.0.12)
handle_mount:830: disk3s1 setting dev block size to 4096 from 512
nx_volume_group_update:794: disk3s1 Set volume (role 0x40) to 402 xid 0
apfs_log_op_with_proc:3091: disk3s1 mount-complete volume macos - Data, requested by: apfs_boot_util (pid 7); parent: launchd (pid 1)
ioqueue_depth = 256,   ioscale = 8
setup_rosv_data:823: failed to stitch firmlinks for root device /dev/disk3s1, ignoring error (c002) ...

unmount_recursively:233: Could not unmount path /System/Volumes/BaseSystem (force: 0): 22 (Invalid argument).

unmount_basesystem:1055: No BaseSystem mounted.

compressor_store_stop_compaction = FALSE

com.apple.xpc.launchd|2024-10-19 19:07:44.526405 (enable-swap) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-19 19:07:44.834680 <Notice>: swap enabled

com.apple.xpc.launchd|2024-10-19 19:07:44.834760 (sandbox-enable-root-translation) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-19 19:07:44.834941 (init-with-data-volume) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-19 19:07:45.147976 (deferred_install) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-19 19:07:45.149792 (deferred_install) <Notice>: optional boot task not present

com.apple.xpc.launchd|2024-10-19 19:07:45.149858 (fips) <Notice>: Doing boot task

About to call the FIPS_POST function in the corecrypto.dylib

Tracing: disabled

FIPSPOST_USER [10554215521] fipspost_post:154: [FIPSPOST][Module-ID] Apple corecrypto Module v14.0 [Intel, User, Software, SL1]

FIPSPOST_USER [10557165181] fipspost_post:162: PASSED: (0 ms) - fipspost_post_hmac

FIPSPOST_USER [10560584360] fipspost_post:166: PASSED: (2 ms) - fipspost_post_integrity

FIPSPOST_USER [10561889253] fipspost_post:170: PASSED: (0 ms) - fipspost_post_indicator

FIPSPOST_USER [10563130155] fipspost_post:171: PASSED: (0 ms) - fipspost_post_aes_ecb

FIPSPOST_USER [10564392949] fipspost_post:172: PASSED: (0 ms) - fipspost_post_aes_cbc

FIPSPOST_USER [10577737915] fipspost_post:173: PASSED: (12 ms) - fipspost_post_rsa_sig

FIPSPOST_USER [10583167787] fipspost_post:174: PASSED: (4 ms) - fipspost_post_ecdsa

FIPSPOST_USER [10584603093] fipspost_post:175: PASSED: (0 ms) - fipspost_post_ecdh

FIPSPOST_USER [10585752935] fipspost_post:176: PASSED: (0 ms) - fipspost_post_aes_ccm

FIPSPOST_USER [10586941720] fipspost_post:177: PASSED: (0 ms) - fipspost_post_aes_cmac

FIPSPOST_USER [10588168326] fipspost_post:178: PASSED: (0 ms) - fipspost_post_hkdf

FIPSPOST_USER [10596448874] fipspost_post:179: PASSED: (7 ms) - fipspost_post_pbkdf

FIPSPOST_USER [10598052505] fipspost_post:180: PASSED: (0 ms) - fipspost_post_drbg_hmac

FIPSPOST_USER [10599347869] fipspost_post:182: PASSED: (0 ms) - fipspost_post_kdf_ctr

FIPSPOST_USER [10600635820] fipspost_post:183: PASSED: (0 ms) - fipspost_post_kdf_ctr_cmac

FIPSPOST_USER [10602071727] fipspost_post:184: PASSED: (0 ms) - fipspost_post_aes_gcm

FIPSPOST_USER [10603506503] fipspost_post:185: PASSED: (0 ms) - fipspost_post_aes_xts

FIPSPOST_USER [10604871337] fipspost_post:186: PASSED: (0 ms) - fipspost_post_tdes_ecb

FIPSPOST_USER [10606169637] fipspost_post:187: PASSED: (0 ms) - fipspost_post_drbg_ctr

FIPSPOST_USER [10614217289] fipspost_post:189: PASSED: (6 ms) - fipspost_post_ffdh

FIPSPOST_USER [10619092293] fipspost_post:190: PASSED: (3 ms) - fipspost_post_rsa_enc_dec

FIPSPOST_USER [10620376747] fipspost_post:191: PASSED: (0 ms) - fipspost_post_shake

FIPSPOST_USER [10621537319] fipspost_post:210: all tests PASSED (67 ms)

Returned from calling the FIPS_POST function in the corecrypto.dylib: result = true

com.apple.xpc.launchd|2024-10-19 19:07:45.464548 (keystore-init) <Notice>: Doing boot task

running early boot task

OD access token exists

AppleKeyStore:2619:10: Mapping volume without a valid persona.
AppleKeyStore:2697:10: mapped uuid 6247366C-7B06-5EF1-A00C-F983162807B1 to bag -5, persona none, compressed uuid: 187818572, flags: 1
AppleKeyStore:4532:10: cmd: 18, booted_from: 1, result: 0
AppleKeyStore:784:10: uuid[0000,0016): 6247366c7b065ef1a00cf983162807b1
AppleKeyStore:2078:10: result = 1
AppleKeyStore:680:10: vek_data cached
AppleKeyStore:2279:10: vek did not decrypt, result: -2, have_kek:0 (loaded locked volume bag)
AppleKeyStore:2300:10: cmd=18, result=0, have_kek=0, booted_from=1
loaded the OD access token as the system keychain

early boot task result: 0

com.apple.xpc.launchd|2024-10-19 19:07:45.901664 (cache-start) <Notice>: Doing boot task

com.apple.xpc.launchd|2024-10-19 19:07:45.923821 (dirs_cleaner) <Notice>: Doing boot task

get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument

get_tmp_path: (bad path: /System/Volumes/Data, NULL, ...) failed with errno=22: Invalid argument

[System Event] [11251564133] [INFO] [Subsystem: launchd] [Event: restore-datapartition] Doing boot task
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 1597974 size back to 403783 (from 475104)
Couldn't build index for com.apple.init_featureflags: Not eligible for acceleration
[System Event] [11554785095] [INFO] [Subsystem: launchd] [Event: restore-datapartition] optional boot task not present
[System Event] [11556544297] [INFO] [Subsystem: launchd] [Event: mount-phase-2] Doing boot task
[System Event] [11557877984] [INFO] [Subsystem: launchd] [Event: enable-swap] Doing boot task
[System Event] [11559189648] [INFO] [Subsystem: launchd] [Event: sandbox-enable-root-translation] Doing boot task
[System Event] [11560759286] [INFO] [Subsystem: launchd] [Event: init-with-data-volume] Doing boot task
[System Event] [11562222384] [INFO] [Subsystem: launchd] [Event: deferred_install] Doing boot task
[System Event] [11563581689] [INFO] [Subsystem: launchd] [Event: deferred_install] optional boot task not present
[System Event] [11565179178] [INFO] [Subsystem: launchd] [Event: fips] Doing boot task
[System Event] [11566377651] [INFO] [Subsystem: launchd] [Event: keystore-init] Doing boot task
[System Event] [11568549005] [INFO] [Subsystem: launchd] [Event: cache-start] Doing boot task
[System Event] [11570139813] [INFO] [Subsystem: launchd] [Event: dirs_cleaner] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:46.091808 <Notice>: launchd logging initialized. name: com.apple.xpc.launchd pid: 1

com.apple.xpc.launchd|2024-10-19 19:07:46.091820 (xpcroleaccountd) <Notice>: Doing boot task

[System Event] [11574449939] [INFO] [Subsystem: launchd] [Event: xpcroleaccountd] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:46.227299 (init_featureflags) <Notice>: Doing boot task

[System Event] [11619443478] [INFO] [Subsystem: launchd] [Event: init_featureflags] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:47.064373 (EndpointSecurity) <Notice>: Doing boot task

[System Event] [12225398470] [INFO] [Subsystem: launchd] [Event: EndpointSecurity] Doing boot task
endpointsecurityd: Starting early boot task

endpointsecurityd: Loaded 0 early boot clients from .early_boot.plist

endpointsecurityd: No need to downcall, there are no early boot clients

com.apple.xpc.launchd|2024-10-19 19:07:47.292844 (rc.server) <Notice>: Doing boot task

[System Event] [12453796425] [INFO] [Subsystem: launchd] [Event: rc.server] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:47.294274 (rc.server) <Notice>: optional boot task not present

[System Event] [12456845502] [INFO] [Subsystem: launchd] [Event: rc.server] optional boot task not present
com.apple.xpc.launchd|2024-10-19 19:07:47.294283 (tzinit) <Notice>: Doing boot task

[System Event] [12459575782] [INFO] [Subsystem: launchd] [Event: tzinit] Doing boot task
tzinit: Latest update incompatible with system, or not newer than current: 2024a.1.0 vs. 2024a.1.0: Undefined error: 0

com.apple.xpc.launchd|2024-10-19 19:07:47.417066 (dirhelper) <Notice>: Doing boot task

[System Event] [12577989532] [INFO] [Subsystem: launchd] [Event: dirhelper] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:48.400839 (rootless-init) <Notice>: Doing boot task

[System Event] [13562317499] [INFO] [Subsystem: launchd] [Event: rootless-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:48.592562 (finish-demo-restore) <Notice>: Doing boot task

[System Event] [13754185836] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:48.687247 (finish-demo-restore) <Notice>: optional boot task not present

[System Event] [13848674048] [INFO] [Subsystem: launchd] [Event: finish-demo-restore] optional boot task not present
com.apple.xpc.launchd|2024-10-19 19:07:48.755419 (systemstats) <Notice>: Doing boot task

[System Event] [13916691057] [INFO] [Subsystem: launchd] [Event: systemstats] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:48.949060 (prng_seedctl) <Notice>: Doing boot task

[System Event] [14110094958] [INFO] [Subsystem: launchd] [Event: prng_seedctl] Doing boot task
Couldn't build index for com.apple.prng_seedctl: Not eligible for acceleration
kern.prng.user_reseed_count: (-1) (2) No such file or directory

com.apple.xpc.launchd|2024-10-19 19:07:49.010687 (workload-properties-init) <Notice>: Doing boot task

[System Event] [14171728049] [INFO] [Subsystem: launchd] [Event: workload-properties-init] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:49.013846 (init-exclavekit) <Notice>: Doing boot task

[System Event] [14174811149] [INFO] [Subsystem: launchd] [Event: init-exclavekit] Doing boot task
com.apple.xpc.launchd|2024-10-19 19:07:49.129434 (boot) <Notice>: Early boot complete. Continuing system boot.

[System Event] [14290796234] [INFO] [Subsystem: launchd] [Event: boot] Early boot complete. Continuing system boot.
com.apple.xpc.launchd|2024-10-19 19:07:49.751908 (cache-tag) <Notice>: Doing boot task

[System Event] [15045143594] [INFO] [Subsystem: launchd] [Event: cache-tag] Doing boot task
Couldn't build index for com.apple.dynamic_pager: Not eligible for acceleration
Couldn't build index for com.apple.Installer-Progress: Not eligible for acceleration
Couldn't build index for com.apple.KernelEventAgent: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 19:07:51.546271 (system/com.apple.iomfb_bics_daemon [120]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_bics_daemon' Executable: '/usr/libexec/IOMFB_bics_daemon'

Couldn't build index for com.apple.uninstalld: Not eligible for acceleration
com.apple.xpc.launchd|2024-10-19 19:07:51.806592 (system/com.apple.iomfb_fdr_loader [115]) <Error>: Missing executable detected. Job: 'com.apple.iomfb_fdr_loader' Executable: '/usr/bin/IOMFB_FDR_Loader'

apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28119 size back to 5167179 (from 5167398)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 1598109 size back to 335384 (from 595752)
AppleCredentialManagerUserClient: start: SUID=-1.
AppleCredentialManagerUserClient: start: SUID=-1.
Couldn't build index for com.apple.digest-service: Not eligible for acceleration
Couldn't build index for com.apple.kextload: Not eligible for acceleration
AppleCredentialManagerUserClient: start: SUID=-1.
ACMTRM: _onDaemonStarted: registering TRM notifiers.
ACMTRM: _registerBioNotifier: Biometric driver not detected.
ACMTRM: _onDaemonStarted: starting TRM policy engine.
ACMTRM: _onDaemonStarted: entering startup thread (startupFlags=0x0).
AssertMacros: consoleUsersPropertyObject (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelSerACMTRM: _startupThreadCallHandler: _currentDeviceStateFromConsoleUsers() -> 0x0.
ACMTRM: _startPolicy: startingInBaseSystem=NO startingInNormalOS=YES pivotingToNormalOS=NO | startupFlags=0x0 | initial deviceLockState=LOCKED(1) keybagState=0x0 consoleState=0x0.
ACMTRM-S: _loadAll: called, isLockerAvailable=NO.
ACM: TRMAccCache_SetupEmpty: called, cacheSize=48 expiration=2592000.
ACMTRM-S: _loadAll: skipping *policy* <- daemon (gen=0 osLen=61).
ACMTRM-S: _loadAll: fetching *analytics* <- daemon (gen=0 osLen=400 dataLen=400 ver=1).
ACMTRM-A: onPolicyStarted: *analytics* successfully loaded.
ACMKernelService: initValueFromBootArgAliasesUInt32: analytics period = 86400 (default).
ACMTRM-A: setProperty: propCollectionPeriod=86400 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propPolicyModeTimeout=604800 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: setProperty: propGracePeriodBoundedTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM-A: incrementCounter: cntDaemonStarted=2.
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _logPolicy: LOADED: ver=0 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=0 gpRsn=0 cMs=NO upTm=0 disBy=0 rpTm=0.
ACMTRM: _logConfig: caller=_loadConfig ver=1 gSw=1 GP=2 Pro=2.
ACMKernelService: initValueFromBootArgAliasesUInt32: config profile = 4294967295 (default).
AssertMacros: dtDefaults (value: 0x0), ---, file: /AppleInternal/Library/BuildRoots/a4863622-4599-11ef-9474-e2437461156c/Library/Caches/com.apple.xbs/Sources/AppleCredentialManager/AppleCredentialManager/Services/ACMRestrictedModeKernelService.cpp:2406
ACMTRM: _getDefaultConfigProfile: config profile: 2 (boot-arg=2 edt-prop=2).
ACMTRM-A: setProperty: propGracePeriodTimeout=259200 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _mapAndPublishTRM: set TRM_GracePeriodTimeout = 259200.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=1) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=255/4294967295/4294967295 ---(255)/---(255) L=255 BS=255 R=255 RP=259200/255 UP=86400/255, CUR: U(0) -(255).
ACMTRM-A: setProperty: propPolicyDisabledByBits=8 (prev=0).
ACMTRM-S: setData: saving *analytics* (dataLen=400) in 3 seconds (fullSync: NO -> NO).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N* DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N SC=N AS=N* IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N BS=N MB=N* SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N* CP=N BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM: _disableBy: [TRM ENABLED=NO] (mask=8, DISABLED BY: Def=N Arg=N HW=Y DT=N Env=N Ext=N Dev=N | MC=N DW=N CB=N GS=N CP=N* BS=N MB=N SC=N AS=N IB=N DM=N).
ACMTRM-C: onPolicyStarted: *acc-cache* not found.
ACMTRM: _startPolicy: timePolicyViolated=NO (saveTime=0 bootCalTime=1729390090 (delta=1729390090) bootUpTime=35 nowUp=1729390090).
ACMTRM: _startPolicy: policyViolated=NO (timePolicyViolated=NO passcodeThreshold=NO corruptedStateDetected=NO unexpectedShutdownDetected=NO).
ACMTRM: _publish: _startPolicy LOCKED(1) reason=0 en=NO pro=2/2 pasThr=NO kb=0 con=0 poRsn=0 smExp=NO gpBlk=NO miss=NO seen=0 now=1729390090(0) | PMT=0/0 GPT=0/0/(0) RPT=0/0 UPT=0/0.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMiss = False.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissThreshold = 5.
ACMTRM: _mapAndPublishTRM: set TRM_CacheMissCount = 0.
ACMTRM: _mapAndPublishTRM: set TRM_ConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_EffectiveConfigProfile = AskForNewAccessories(2).
ACMTRM: _mapAndPublishTRM: set TRM_DeviceLocked = True.
ACMTRM: _mapAndPublishTRM: set TRM_BaseSystem = False.
ACMTRM: _mapAndPublishTRM: set TRM_Recovery = False.
ACMTRM: _mapAndPublishTRM: set TRM_RelaxedPeriod = False.
ACMTRM: _mapAndPublishTRM: set TRM_UnlockedPeriod = False.
ACMTRM: _mapAndPublishTRM: sending kIOMessageServicePropertyChange(#changes=10) while LOCKED(1), TRM: 604800/U(0) 259200/-(255) M=0/5/0 AFNA(2)/AFNA(2) L=1 BS=0 R=0 RP=259200/0 UP=86400/0, CUR: U(0) X(0).
ACMTRM: _logPolicy: SAVING: ver=12 smTm=0 poRsn=0 gpTm=0 smExp=NO gpBlk=NO suTm=0 svTm=1729390090 gpRsn=0 cMs=NO upTm=0 disBy=8 rpTm=0.
ACMTRM-S: setData: saving *policy* (dataLen=61) in 3 seconds (fullSync: NO -> NO).
ACMTRM-C: notifyClients_AccCache_Refreshed: sent kACMTRMMessage_AccCache_Refreshed(0) -> 0xe00002c7.
ACMTRM: _isEnrollmentNeeded: enrollmentReason: eraseInstall=YES upgradeFromPreTRMSystem=NO.
ACMTRM: _isEnrollmentNeeded: enrollmentNeeded=YES (loadedVersion=0).
ACMTRM: _startEnrollment: set TRM_EnrollmentPending = True.
Couldn't build index for com.apple.hfs: Not eligible for acceleration
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 17 ret: e00002c2, -1)
AppleKeyStore:7690:160: unexpected session uid: -1 requested by: PerfPowerServices (160)
AppleKeyStore:12195:160: operation failed (sel: 7 ret: e00002c2, -1)
Couldn't build index for com.apple.fsck_hfs: Not eligible for acceleration
Couldn't obtain preoslog region: result = -1, preoslog_pa = 0, preoslog_size = 0

Couldn't build index for com.apple.mount_hfs: Not eligible for acceleration
spec_open : si_devbsdunit initialized to (1), throttle_mask is (0x2), isssd is (1)
hfs: mounted macOS Base System on device disk1s1
ioqueue_depth = 256,   ioscale = 8
Failed to handle the new encryption key. Error 0xe00002d8ACMTRM-S: _saveAll: pushing *policy* -> daemon (gen=1 dataLen=61 ver=12).
ACMTRM-S: _saveAll: pushing *analytics* -> daemon (gen=1 dataLen=400 ver=1).
AppleKeyStore:7690:119: unexpected session uid: -1 requested by: powerd (119)
AppleKeyStore:12195:119: operation failed (sel: 7 ret: e00002c2, -1)
bufattr_get_apfs:8688: Only accept buf I/O, no raw disk access
disk3s5s1: device is not readable.
Couldn't build index for com.apple.socketfilterhelper: Not eligible for acceleration
ifnet_attach: Waiting for all kernel threads created for interface en0 to get scheduled at least once.
ifnet_attach: All kernel threads created for interface en0 have been scheduled at least once. Proceeding.
_dlil_get_flowswitch_buffer_size: en0 1504 1500
AppleKeyStore:7690:127: unexpected session uid: -1 requested by: keybagd (127)
AppleKeyStore:12195:127: operation failed (sel: 7 ret: e00002c2, -1)
Couldn't build index for com.apple.usbmuxd: Not eligible for acceleration
AppleKeyStore:7690:106: unexpected session uid: -1 requested by: UserEventAgent (106)
AppleKeyStore:12195:106: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:66:106: ioreg: 0, boot_arg: 0
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
AppleKeyStore:7690:267: unexpected session uid: -1 requested by: containermanagerd_system (267)
AppleKeyStore:12195:267: operation failed (sel: 17 ret: e00002c2, -1)
apfs_trim_to_prev_fsize:180: disk3s6 *** reset ino 18 size back to 2314835 (from 2315380)
Couldn't build index for com.apple.CodeSigningHelper: Not eligible for acceleration
Couldn't build index for com.apple.systemkeychain: Not eligible for acceleration
handle_snapshot_lookup:11560: disk3s5 failed to get snapshot metadata object, error = 2
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69264 size back to 3180672 (from 3193032)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69265 size back to 3 (from 32768)
KextLog: kernelmanagerd is not active
RTC: setGMTTimeOfDay 1729372116

apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_keybag_init:2694: failed to initialize volume keybag, err = 2
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 68776 size back to 1388472 (from 1392592)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 68777 size back to 3 (from 32768)
AppleKeyStore:12195:106: operation failed (sel: 35 ret: e00002f0, -1)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28283 size back to 1310192 (from 1318432)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28417 size back to 3 (from 32768)
ALUC:init(PID: 316), lifsd_entitlement 1 koio_entitlement 0
methodSetClientDomain entered
registerNotificationPort entered
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28712 size back to 3 (from 32768)
tx_flush:853: disk3 tx xid 239952 was closed for 1285792 us waiting to prepare to flush
tx_enter_internal:2403: disk3 waited 1287528 us to open tx xid 239953 (nx_tx_wait_closed)
tx_flush:1274: disk3 tx xid 239952 took 1121914 us to sync and write superblock
KextLog: kernelmanagerd is not active
KextLog: kernelmanagerd is not active
KextLog: Loading FileSet KC(s)
KextLog: Loading Pageable KC from file /System/Library/KernelCollections/SystemKernelExtensions.kc
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28438 size back to 556232 (from 560352)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28439 size back to 3 (from 32768)
KextLog: Collection UUID matches with loaded KCs.
KextLog: Loading Aux KC from file /Library/KernelCollections/AuxiliaryKernelExtensions.kc
KextLog: Collection UUID matches with loaded KCs.
NootedRed      NRed: @ (DBG) Matched com.apple.kext.AMDRadeonX5000, injecting.
NootedRed      NRed: @ (DBG) Matched com.apple.kext.AMDRadeonX5000HWServices, injecting.
NootedRed      NRed: @ (DBG) Matched com.apple.kext.AMDRadeonX6000, injecting.
NootedRed      NRed: @ (DBG) Matched com.apple.kext.AMDRadeonX6000Framebuffer, injecting.
NootedRed      NRed: @ (DBG) Matched com.apple.driver.AppleGFXHDA, injecting.
Matching service count = 16

Matching service count = 20

Matching service count = 20

deferred rematching count 0
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F989F1000 and its name is com.apple.driver.driverkit.serial (start func is 0xFFFFFF7F989F6E5F)
Driver com.apple.DriverKit-IOUserDockChannelSerial has crashed 0 time(s)
DK: IOUserDockChannelSerial-0x100000293 waiting for server com.apple.IOUserDockChannelSerial-100000293
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F9889C000 and its name is com.apple.driver.IOPlatformPluginFamily (start func is 0xFFFFFF7F9889F7E4)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F988C9000 and its name is com.apple.driver.X86PlatformPlugin (start func is 0xFFFFFF7F988D5A6C)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F988B9000 and its name is com.apple.driver.IOPlatformPluginLegacy (start func is 0xFFFFFF7F988C1375)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F988A3000 and its name is com.apple.driver.ACPI_SMC_PlatformPlugin (start func is 0xFFFFFF7F988AF590)
No Generation from SMC.

No Generation from SMC.
X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!

X86PlatformPlugin::getCPUCStates - C000 ACST and _CST evaluations failed!
X86PlatformPlugin::getCPUCStates - _CST did not return a package

X86PlatformPlugin::getCPUCStates - _CST did not return a package
X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!

X86PlatformPlugin::getCPUPStates - C000 APSS and _PSS evaluations failed!
X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray

X86PlatformPlugin::getCPUPStates - acpiPSArrayObj is not an valid OSArray
X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!

X86PlatformPlugin::publishACPIStates - Failed to get CPU P States!
X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1

X86PlatformPlugin::publishACPIStates - Failed to get max non-turbo PState. Set max non-turbo PState to default value 1
IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0

IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98839000 and its name is com.apple.iokit.IOGraphicsFamily (start func is 0xFFFFFF7F98862B0F)
IOG flags 0x3 (0x51)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97CD0000 and its name is com.apple.AppleGraphicsDeviceControl (start func is 0xFFFFFF7F97CD3CB8)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97AE7000 and its name is com.apple.kext.AMDSupport (start func is 0xFFFFFF7F97BA992A)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F8FECC000 and its name is com.apple.kext.AMDRadeonX6000Framebuffer (start func is 0xFFFFFF7F900B96F9)
Lilu   patcher: @ (DBG) caught the right kext com.apple.kext.AMDRadeonX6000Framebuffer at 0xFFFFFF7F8FECC000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.kext.AMDRadeonX6000Framebuffer at 0xFFFFFF7F8FECC000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000Framebuffer has segment is __TEXT from 0xFFFFFF7F8FECC000 to 0xFFFFFF7F90156000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000Framebuffer has segment is __DATA from 0xFFFFFF7F90156000 to 0xFFFFFF7F901E2000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000Framebuffer has segment is __DATA_CONST from 0xFFFFFF7F901E2000 to 0xFFFFFF7F901E4000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000Framebuffer has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.kext.AMDRadeonX6000Framebuffer in 0xFFFFFF7F8FECC5A0 - 0xFFFFFF7F8FECD59F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
NootedRed      NRed: @ (DBG) ATOMBIOS detected
NootedRed      NRed: @ (DBG) Got VBIOS from PCI Expansion ROM.
NootedRed      NRed: @ (DBG) Device ID = 0x1638
NootedRed      NRed: @ (DBG) Device PCI Revision = 0xC8
NootedRed      NRed: @ (DBG) Device Framebuffer Offset = 0x2010000000
NootedRed      NRed: @ (DBG) Device Revision = 0x0
NootedRed      NRed: @ (DBG) Device Is Raven = no
NootedRed      NRed: @ (DBG) Device Is Picasso = no
NootedRed      NRed: @ (DBG) Device Is Raven2 = no
NootedRed      NRed: @ (DBG) Device Is Renoir = yes
NootedRed      NRed: @ (DBG) Device Is Green Sardine = yes
NootedRed      NRed: @ (DBG) Device Enumerated Revision = 0xA1
NootedRed      NRed: @ (DBG) If any of the above values look incorrect, please report this to the developers.
Lilu      mach: @ (DBG) found symbol __ZNK34AMDRadeonX6000_AmdRadeonController18messageAcceleratorE25_eAMDAccelIOFBRequestTypePvS1_S1_ at 0xffffff7f8ff1b03c (non-aslr 0xffffff7f8ff1b03c), type f, sect 1, desc 0
Lilu   patcher: @ failed to solve __ZNK15AmdAtomVramInfo16populateVramInfoER16AtomFirmwareInfo, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FF25BB0 to 0xFFFFFF8006F6F6F0 diff 0x0000000077049B3B argument 77049B3B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8FB9 to 0xFFFFFF7F8FF25BB6 diff 0xFFFFFFFF8903CBF8 argument 8903CBF8
Lilu      mach: @ (DBG) found symbol __ZNK32AMDRadeonX6000_AmdAsicInfoNavi1027getEnumeratedRevisionNumberEv at 0xffffff7f8feed578 (non-aslr 0xffffff7f8feed578), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FEED578 to 0xFFFFFF8006F6FB40 diff 0x00000000770825C3 argument 770825C3
Lilu   patcher: @ (DBG) routed __ZNK32AMDRadeonX6000_AmdAsicInfoNavi1027getEnumeratedRevisionNumberEv
Lilu   patcher: @ failed to solve __ZNK22AmdAtomObjectInfo_V1_421getNumberOfConnectorsEv, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FF23CE0 to 0xFFFFFF8006F6FB90 diff 0x000000007704BEAB argument 7704BEAB
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8FCF to 0xFFFFFF7F8FF23CE8 diff 0xFFFFFFFF8903AD14 argument 8903AD14
Lilu      mach: @ (DBG) found symbol __ZN24AMDRadeonX6000_AmdLogger15initWithPciInfoEP11IOPCIDevice at 0xffffff7f8fece212 (non-aslr 0xffffff7f8fece212), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FECE212 to 0xFFFFFF8006F6FF40 diff 0x00000000770A1D29 argument 770A1D29
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8FE3 to 0xFFFFFF7F8FECE218 diff 0xFFFFFFFF88FE5230 argument 88FE5230
Lilu   patcher: @ (DBG) wrapped __ZN24AMDRadeonX6000_AmdLogger15initWithPciInfoEP11IOPCIDevice
Lilu      mach: @ (DBG) found symbol __ZN34AMDRadeonX6000_AmdRadeonController10doGPUPanicEPKcz at 0xffffff7f8ff1a58e (non-aslr 0xffffff7f8ff1a58e), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FF1A58E to 0xFFFFFF8006F70000 diff 0x0000000077055A6D argument 77055A6D
Lilu   patcher: @ (DBG) routed __ZN34AMDRadeonX6000_AmdRadeonController10doGPUPanicEPKcz
Lilu   patcher: @ failed to solve _dm_logger_write, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F90035B13 to 0xFFFFFF8006F70170 diff 0x0000000076F3A658 argument 76F3A658
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE8FF7 to 0xFFFFFF7F90035B19 diff 0xFFFFFFFF8914CB1D argument 8914CB1D
Lilu   patcher: @ failed to solve _IH_4_0_IVRing_InitHardware, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F900AE434 to 0xFFFFFF8006F703A0 diff 0x0000000076EC1F67 argument 76EC1F67
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE900B to 0xFFFFFF7F900AE43A diff 0xFFFFFFFF891C542A argument 891C542A
Lilu   patcher: @ failed to solve _IRQMGR_WriteRegister, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F900A2070 to 0xFFFFFF8006F70470 diff 0x0000000076ECE3FB argument 76ECE3FB
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE901F to 0xFFFFFF7F900A2076 diff 0xFFFFFFFF891B9052 argument 891B9052
Lilu      mach: @ (DBG) found symbol __ZN34AMDRadeonX6000_AmdRadeonController7powerUpEv at 0xffffff7f8ff194b8 (non-aslr 0xffffff7f8ff194b8), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FF194B8 to 0xFFFFFF8006F70560 diff 0x00000000770570A3 argument 770570A3
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9033 to 0xFFFFFF7F8FF194BE diff 0xFFFFFFFF89030486 argument 89030486
Lilu   patcher: @ (DBG) wrapped __ZN34AMDRadeonX6000_AmdRadeonController7powerUpEv
NootedRed  Patcher+: @ (DBG) Applied patches[0]
NootedRed  Patcher+: @ (DBG) Applied patches[1]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
NootedRed  Patcher+: @ (DBG) Applied patches[1]
NootedRed  Patcher+: @ (DBG) Applied patches[0]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
NootedRed  Patcher+: @ (DBG) Applied patches[1]
NootedRed   X6000FB: @ (DBG) Applied DDI Caps patches
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fecc000 of memory 3244032 size
NootedRed      NRed: @ (DBG) Processed AMDRadeonX6000Framebuffer
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F9888D000 and its name is com.apple.iokit.IONDRVSupport (start func is 0xFFFFFF7F988957DC)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005A99000 and its name is com.apple.iokit.IOSlowAdaptiveClockingFamily (start func is 0xFFFFFF8005A9B8ED)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F983FB000 and its name is com.apple.driver.AppleIntelSlowAdaptiveClocking (start func is 0xFFFFFF7F983FBEC2)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97CC5000 and its name is com.apple.AppleGPUWrangler (start func is 0xFFFFFF7F97CCB9C0)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97C35000 and its name is com.apple.driver.AppleFIVRDriver (start func is 0xFFFFFF7F97C36E22)
S08: match category IODefaultMatchCategory exists

Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F9890B000 and its name is com.apple.plugin.IOgPTPPlugin (start func is 0xFFFFFF7F98963353)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98DD7000 and its name is com.apple.vecLib.kext (start func is 0xFFFFFF7F98E97C50)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F9872F000 and its name is com.apple.iokit.IOAudioFamily (start func is 0xFFFFFF7F987469BA)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97C3F000 and its name is com.apple.driver.AppleGFXHDA (start func is 0xFFFFFF7F97C989DD)
Lilu   patcher: @ (DBG) caught the right kext com.apple.driver.AppleGFXHDA at 0xFFFFFF7F97C3F000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.driver.AppleGFXHDA at 0xFFFFFF7F97C3F000
Lilu      mach: @ (DBG) com.apple.driver.AppleGFXHDA has segment is __TEXT from 0xFFFFFF7F97C3F000 to 0xFFFFFF7F97C9E000
Lilu      mach: @ (DBG) com.apple.driver.AppleGFXHDA has segment is __DATA from 0xFFFFFF7F97C9E000 to 0xFFFFFF7F97CB6000
Lilu      mach: @ (DBG) com.apple.driver.AppleGFXHDA has segment is __DATA_CONST from 0xFFFFFF7F97CB6000 to 0xFFFFFF7F97CB8000
Lilu      mach: @ (DBG) com.apple.driver.AppleGFXHDA has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.driver.AppleGFXHDA in 0xFFFFFF7F97C3F640 - 0xFFFFFF7F97C4063F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97c3f000 of memory 495616 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97c3f000 of memory 495616 size
Lilu      mach: @ (DBG) found symbol __ZN34AppleGFXHDAFunctionGroupATI_Tahiti10gMetaClassE at 0xffffff7f97cb4e28 (non-aslr 0xffffff7f97cb4e28), type f, sect b, desc 0
Lilu      mach: @ (DBG) found symbol __ZN26AppleGFXHDAWidget_1002AAA010gMetaClassE at 0xffffff7f97cb4fe0 (non-aslr 0xffffff7f97cb4fe0), type f, sect b, desc 0
Lilu      mach: @ (DBG) found symbol __ZN31AppleGFXHDAFunctionGroupFactory27createAppleHDAFunctionGroupEP11DevIdStruct at 0xffffff7f97c8046c (non-aslr 0xffffff7f97c8046c), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F97C8046C to 0xFFFFFF8006F73010 diff 0x000000006F2F2B9F argument 6F2F2B9F
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9046 to 0xFFFFFF7F97C80471 diff 0xFFFFFFFF90D97426 argument 90D97426
Lilu   patcher: @ (DBG) wrapped __ZN31AppleGFXHDAFunctionGroupFactory27createAppleHDAFunctionGroupEP11DevIdStruct
Lilu      mach: @ (DBG) found symbol __ZN24AppleGFXHDAWidgetFactory20createAppleHDAWidgetEP11DevIdStruct at 0xffffff7f97c84616 (non-aslr 0xffffff7f97c84616), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F97C84616 to 0xFFFFFF8006F73110 diff 0x000000006F2EEAF5 argument 6F2EEAF5
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9059 to 0xFFFFFF7F97C8461B diff 0xFFFFFFFF90D9B5BD argument 90D9B5BD
Lilu   patcher: @ (DBG) wrapped __ZN24AppleGFXHDAWidgetFactory20createAppleHDAWidgetEP11DevIdStruct
NootedRed      NRed: @ (DBG) Processed AppleGFXHDA
Lilu      mach: @ (DBG) found symbol __ZN21AppleGFXHDAController5probeEP9IOServicePi at 0xffffff7f97c41a02 (non-aslr 0xffffff7f97c41a02), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F97C41A02 to 0xFFFFFF80071D8240 diff 0x000000006F596839 argument 6F596839
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE906D to 0xFFFFFF7F97C41A08 diff 0xFFFFFFFF90D58996 argument 90D58996
Lilu   patcher: @ (DBG) wrapped __ZN21AppleGFXHDAController5probeEP9IOServicePi
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97F2C000 and its name is com.apple.iokit.IOHDAFamily (start func is 0xFFFFFF7F97F2FABE)
Lilu   patcher: @ (DBG) caught the right kext com.apple.iokit.IOHDAFamily at 0xFFFFFF7F97F2C000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.iokit.IOHDAFamily at 0xFFFFFF7F97F2C000
Lilu      mach: @ (DBG) com.apple.iokit.IOHDAFamily has segment is __TEXT from 0xFFFFFF7F97F2C000 to 0xFFFFFF7F97F30000
Lilu      mach: @ (DBG) com.apple.iokit.IOHDAFamily has segment is __DATA from 0xFFFFFF7F97F30000 to 0xFFFFFF7F97F34000
Lilu      mach: @ (DBG) com.apple.iokit.IOHDAFamily has segment is __DATA_CONST from 0xFFFFFF7F97F34000 to 0xFFFFFF7F97F35000
Lilu      mach: @ (DBG) com.apple.iokit.IOHDAFamily has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.iokit.IOHDAFamily in 0xFFFFFF7F97F2C500 - 0xFFFFFF7F97F2D4FF
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97f2c000 of memory 36864 size
AppleALC       alc: @ failed to obtain device info for analog controller (1)
Lilu      mach: @ (DBG) found symbol __ZN16IOHDACodecDevice11executeVerbEtttPjb at 0xffffff7f97f2d1fa (non-aslr 0xffffff7f97f2d1fa), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F97F2D1FA to 0xFFFFFF80071D86A0 diff 0x000000006F2AB4A1 argument 6F2AB4A1
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9081 to 0xFFFFFF7F97F2D200 diff 0xFFFFFFFF9104417A argument 9104417A
Lilu   patcher: @ (DBG) wrapped __ZN16IOHDACodecDevice11executeVerbEtttPjb
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97E0E000 and its name is com.apple.driver.AppleHDAController (start func is 0xFFFFFF7F97E1F2B2)
Lilu   patcher: @ (DBG) caught the right kext com.apple.driver.AppleHDAController at 0xFFFFFF7F97E0E000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.driver.AppleHDAController at 0xFFFFFF7F97E0E000
Lilu      mach: @ (DBG) com.apple.driver.AppleHDAController has segment is __TEXT from 0xFFFFFF7F97E0E000 to 0xFFFFFF7F97E21000
Lilu      mach: @ (DBG) com.apple.driver.AppleHDAController has segment is __DATA from 0xFFFFFF7F97E21000 to 0xFFFFFF7F97E24000
Lilu      mach: @ (DBG) com.apple.driver.AppleHDAController has segment is __DATA_CONST from 0xFFFFFF7F97E24000 to 0xFFFFFF7F97E25000
Lilu      mach: @ (DBG) com.apple.driver.AppleHDAController has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.driver.AppleHDAController in 0xFFFFFF7F97E0E5A0 - 0xFFFFFF7F97E0F59F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97e0e000 of memory 94208 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97e0e000 of memory 94208 size
Lilu      mach: @ (DBG) found symbol __ZN18AppleHDAController5startEP9IOService at 0xffffff7f97e0f240 (non-aslr 0xffffff7f97e0f240), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F97E0F240 to 0xFFFFFF80071D86B0 diff 0x000000006F3C946B argument 6F3C946B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9094 to 0xFFFFFF7F97E0F245 diff 0xFFFFFFFF90F261AC argument 90F261AC
Lilu   patcher: @ (DBG) wrapped __ZN18AppleHDAController5startEP9IOService
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97BE1000 and its name is com.apple.driver.Apple16X50Serial (start func is 0xFFFFFF7F97BE7BB6)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97BEC000 and its name is com.apple.driver.Apple16X50ACPI (start func is 0xFFFFFF7F97BECE12)
GFX0: match category IODefaultMatchCategory exists

GTrace synchronization point 0
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97F35000 and its name is com.apple.driver.AppleHV (start func is 0xFFFFFF7F97F47596)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97F4D000 and its name is com.apple.driver.AppleIPAppender (start func is 0xFFFFFF7F97F518F9)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F988E8000 and its name is com.apple.iokit.IORSMFamily (start func is 0xFFFFFF7F988EBD4E)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98456000 and its name is com.apple.driver.AppleRSMChannel (start func is 0xFFFFFF7F9845AB84)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F984A5000 and its name is com.apple.driver.AppleSunrise (start func is 0xFFFFFF7F984A84FE)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98503000 and its name is com.apple.driver.AppleUIO (start func is 0xFFFFFF7F985056C4)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98635000 and its name is com.apple.iokit.IOAVBFamily (start func is 0xFFFFFF7F98641838)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97C1F000 and its name is com.apple.driver.AppleCallbackPowerSource (start func is 0xFFFFFF7F97C23FCF)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98882000 and its name is com.apple.driver.IOHIDPowerSource (start func is 0xFFFFFF7F9888824C)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F989C6000 and its name is com.apple.driver.usb.AppleUSBUserHCI (start func is 0xFFFFFF7F989D718D)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F989E8000 and its name is com.apple.iokit.IOUserEthernet (start func is 0xFFFFFF7F989EC5D8)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98D9C000 and its name is com.apple.kext.triggers (start func is 0xFFFFFF7F98D9EB84)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98C45000 and its name is com.apple.filesystems.nfs (start func is 0xFFFFFF7F98CE1938)
nfs_kext_start: successfully loaded NFS kext
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98CF0000 and its name is com.apple.driver.pmtelemetry (start func is 0xFFFFFF7F98CF6C46)
AppleIPAppender::probe(IOResources)

Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF8005A3F000 and its name is com.apple.iokit.IOSMBusFamily (start func is 0xFFFFFF8005A3FEF3)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98460000 and its name is com.apple.driver.AppleSMBusController (start func is 0xFFFFFF7F984656F5)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98402000 and its name is com.apple.driver.AppleMCCSControl (start func is 0xFFFFFF7F9840C5A0)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F98594000 and its name is com.apple.driver.AppleUpstreamUserClient (start func is 0xFFFFFF7F98596E58)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97CC1000 and its name is com.apple.AGDCPluginDisplayMetrics (start func is 0xFFFFFF7F97CC2F08)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F983E1000 and its name is com.apple.driver.AppleIntelMCEReporter (start func is 0xFFFFFF7F983E19D0)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F9846C000 and its name is com.apple.driver.AppleSMBusPCI (start func is 0xFFFFFF7F9846CDF4)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97CB8000 and its name is com.apple.driver.AppleGraphicsControl (start func is 0xFFFFFF7F97CB8F8A)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F97CD9000 and its name is com.apple.driver.AppleGraphicsDevicePolicy (start func is 0xFFFFFF7F97CE4A06)
Lilu   patcher: @ (DBG) caught the right kext com.apple.driver.AppleGraphicsDevicePolicy at 0xFFFFFF7F97CD9000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.driver.AppleGraphicsDevicePolicy at 0xFFFFFF7F97CD9000
AppleIPAppender::start(IOResources) <1>

Lilu      mach: @ (DBG) com.apple.driver.AppleGraphicsDevicePolicy has segment is __TEXT from 0xFFFFFF7F97CD9000 to 0xFFFFFF7F97CE6000
Lilu      mach: @ (DBG) com.apple.driver.AppleGraphicsDevicePolicy has segment is __DATA from 0xFFFFFF7F97CE6000 to 0xFFFFFF7F97CF1000
Lilu      mach: @ (DBG) com.apple.driver.AppleGraphicsDevicePolicy has segment is __DATA_CONST from 0xFFFFFF7F97CF1000 to 0xFFFFFF7F97CF2000
Lilu      mach: @ (DBG) com.apple.driver.AppleGraphicsDevicePolicy has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.driver.AppleGraphicsDevicePolicy in 0xFFFFFF7F97CD9550 - 0xFFFFFF7F97CDA54F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97cd9000 of memory 102400 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97cd9000 of memory 102400 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f97cd9000 of memory 102400 size
GTrace synchronization point 2
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F884B1000 and its name is com.apple.kext.AMDRadeonX5000HWServices (start func is 0xFFFFFF7F884B3C5E)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69295 size back to 3 (from 32768)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 69302 size back to 3 (from 32768)
AppleKeyStore:7690:171: unexpected session uid: -1 requested by: AirPlayXPCHelper (171)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002c2, -1)
AppleKeyStore:12195:171: operation failed (sel: 7 ret: e00002f0, -1)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F884B8000 and its name is com.apple.kext.AMDRadeonX5000HWLibs (start func is 0xFFFFFF7F88773656)
Lilu   patcher: @ (DBG) caught the right kext com.apple.kext.AMDRadeonX5000HWLibs at 0xFFFFFF7F884B8000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.kext.AMDRadeonX5000HWLibs at 0xFFFFFF7F884B8000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000HWLibs has segment is __TEXT from 0xFFFFFF7F884B8000 to 0xFFFFFF7F88A88000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000HWLibs has segment is __DATA from 0xFFFFFF7F88A88000 to 0xFFFFFF7F8A7F8000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000HWLibs has segment is __DATA_CONST from 0xFFFFFF7F8A7F8000 to 0xFFFFFF7F8A7F9000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000HWLibs has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.kext.AMDRadeonX5000HWLibs in 0xFFFFFF7F884B8550 - 0xFFFFFF7F884B954F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f884b8000 of memory 36966400 size
Lilu      mach: @ (DBG) found symbol __ZN35AMDRadeonX5000_AMDRadeonHWLibsX500025populateFirmwareDirectoryEv at 0xffffff7f884b9640 (non-aslr 0xffffff7f884b9640), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F884B9640 to 0xFFFFFF8006F6A0C0 diff 0x000000007EAB0A7B argument 7EAB0A7B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE90AA to 0xFFFFFF7F884B9648 diff 0xFFFFFFFF815D0599 argument 815D0599
Lilu   patcher: @ (DBG) wrapped __ZN35AMDRadeonX5000_AMDRadeonHWLibsX500025populateFirmwareDirectoryEv
Lilu   patcher: @ failed to solve _psp_bootloader_is_sos_running_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F88515513 to 0xFFFFFF8006F6A2F0 diff 0x000000007EA54DD8 argument 7EA54DD8
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE90C1 to 0xFFFFFF7F8851551C diff 0xFFFFFFFF8162C456 argument 8162C456
Lilu   patcher: @ failed to solve _psp_security_feature_caps_set_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F88515A80 to 0xFFFFFF8006F6A370 diff 0x000000007EA548EB argument 7EA548EB
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE90D9 to 0xFFFFFF7F88515A8A diff 0xFFFFFFFF8162C9AC argument 8162C9AC
Lilu   patcher: @ failed to solve _psp_bootloader_load_sysdrv_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F88515535 to 0xFFFFFF8006F6A6D0 diff 0x000000007EA55196 argument 7EA55196
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE90ED to 0xFFFFFF7F8851553B diff 0xFFFFFFFF8162C449 argument 8162C449
Lilu   patcher: @ failed to solve _psp_bootloader_set_ecc_mode_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F88515879 to 0xFFFFFF8006F6A6D0 diff 0x000000007EA54E52 argument 7EA54E52
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9101 to 0xFFFFFF7F8851587F diff 0xFFFFFFFF8162C779 argument 8162C779
Lilu   patcher: @ failed to solve _psp_bootloader_load_sos_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8851567C to 0xFFFFFF8006F6A760 diff 0x000000007EA550DF argument 7EA550DF
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9115 to 0xFFFFFF7F88515682 diff 0xFFFFFFFF8162C568 argument 8162C568
Lilu   patcher: @ failed to solve _psp_reset_3_1, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8851599C to 0xFFFFFF8006F6A880 diff 0x000000007EA54EDF argument 7EA54EDF
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9128 to 0xFFFFFF7F885159A1 diff 0xFFFFFFFF8162C874 argument 8162C874
Lilu   patcher: @ failed to solve _psp_cmd_km_submit, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8850C102 to 0xFFFFFF8006F6AA20 diff 0x000000007EA5E919 argument 7EA5E919
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE913C to 0xFFFFFF7F8850C108 diff 0xFFFFFFFF81622FC7 argument 81622FC7
Lilu   patcher: @ failed to solve _smu_9_0_1_create_function_pointer_list, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8852E13B to 0xFFFFFF8006F6B370 diff 0x000000007EA3D230 argument 7EA3D230
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9155 to 0xFFFFFF7F8852E146 diff 0xFFFFFFFF81644FEC argument 81644FEC
Lilu   patcher: @ failed to solve __ZN14AmdTtlServices27cosReadConfigurationSettingEPvP36cos_read_configuration_setting_inputP37cos_read_configuration_setting_output, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8856D6A0 to 0xFFFFFF8006F6B530 diff 0x000000007E9FDE8B argument 7E9FDE8B
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9169 to 0xFFFFFF7F8856D6A6 diff 0xFFFFFFFF81684538 argument 81684538
NootedRed    HWLibs: @ (DBG) Applied DDI Caps patches
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f884b8000 of memory 36966400 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
NootedRed  Patcher+: @ (DBG) Applied patches[1]
NootedRed  Patcher+: @ (DBG) Applied patches[2]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f884b8000 of memory 36966400 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
NootedRed  Patcher+: @ (DBG) Applied patches[1]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f884b8000 of memory 36966400 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
NootedRed  Patcher+: @ (DBG) Applied patches[1]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f884b8000 of memory 36966400 size
NootedRed      NRed: @ (DBG) Processed AMDRadeonX5000HWLibs
NootedRed    HWLibs: @ (DBG) VCN firmware filename is ativvaxy_nv.dat
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F986A9000 and its name is com.apple.iokit.IOAcceleratorFamily2 (start func is 0xFFFFFF7F98701CF6)
apfs_trim_to_prev_fsize:180: disk3s1 *** reset ino 28566 size back to 3 (from 32768)
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F8FD38000 and its name is com.apple.kext.AMDRadeonX6000 (start func is 0xFFFFFF7F8FDDA60C)
Lilu   patcher: @ (DBG) caught the right kext com.apple.kext.AMDRadeonX6000 at 0xFFFFFF7F8FD38000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.kext.AMDRadeonX6000 at 0xFFFFFF7F8FD38000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000 has segment is __TEXT from 0xFFFFFF7F8FD38000 to 0xFFFFFF7F8FE90000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000 has segment is __DATA from 0xFFFFFF7F8FE90000 to 0xFFFFFF7F8FEC7000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000 has segment is __DATA_CONST from 0xFFFFFF7F8FEC7000 to 0xFFFFFF7F8FECC000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX6000 has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.kext.AMDRadeonX6000 in 0xFFFFFF7F8FD38690 - 0xFFFFFF7F8FD3968F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
Lilu      mach: @ (DBG) found symbol __ZN31AMDRadeonX6000_AMDGFX10Hardware20allocateAMDHWDisplayEv at 0xffffff7f8fdac60a (non-aslr 0xffffff7f8fdac60a), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN35AMDRadeonX6000_AMDAccelVideoContext10gMetaClassE at 0xffffff7f8fec56b8 (non-aslr 0xffffff7f8fec56b8), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN37AMDRadeonX6000_AMDAccelDisplayMachine10gMetaClassE at 0xffffff7f8fec5500 (non-aslr 0xffffff7f8fec5500), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN34AMDRadeonX6000_AMDAccelDisplayPipe10gMetaClassE at 0xffffff7f8fec5528 (non-aslr 0xffffff7f8fec5528), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX6000_AMDAccelChannel10gMetaClassE at 0xffffff7f8fec54b0 (non-aslr 0xffffff7f8fec54b0), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN28AMDRadeonX6000_IAMDHWChannel10gMetaClassE at 0xffffff7f8fec5e88 (non-aslr 0xffffff7f8fec5e88), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN27AMDRadeonX6000_AMDHWDisplay14fillUBMSurfaceEjP17_FRAMEBUFFER_INFOP13_UBM_SURFINFO at 0xffffff7f8fd86ef8 (non-aslr 0xffffff7f8fd86ef8), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN27AMDRadeonX6000_AMDHWDisplay16configureDisplayEjjP17_FRAMEBUFFER_INFOP16IOAccelResource2 at 0xffffff7f8fd86c34 (non-aslr 0xffffff7f8fd86c34), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN27AMDRadeonX6000_AMDHWDisplay14getDisplayInfoEjbbPvP17_FRAMEBUFFER_INFO at 0xffffff7f8fd86054 (non-aslr 0xffffff7f8fd86054), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN37AMDRadeonX6000_AMDGraphicsAccelerator5startEP9IOService at 0xffffff7f8fd3957e (non-aslr 0xffffff7f8fd3957e), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8FD3957E to 0xFFFFFF8006F75430 diff 0x000000007723BEAD argument 7723BEAD
Lilu   patcher: @ (DBG) routed __ZN37AMDRadeonX6000_AMDGraphicsAccelerator5startEP9IOService
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
Lilu   patcher: @ lookup patching applied only 1 patches out of 3
NootedRed  Patcher+: @ (DBG) Failed to apply patches[1]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f8fd38000 of memory 1654784 size
NootedRed      NRed: @ (DBG) Processed AMDRadeonX6000
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F88253000 and its name is com.apple.kext.AMDRadeonX5000 (start func is 0xFFFFFF7F882DA795)
Lilu   patcher: @ (DBG) caught the right kext com.apple.kext.AMDRadeonX5000 at 0xFFFFFF7F88253000, invoking handler
Lilu      mach: @ (DBG) got nouveau mach-o for com.apple.kext.AMDRadeonX5000 at 0xFFFFFF7F88253000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000 has segment is __TEXT from 0xFFFFFF7F88253000 to 0xFFFFFF7F88478000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000 has segment is __DATA from 0xFFFFFF7F88478000 to 0xFFFFFF7F884AC000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000 has segment is __DATA_CONST from 0xFFFFFF7F884AC000 to 0xFFFFFF7F884B1000
Lilu      mach: @ (DBG) com.apple.kext.AMDRadeonX5000 has segment is __LINKEDIT from 0xFFFFFF7F98EB5000 to 0xFFFFFF7F9966878D
Lilu      mach: @ (DBG) activating slots for com.apple.kext.AMDRadeonX5000 in 0xFFFFFF7F88253690 - 0xFFFFFF7F8825468F
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f88253000 of memory 2482176 size
Lilu      mach: @ (DBG) found symbol __ZN31AMDRadeonX5000_AMDGFX9PM4EngineC1Ev at 0xffffff7f882bce60 (non-aslr 0xffffff7f882bce60), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN32AMDRadeonX5000_AMDGFX9SDMAEngineC1Ev at 0xffffff7f882c096c (non-aslr 0xffffff7f882c096c), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN35AMDRadeonX5000_AMDAccelVideoContext10gMetaClassE at 0xffffff7f884a99e0 (non-aslr 0xffffff7f884a99e0), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN37AMDRadeonX5000_AMDAccelDisplayMachine10gMetaClassE at 0xffffff7f884a9828 (non-aslr 0xffffff7f884a9828), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN34AMDRadeonX5000_AMDAccelDisplayPipe10gMetaClassE at 0xffffff7f884a9850 (non-aslr 0xffffff7f884a9850), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDAccelChannel10gMetaClassE at 0xffffff7f884a97d8 (non-aslr 0xffffff7f884a97d8), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN28AMDRadeonX5000_IAMDHWChannel10gMetaClassE at 0xffffff7f884aa188 (non-aslr 0xffffff7f884aa188), type f, sect c, desc 0
Lilu      mach: @ (DBG) found symbol __ZN26AMDRadeonX5000_AMDHardware14startHWEnginesEv at 0xffffff7f882c7412 (non-aslr 0xffffff7f882c7412), type f, sect 1, desc 0
Lilu      mach: @ (DBG) found symbol __ZN32AMDRadeonX5000_AMDVega10Hardware17allocateHWEnginesEv at 0xffffff7f882c3ac8 (non-aslr 0xffffff7f882c3ac8), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882C3AC8 to 0xFFFFFF8006F7DAB0 diff 0x000000007ECB9FE3 argument 7ECB9FE3
Lilu   patcher: @ (DBG) routed __ZN32AMDRadeonX5000_AMDVega10Hardware17allocateHWEnginesEv
Lilu      mach: @ (DBG) found symbol __ZN32AMDRadeonX5000_AMDVega10Hardware32setupAndInitializeHWCapabilitiesEv at 0xffffff7f882c3a88 (non-aslr 0xffffff7f882c3a88), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882C3A88 to 0xFFFFFF8006F7DB80 diff 0x000000007ECBA0F3 argument 7ECBA0F3
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE917C to 0xFFFFFF7F882C3A8D diff 0xFFFFFFFF813DA90C argument 813DA90C
Lilu   patcher: @ (DBG) wrapped __ZN32AMDRadeonX5000_AMDVega10Hardware32setupAndInitializeHWCapabilitiesEv
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDGFX9Hardware32setupAndInitializeHWCapabilitiesEv at 0xffffff7f882b70fc (non-aslr 0xffffff7f882b70fc), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882B70FC to 0xFFFFFF8006F7DC90 diff 0x000000007ECC6B8F argument 7ECC6B8F
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE9190 to 0xFFFFFF7F882B7102 diff 0xFFFFFFFF813CDF6D argument 813CDF6D
Lilu   patcher: @ (DBG) wrapped __ZN30AMDRadeonX5000_AMDGFX9Hardware32setupAndInitializeHWCapabilitiesEv
Lilu      mach: @ (DBG) found symbol __ZN26AMDRadeonX5000_AMDHardware12getHWChannelE20_eAMD_HW_ENGINE_TYPE18_eAMD_HW_RING_TYPE at 0xffffff7f882c7d8e (non-aslr 0xffffff7f882c7d8e), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882C7D8E to 0xFFFFFF8006F7DE60 diff 0x000000007ECB60CD argument 7ECB60CD
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE91A4 to 0xFFFFFF7F882C7D94 diff 0xFFFFFFFF813DEBEB argument 813DEBEB
Lilu   patcher: @ (DBG) wrapped __ZN26AMDRadeonX5000_AMDHardware12getHWChannelE20_eAMD_HW_ENGINE_TYPE18_eAMD_HW_RING_TYPE
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDGFX9Hardware20initializeFamilyTypeEv at 0xffffff7f882b73a4 (non-aslr 0xffffff7f882b73a4), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882B73A4 to 0xFFFFFF8006F7DF10 diff 0x000000007ECC6B67 argument 7ECC6B67
Lilu   patcher: @ (DBG) routed __ZN30AMDRadeonX5000_AMDGFX9Hardware20initializeFamilyTypeEv
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDGFX9Hardware20allocateAMDHWDisplayEv at 0xffffff7f882b6fe6 (non-aslr 0xffffff7f882b6fe6), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882B6FE6 to 0xFFFFFF8006F7DF70 diff 0x000000007ECC6F85 argument 7ECC6F85
Lilu   patcher: @ (DBG) routed __ZN30AMDRadeonX5000_AMDGFX9Hardware20allocateAMDHWDisplayEv
Lilu      mach: @ (DBG) found symbol __ZN26AMDRadeonX5000_AMDHWMemory17adjustVRAMAddressEy at 0xffffff7f882a8154 (non-aslr 0xffffff7f882a8154), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882A8154 to 0xFFFFFF8006F7DFE0 diff 0x000000007ECD5E87 argument 7ECD5E87
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE91B9 to 0xFFFFFF7F882A815B diff 0xFFFFFFFF813BEF9D argument 813BEF9D
Lilu   patcher: @ (DBG) wrapped __ZN26AMDRadeonX5000_AMDHWMemory17adjustVRAMAddressEy
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDGFX9Hardware25allocateAMDHWAlignManagerEv at 0xffffff7f882b6f9a (non-aslr 0xffffff7f882b6f9a), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882B6F9A to 0xFFFFFF8006F7E0A0 diff 0x000000007ECC7101 argument 7ECC7101
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE91CC to 0xFFFFFF7F882B6F9F diff 0xFFFFFFFF813CDDCE argument 813CDDCE
Lilu   patcher: @ (DBG) wrapped __ZN30AMDRadeonX5000_AMDGFX9Hardware25allocateAMDHWAlignManagerEv
Lilu      mach: @ (DBG) found symbol __ZN43AMDRadeonX5000_AMDVega10GraphicsAccelerator13getDeviceTypeEP11IOPCIDevice at 0xffffff7f8828ed16 (non-aslr 0xffffff7f8828ed16), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8828ED16 to 0xFFFFFF8006F7E1A0 diff 0x000000007ECEF485 argument 7ECEF485
Lilu   patcher: @ (DBG) routed __ZN43AMDRadeonX5000_AMDVega10GraphicsAccelerator13getDeviceTypeEP11IOPCIDevice
Lilu      mach: @ (DBG) found symbol __ZN30AMDRadeonX5000_AMDGFX9Hardware20writeASICHangLogInfoEPPv at 0xffffff7f882b82ce (non-aslr 0xffffff7f882b82ce), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F882B82CE to 0xFFFFFF8006F7E200 diff 0x000000007ECC5F2D argument 7ECC5F2D
Lilu   patcher: @ (DBG) routed __ZN30AMDRadeonX5000_AMDGFX9Hardware20writeASICHangLogInfoEPPv
Lilu   patcher: @ failed to solve __ZN4Addr2V27Gfx9Lib20HwlConvertChipFamilyEjj, err 2
Lilu   patcher: @ (DBG) from 0xFFFFFF7F88331540 to 0xFFFFFF8006F7E210 diff 0x000000007EC4CCCB argument 7EC4CCCB
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE91E0 to 0xFFFFFF7F88331546 diff 0xFFFFFFFF81448361 argument 81448361
Lilu      mach: @ (DBG) found symbol __ZN37AMDRadeonX5000_AMDGraphicsAccelerator23obtainAccelChannelGroupE11SS_PRIORITYP27AMDRadeonX5000_AMDAccelTask at 0xffffff7f8825924e (non-aslr 0xffffff7f8825924e), type f, sect 1, desc 0
Lilu   patcher: @ (DBG) from 0xFFFFFF7F8825924E to 0xFFFFFF8006F7E3E0 diff 0x000000007ED2518D argument 7ED2518D
Lilu   patcher: @ (DBG) from 0xFFFFFF8006EE91F4 to 0xFFFFFF7F88259254 diff 0xFFFFFFFF8137005B argument 8137005B
Lilu   patcher: @ (DBG) wrapped __ZN37AMDRadeonX5000_AMDGraphicsAccelerator23obtainAccelChannelGroupE11SS_PRIORITYP27AMDRadeonX5000_AMDAccelTask
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f88253000 of memory 2482176 size
NootedRed  Patcher+: @ (DBG) Applied patches[0]
Lilu      mach: @ (DBG) getRunningPosition 0xffffff7f88253000 of memory 2482176 size
NootedRed  Patcher+: @ (DBG) Applied patches[1]
NootedRed     X5000: @ (DBG) Applied SDMA1 patches
NootedRed      NRed: @ (DBG) Processed AMDRadeonX5000
ATOM: static AmdAtomPspDirectory *AmdAtomPspDirectory::createPspDirectory(AmdAtomFwHelper *, uint32_t): ASSERT(0 != tableOffset)

ATOM: static AmdAtomVramInfo *AmdAtomVramInfo::createVramInfo(AmdAtomFwHelper *, uint32_t): ASSERT(0 != tableOffset)

NootedRed   X6000FB: @ (DBG) Fetching VRAM info from iGPU System Info
ATOM: virtual IOReturn AmdAtomFwServices::getPspFirmwareInfo(AtomPspFirmwareInfo &) const: ASSERT(nullptr != m_pspDirectory)

[2:0:0][GPUCAP] refresh() --- Family: 142, Device: 0x1638, revNo: 0, pciRevNo: c8, emuRevNo: 161.

[2:0:0][GPUCAP] refresh() --- Mem Size: FB: 256 MB, Aper: 256 MB, Reg Aper: 512 KB.

[2:0:0][GPUCAP] refresh() --- Mem Config: Width: 128, Type: DDR4.

com_apple_filesystems_nfs: successfully loaded NFS module
Lilu   patcher: @ (DBG) invoked at kext loading
Lilu   patcher: @ (DBG) newly loaded kext is 0xFFFFFF7F841BD000 and its name is com.apple.kext.AMDRadeonServiceManager (start func is 0xFFFFFF7F841BFBCE)
[2:0:0][GPUCAP] refresh() --- FB Base: 0xf400000000, Top: 0xf40fffffff, Offset: 0x2010000000.

[2:0:0][GPUCAP] refresh() --- Branding - family: "Radeon"; device: "Graphics"; model: "AMD Radeon Graphics".

[2:0:0] [CUR:0] initWithController() >>> 

[2:0:0] [CUR:0] initWithController() <<< 

[2:0:0] [CUR:1] initWithController() >>> 

[2:0:0] [CUR:1] initWithController() <<< 

[2:0:0] [CUR:2] initWithController() >>> 

[2:0:0] [CUR:2] initWithController() <<< 

[2:0:0] [CUR:3] initWithController() >>> 

[2:0:0] [CUR:3] initWithController() <<< 

[2:0:0] [CUR:4] initWithController() >>> 

[2:0:0] [CUR:4] initWithController() <<< 

[2:0:0] [CUR:5] initWithController() >>> 

[2:0:0] [CUR:5] initWithController() <<< 

NootedRed   X6000FB: @ (DBG) getNumberOfConnectors: Fixing VBIOS connectors
[2:0:0] [IRQMGR] AMDRadeonX6000_AmdInterruptManagerNavi::initWithController() >>> 

[2:0:0] [IRQMGR] AMDRadeonX6000_AmdInterruptManagerNavi::createInterruptsGeneric() >>> NUM_HW_INTERRUPTS = 177.

[2:0:0] [IRQMGR] AMDRadeonX6000_AmdInterruptManagerNavi::createInterruptsGeneric() <<< err = 0.

GTrace synchronization point 4
GTrace synchronization point 5
GTrace synchronization point 6
[AMD INFO] TTL Interface: Boot mode Normal.

[2:0:0] [Accel] --- Before TTL:initialize() - BootLoader Version=0x00000000, POST Code=0xffffffff, Ready=0xffffffff

[2:0:0] [Accel] >>> Calling TTL::initialize()

       nonlocalMemSizeLimitBytes   = 0x0000000040000000

       pDoorbellBase               = 0xffffffa7be91b000

       doorbellApertureSizeInBytes = 2097152 (2048 KB)

[AMD INFO] TTL Interface: Boot mode Normal.

initialize normal
AMD Error: Invalid size or CPU virtual address size = 0x0000000000000000, memblock_ptr = 0

AMD TTL AMDLOG: [2:0:0] PSP: event_id=0xc0201 event_info:type=2 hw_id=0 event_specific_tag=0xc pData=0 data_size=0 psp_sw_init finished 

AMD Error: [2:0:0] Error SW_IP_CLIENT_ID__GC: event_id=0xc00c0401 event_info:type=3 hw_id=0 event_specific_tag=0x0 pData=0 data_size=0 

AMD Error: Firmware atidmcub_0.dat not found in directory, for deviceId 0x00001638

AMD Error: Unable to get firmware atidmcub_0.dat

AMD TTL COS:  [2:0:0]: Write PCI Config offset 0x60 size 2 data 0x100

AMD TTL COS:  [2:0:1]: Write PCI Config offset 0x60 size 2 data 0x100

AMD TTL AMDLOG: [2:0:0] PSP: event_id=0x100211 event_info:type=2 hw_id=0 event_specific_tag=0x0 pData=0 data_size=0 psp_hardware_initialization began loading PSP FWs 

AMD TTL AMDLOG: [2:0:0] PSP: event_id=0x100214 event_info:type=2 hw_id=0 event_specific_tag=0x0 pData=0 data_size=0 psp_hardware_initialization psp_bootloader_load_sysdrv begin 

AMD TTL AMDLOG: [2:0:0] PSP: event_id=0x100214 event_info:type=2 hw_id=0 event_specific_tag=0x0 pData=0 data_size=0 psp_hardware_initialization psp_bootloader_load_sysdrv end 

AMD TTL AMDLOG: [2:0:0] PSP: event_id=0x100215 event_info:type=2 hw_id=0 event_specific_tag=0x0 pData=0 data_size=0 psp_hardware_initialization psp_bootloader_load_sos (tos) begin 

AMD TTL AMDLOG: [2:0:0] PSP: event

@VisualEhrmanntraut
Copy link
Member

VisualEhrmanntraut commented Oct 20, 2024

Honestly it seems like a Lilu issue to me. I think it only starts patching when the (vesa) display is initialised

@PRBB28
Copy link

PRBB28 commented Oct 20, 2024

@Myp3a., Have you tried doing igpu passthrough with windows vm? Just to verify that you igpu passthrough is working properly. I had hard time making it work in proxmox, and that was with windows vm. Seen lots of discussion about 5700G igpu passhtorugh not working.

@Myp3a
Copy link
Author

Myp3a commented Oct 20, 2024

@PRBB28, it worked with macOS for a bit - then I was forced to change MB and CPU (same CPU, different MB), and now it doesn't work again, so 5700G passthrough is definitely possible. However, I'll check same configuration with Win/Linux, it might bring more clues to the scene.

@VisualEhrmanntraut, ty, I'll try opening an issue in Lilu bugtracker. Will come back here later with information from them

@VisualEhrmanntraut
Copy link
Member

Well, as I see it's a problem with Lilu, so I can't really do anything about this. I guess you'll need to find a way to get GOP working with a passed-through GPU.

@VisualEhrmanntraut VisualEhrmanntraut closed this as not planned Won't fix, can't repro, duplicate, stale Oct 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants