Index: branches/azimutz/Cleancut/version =================================================================== --- branches/azimutz/Cleancut/version (revision 820) +++ branches/azimutz/Cleancut/version (revision 821) @@ -1 +1 @@ -2.0-RC5 \ No newline at end of file +2.0-RC5 Cleancut \ No newline at end of file Index: branches/azimutz/Cleancut/i386/boot2/Makefile =================================================================== --- branches/azimutz/Cleancut/i386/boot2/Makefile (revision 820) +++ branches/azimutz/Cleancut/i386/boot2/Makefile (revision 821) @@ -132,7 +132,7 @@ exit 1;\ fi) - + embed_symbols: machOconv @echo ================= Embedding Symbols.dylib ================= @echo "\t[MACHOCONV] boot" @@ -143,8 +143,8 @@ @echo "\t[MACHOCONV] boot" @$(SYMROOT)/machOconv $(SYMROOT)/boot.sys $(SYMROOT)/boot - + prompt.o: vers.h vers.h: @echo "#define I386BOOT_VERSION \"5.0.132\"" > $(SYMROOT)/vers.h Index: branches/azimutz/Cleancut/i386/modules/TODO_GraphicsEnabler =================================================================== --- branches/azimutz/Cleancut/i386/modules/TODO_GraphicsEnabler (revision 820) +++ branches/azimutz/Cleancut/i386/modules/TODO_GraphicsEnabler (revision 821) @@ -1,10 +0,0 @@ -- get testers for GraphicsEnabler module (new ATI code); i have no way to test it. -- review & clean up -- break these modules into e.g. ATIEnabler/ATIEnablerLegacy, NVIDIAEnabler, GMAEnabler ?? -- remove this file when done :) - -Note: No problems compiling with either XCode 3.2.6 or 4.0.2. - GraphicsEnablerLegacy has support for some GMA graphics, basically the same - that can be found on Meklort's branch. - -Thanks to everyone that worked on these patches; i'm mostly just gathering their work. \ No newline at end of file Index: branches/azimutz/Cleancut/i386/modules/TODO =================================================================== --- branches/azimutz/Cleancut/i386/modules/TODO (revision 0) +++ branches/azimutz/Cleancut/i386/modules/TODO (revision 821) @@ -0,0 +1,44 @@ + +GraphicsEnabler & GraphicsEnablerLegacy modules: + + GraphicsEnablerLegacy module is based on the old code, previous to r786. This module was created +by Meklort; i just added the new ATI code in. + +Note: GraphicsEnablerLegacy has support for some GMA graphics, basically the same + that can be found on Meklort's branch. + +- both modules work properly when compiled with XCode 3.2.6. +- the use of XCode 4 causes problems atm, not only to the module system. + See: http://www.insanelymac.com/forum/index.php?s=&showtopic=231075&view=findpost&p=1683785 + as an example. +- i have no plans to keep working on these modules; the old ATI code was never meant to support + these legacy cards like my rv516 gpu, according to Netkas. So, i will try to resort to DSDT injection. + If i fail on doing that, then i may get back to this...? time and money to buy a new graphics + card, will tell :) + + +Thanks to everyone that worked on these patches; i'm mostly just gathering their work. + + --------------------//-------------------- + + + + + + + + + + + + + + + + + + + + + +Azimutz \ No newline at end of file Index: branches/azimutz/Cleancut/i386/modules/GraphicsEnabler/ati.c =================================================================== --- branches/azimutz/Cleancut/i386/modules/GraphicsEnabler/ati.c (revision 820) +++ branches/azimutz/Cleancut/i386/modules/GraphicsEnabler/ati.c (revision 821) @@ -1221,7 +1221,8 @@ /* ------------------------------------------------- */ /* Find a better way to do this (in device_inject.c) */ - stringdata = malloc(string->length); + //Azi: tried to fix a malloc error in vain; this is caused by XCode 4 compilation! + stringdata = malloc(sizeof(uint8_t) * string->length); memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length); stringlength = string->length; /* ------------------------------------------------- */