>Bug 6520694 gives also some interesting informations as it states:
>"the names of such tables are fixed by the BIOS and may (more often than not)
>contain spaces;"
>I'm wondering that Linux in initrd just looks for a file called DSDT.aml
>but /boot/acpi/tables requires a certain file name. If it's just the filename
>how can I find out the correct string for the required format
>"signature_oemid_oemtableid.dat" like in the mentioned bug ?
It's listed in the dsl header:
DefinitionBlock ("DSDT.aml", "DSDT", 1, "ASUS", "CUV4X ", 4096)
gives you a table name of the form:
"DSDT_ASUS_CUV4X .dat"
(note the spaces)
Casper