I have a GTS 450 and love the way nouveau runs in 2d, I was looking to test 3D and have extracted most of the firmware from the Nvidia blob.  Is f841a1c4 the correct register to retrieve the fuc41ad firmware file? When I try the following:<br>
<br># insert correct register in next line<br>grep f841a1c4 ../mydump.txt \<br>| awk &#39;{print $6}&#39; | grep -oP &#39;(?&lt;=0x).*&#39; | \<br>        python -c \<br>&quot;<br>import struct; import sys; fd = open(\&quot;fuc41ad\&quot;, \&quot;wb\&quot;);<br>
for line in sys.stdin:<br>        fd.write(struct.pack(\&quot;@I\&quot;, int(line.rstrip(), 16)))<br>&quot;<br>It results in the fuc41ad file being written as a text file with the date Feb 12 2011 ? Is this correct? All three other firmware files are written as binary files... I know a bit of python and bash but am drawing a blank on this. <br>
<br>Thank you all in advance for any help. Much appreciated. <br>