Install Linux utilities
sudo apt-get update && sudo apt-get install acpidump iasl
Dump ACPI tables from memory by acpidump
sudo acpidump > acpi.log
Extract tables by acpixtract
If you are intending to extract the DSDT table, you can use:
acpixtract -sDSDT acpi.log
If table type is not specified, acpixtract extracts DSDT and all SSDTs by default:
acpixtract acpi.log
acpixtract -sDSDT acpi.log
If table type is not specified, acpixtract extracts DSDT and all SSDTs by default:
acpixtract acpi.log
Decode an ACPI table by Intel's disassembler
iasl -d DSDT.dat
View result with your favorite text editor
I use: vi DSDT.dsl
No comments:
Post a Comment