Chameleon

Chameleon Commit Details

Date:2011-08-14 09:00:34 (12 years 8 months ago)
Author:Evan Lojewski
Commit:1369
Parents: 1368
Message:Cause pci_root detection code to use selected DSDT.aml file
Changes:
M/trunk/i386/libsaio/pci_root.c

File differences

trunk/i386/libsaio/pci_root.c
4545
4646
4747
48
49
4850
4951
5052
......
7375
7476
7577
76
78
79
80
81
82
83
84
85
86
87
88
89
7790
7891
7992
int getPciRootUID(void)
{
char dsdt_dirSpec[128];
void *new_dsdt;
const char *val;
int len,fsize;
goto out;
}
int fd = search_and_get_acpi_fd("DSDT.aml", &dsdt_filename);
// Try using the file specified with the DSDT option
if (getValueForKey(kDSDT, &dsdt_filename, &len, &bootInfo->chameleonConfig))
{
sprintf(dsdt_dirSpec, dsdt_filename);
}
else
{
sprintf(dsdt_dirSpec, "DSDT.aml");
}
int fd = search_and_get_acpi_fd(dsdt_dirSpec, &dsdt_filename);
// Check booting partition
if (fd<0)

Archive Download the corresponding diff file

Revision: 1369