Changes between Initial Version and Version 1 of Ticket #17013
- Timestamp:
- Aug 15, 2017 7:01:23 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17013 – Description
initial v1 1 {{{ 1 2 VBoxManage setextradata "VM name" "VBoxInternal/Devices/acpi/0/Config/CustomTable" "/path/to/table.bin" 2 (see UserManual: 9.13 Configuring the custom ACPI table) 3 don't work properly for VMs in EFI mode (but in BIOS mode). 3 }}} 4 (see UserManual: 9.13 Configuring the custom ACPI table) 5 doesn't work properly for VMs in EFI mode (but in BIOS mode). 4 6 5 It seems the implementation under 6 https://www.215389.xyz/browser/vbox/trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c 7 Revision 58975 8 line 220 9 isn't present. There is not entry in "TableInfo[]" 7 It seems the implementation under [https://www.215389.xyz/browser/vbox/trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatform.c AcpiPlatform.c] Revision 58975 line 220 isn't present. There is no entry in "TableInfo[]" 10 8 11 9 ''' * To reproduce *''' 12 10 13 Create a VM with EFI mode 11 1. Create a VM with EFI mode 12 2. Set extra data using VBoxManage 13 3. Configure custom ACPI table 14 4. boot linux (like CloneZilla) in shell mode 15 5. `ls -l /sys/firmware/acpi/tables/` 14 16 15 Set extra data using VBoxManage 16 17 VBoxManage setextradata "VM name" "VBoxInternal/Devices/acpi/0/Config/CustomTable" "/path/to/table.bin" 18 (see UserManual: 9.13 Configuring the custom ACPI table) 19 20 boot linux (like CloneZilla) in shell mode 21 22 ls -l /sys/firmware/acpi/tables/ 23 24 The expected table isn't present. 25 Switch to BIOS mode works correct. 17 The expected table isn't present. Switch to BIOS mode works correct.