Ian Campbell
Ian Campbell
I general PRs are always welcome, yes. Why do you need a 64 -bit HPET though, are you seeing an issue?
> Is Darwin / OS X as a guest OS completely out of the question here? TL;DR: It would be possible (and very cool), but an awful lot of work...
Indeed, would be interesting to know what the graphics stack used there is, perhaps it is just running headless with VNC or RDP or something.
@grehan-freebsd Awesome! We should certainly wait for that to land in bhyve rather than repeating that work over here!
@thebsdbox the framebuffer/vnc stuff would be great to have, as far as I know nobody is working on that so feel free to pick it up, since it looks to...
@pnasprat: The scope here is really just: ``` while not(more oses to try) pick an $OS (random, own pet OS, etc) while not(that $OS boots and works well with hyperkit)...
I think docker 4 mac has since disabled the freezing/thawing of vcpus over suspend (which itself was a workaround for an older osx Hypervisor framework bug which appears to have...
Does increasing the [`VTSOCK_MAXSOCKS` define](https://github.com/docker/hyperkit/blob/master/src/lib/pci_virtio_sock.c#L67) help? While you are rebuilding anyway you may as well set [`pci_vtsock_debug`](https://github.com/docker/hyperkit/blob/master/src/lib/pci_virtio_sock.c#L126) to 1 of if that is too verbose modify the DPRINT's in [`connect_sock`](https://github.com/docker/hyperkit/blob/master/src/lib/pci_virtio_sock.c#L692..#L696)...
Thanks for the report @povik. Does it work if you return before the `dsdt_fixup` call if `bi == NULL`? I notice that we seem to have removed `src/lib/dsdt.asl` in commit...
> Does it work if you return... If not then adding: ```c if (pci_businfo[0] == NULL) pci_businfo[0] = calloc(1, sizeof(struct businfo)); ``` before the loop in `init_pci` would perhaps be...