-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
[macOS] Boot stuck on PCI configuration PCI0 when using libvirt #127
Comments
I seem to be stuck at the identical place with same screen display if I boot with libvirtd. I did notice when I tried to use the boot.sh to install, it went further and started installing, but it was not showing my /dev/disk/by-id drive to install to. I'm suspecting in my case that something was not right with that mapping I did during the setup - in my case I was trying to point it to my /dev/sdc3 partition using the /dev/disk/by-id long name. |
I think this might be an issue with verbose boot. Try using the macOS Boot Argument editor (Main menu > Extras) to remove the Cheers |
Wow, that worked. Thank you. Can you explain why it fails via libvirt but works when using qemu directly? |
Honestly, I have no idea... My educated guess would be a slightly different feature set / layers of functions, but that wouldn't explain why it works without verbose boot. As a general rule of thumb:
TL;DR: No passthrough = QEMU script, Passthrough = Libvirt / virt-manager |
Thank you, disabling verbose mode solved the problem. |
Pinning until resolved without workarounds |
I encountered the same problem as follows.
Cause
<hostdev mode="subsystem" type="pci" managed="yes">
<source>
<address domain="0x0000" bus="0x04" slot="0x00" function="0x0"/>
</source>
<address type="pci" domain="0x0000" bus="0x02" slot="0x00" function="0x0" multifunction="on"/>
</hostdev>
Resolve
<hostdev mode="subsystem" type="pci" managed="yes">
<source>
<address domain="0x0000" bus="0x04" slot="0x00" function="0x0"/>
</source>
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x0" multifunction="on"/>
</hostdev>
|
Describe the Issue
macOS stuck at boot when booting using libvirtd
Reproduce the Issue
Expectation
No response
Screenshots
No response
Operating System
Cachy OS
Kernel
6.6.51-1-cachyos-lts-lto
Processor
AMD Ryzen 7 PRO 3700
RAM (in GB)
32GB
GPU(s)
No response
Version
v0.12.4
Branch
main
Generated Script File
Generated XML File (if applicable)
Generated Log File
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: