Chameleon

Chameleon Commit Details

Date:2010-08-10 01:27:40 (13 years 8 months ago)
Author:Azimutz
Commit:336
Parents: 335
Message:Not going to comment this one!
Changes:
M/branches/azimutz/CleanCut/i386/libsaio/pci_root.c
M/branches/azimutz/CleanCut/i386/boot2/boot.h

File differences

branches/azimutz/CleanCut/i386/libsaio/pci_root.c
5858
5959
6060
61
62
63
64
65
66
67
68
69
70
71
72
73
74
7561
7662
7763
if (isdigit(val[0])) rootuid = val[0] - '0';
goto out;
}
/* Chameleon compatibility */
else if (getValueForKey("PciRoot", &val, &len, &bootInfo->bootConfig)) {
if (isdigit(val[0])) rootuid = val[0] - '0';
goto out;
}
/* PCEFI compatibility */
else if (getValueForKey("-pci0", &val, &len, &bootInfo->bootConfig)) {
rootuid = 0;
goto out;
}
else if (getValueForKey("-pci1", &val, &len, &bootInfo->bootConfig)) {
rootuid = 1;
goto out;
}
int fd = search_and_get_acpi_fd("DSDT.aml", &dsdt_filename);
branches/azimutz/CleanCut/i386/boot2/boot.h
8383
8484
8585
86
86
8787
8888
8989
#define kSystemType"SystemType"// fake_efi.c
#define kUseNvidiaROM"UseNvidiaROM"// nvidia.c
#define kVBIOS"VBIOS"// nvidia.c
#define kPCIRootUID"PCIRootUID"// pci_root.c
#define kPCIRootUID"PciRoot"// pci_root.c
#define kEthernetBuiltIn"EthernetBuiltIn"// pci_setup.c
#define kGraphicsEnabler"GraphicsEnabler"// pci_setup.c
#define kForceHPET"ForceHPET"// pci_setup.c

Archive Download the corresponding diff file

Revision: 336