Chameleon

Chameleon Commit Details

Date:2012-07-22 20:07:48 (11 years 8 months ago)
Author:Cosmosis Jones
Commit:2027
Parents: 2026
Message:added dev id to ati.c, and merged issue 270 http://forge.voodooprojects.org/p/chameleon/issues/270/
Changes:
M/trunk/i386/boot2/boot.c
M/trunk/i386/libsaio/ati.c
M/trunk/i386/libsaio/sys.c

File differences

trunk/i386/libsaio/ati.c
273273
274274
275275
276
276
277
277278
278279
279280
{ 0x9490,0x300017AF, CHIP_FAMILY_RV730,"ATI Radeon HD 4710",kNull},
{ 0x9498,0x21CF1458, CHIP_FAMILY_RV730,"ATI Radeon HD 4600 Series",kNull},
{ 0x9498,0x10001043, CHIP_FAMILY_RV730,"ASUS EAHG4670", kNull},
{ 0x9498,0x20091787, CHIP_FAMILY_RV730,"ATI Radeon HD 4650", kNull},
{ 0x9498,0x24511682, CHIP_FAMILY_RV730,"ATI Radeon HD 4650",kNull},
{ 0x9498,0x24521682, CHIP_FAMILY_RV730,"ATI Radeon HD 4650",kNull},
{ 0x9498,0x24541682, CHIP_FAMILY_RV730,"ATI Radeon HD 4650",kNull},
trunk/i386/libsaio/sys.c
343343
344344
345345
346
346347
347348
348349
} else {
idx++;
strncpy(gMakeDirSpec, name, idx);
gMakeDirSpec[idx] = '\0';
name += idx;
}
dirSpec = gMakeDirSpec;
trunk/i386/boot2/boot.c
272272
273273
274274
275
276
277
278
279
280
281
282
283
284275
285276
286277
}
}
// kernelCacheFile must start with a /
if (kernelCacheFile[0] != '/') {
char *str = strdup(kernelCacheFile);
if (str == NULL)
return -1;
sprintf(kernelCacheFile, "/%s", str);
free(str);
}
// Check if the kernel cache file exists
ret = -1;

Archive Download the corresponding diff file

Revision: 2027