admin管理员组文章数量:1302318
I'm using VirtualBox v7.1.6 with a Windows11 virtual machine.
I want to add a custom acpi table to the virtual machine
DefinitionBlock ("DSDT.AML", "DSDT", 0x02, "VMW", "CUSTOM", 0x00000001)
{
Scope(\_SB)
{
Device(FIRS)
{
Name(_HID, "DUCB2412")
Name(_UID, 0)
// Define resource settings
Name(_CRS, ResourceTemplate()
{
IO(Decode16, 0x03F8, 0x03FF, 0x00, 0x08) // Example I/O range
})
Method(_STA, 0, NotSerialized)
{
Return(0x0F) // Device is enabled
}
}
}
}
I converted asl
file to aml
file then use below command
VBoxManage setextradata "my_machine_name" "VBoxInternal/Devices/acpi/0/Config/CustomTable0" "path_to_aml_file"
After rebooting the virtual machine, I can see the acpi table by using rweverything tool:
I tried to find the device in Device Manager or run the command pnputil /enum-devices
but it does not exist.
What is the problem I'm getting here?
本文标签:
版权声明:本文标题:ACPI device does not exist after adding custom ACPI table to Windows11 virtual machine in VirtualBox - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741711018a2393842.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论