Made some progress!!
I have NVEnabler v0.1 instaled and booting without needing the -x flag!
Without using the -x flag I was getting a blue screen when booting normaly, Minutes ago I've applied some things explained in that German tutorial, I've done some editing to the info.plist of the following kexts to get it working:
GeForce.kext
NVDANV50Hal.kext
NVDAResman.kext
NVEnabler.kext
In GeForce the original was:
CODE
<key>IOPCIMatch</key>
<string>0x000010de&
0x0000ffff</string>
After editing was:
CODE
<key>IOPCIMatch</key>
<string>0x000010de&
0x06ec10de</string>
In NVDANV50Hal.kext original:
CODE
<key>IOPCIPrimaryMatch</key>
<string>
0x00f010de&0xfff0ffff
0x019010de&0xfff0ffff
0x040010de&0xfff0ffff
0x042010de&0xfff0ffff
0x06e010de&0xfff0ffff
0x060010de&0xffe0ffff
0x062010de&0xffe0ffff
0x064010de&0xffe0ffff
0x086010de&0xffe0ffff
</string>
After editing (this time adding a value):
CODE
<key>IOPCIPrimaryMatch</key>
<string>
0x00f010de&0xfff0ffff
0x019010de&0xfff0ffff
0x040010de&0xfff0ffff
0x042010de&0xfff0ffff
0x06e010de&0xfff0ffff
0x060010de&0xffe0ffff
0x062010de&0xffe0ffff
0x064010de&0xffe0ffff
0x086010de&0xffe0ffff&
0x06ec10de
</string>
In NVDAResman.kext original was:
CODE
<key>IOPCIPrimaryMatch</key>
<string>0x011010de&
0xfff8ffff 0x017010de&
0xfff8ffff 0x017910de 0x018010de&
0xfff8ffff 0x018810de
0x018910de 0x020010de&
0xfff8ffff 0x025010de&
0xfff8ffff 0x028010de&
0xfff8ffff 0x030010de&
0xfff8ffff 0x031010de&
0xfff8ffff 0x031910de 0x034910de</string>
After editing (again adding a value):
CODE
<key>IOPCIPrimaryMatch</key>
<string>0x011010de&
0xfff8ffff 0x017010de&
0xfff8ffff 0x017910de 0x018010de&
0xfff8ffff 0x018810de
0x018910de 0x020010de&
0xfff8ffff 0x025010de&
0xfff8ffff 0x028010de&
0xfff8ffff 0x030010de&
0xfff8ffff 0x031010de&
0xfff8ffff 0x031910de 0x034910de
&0x06ec10de</string>
And then in NVEnabler.kext original was:
CODE
<key>IOPCIMatch</key>
<string> 0x000010de&0x0000ffff</string>
After editing:
CODE
<key>IOPCIMatch</key>
<string> 0x000010de&0x06ec10de</string>
Rebooted with -v flag and done! Working!
BUT in System profiler it only detects 32mb and QE isn't suported (yet).
Now, If you want to do it yourself you need to have NVEnabler package from iAtkos v7 installed, then get the program TextMate.
After that, you just Have to go to:
installation HD-> System-> Library-> Extentions
When you're there, look for the kexts that I said that I've edited, to have access to the 'info.plist' right click on the kext and select 'Show contents' and you'll see it.
Right click again on 'info.plist' and slect 'open with' select 'TextMate' app and then do the same editing I did (and showed) but replace the bold and underlined part of the code with your own graphic card IOPCIMatch, to get this value go to sytem profiler -> graphics/displays pick your Device ID (mine was 0x06ec) and in the end of it add '10de', so in my case it would result in 0x06ec10de .
And I think I've explained all that you need to do it yourself!
OH! First backup the kexts your editing so that if something goes wrong you can boot with -x flag and put it back as it was!
Although I've done some progress in booting normaly without the need of the -x flag, System profiler still showing my graphics card has only 32mb of VRAM, VGA and HDMI still not working, so I'am still needing help, but not with that much urgency I had!