Altering file inside firmware requires new checksum - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:09:35Zhttp://stackoverflow.com/feeds/question/1002914http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1002914/altering-file-inside-firmware-requires-new-checksum0Altering file inside firmware requires new checksumFrank F. Burmo2009-06-16T17:36:14Z2009-06-16T17:55:00Z
<p>I have a firmware-file for a picture frame that I want to alter. The purpose of this altering is to make the device display a custom image during boot.</p>
<p>I've managed to switch the existing JPEG-file with my own custom file, but it is not possible to flash the device with this new firmware-file. The device complains about an invalid checksum, which seems correct since I haven't recalculated it.</p>
<p>Any tips about how to go forward with this? I've tried looking for the checksum in the file, but so far I haven't had any success.</p>
<p><a href="http://dump.no/files/842f3c44b91b/mp612.zip" rel="nofollow">Original unaltered and custom altered firmware in one zip-file</a></p>
http://stackoverflow.com/questions/1002914/altering-file-inside-firmware-requires-new-checksum/1002983#10029832Answer by Douglas Leeder for Altering file inside firmware requires new checksumDouglas Leeder2009-06-16T17:55:00Z2009-06-16T17:55:00Z<p>There isn't a general answer to this question, the answer depends on the device, and what checksum it uses to verify the firmware.</p>
<p>In general a checksum is used to verify the file hasn't got damaged during transfer.</p>
<p>It could be that the checksum is simply a CRC or MD5 or other hash, appended to the end of the firmware, or it could be in a header somewhere.</p>
<p>If you are unlucky then the checksum is combined with a digital signature which would prevent you from 'correcting' the checksum for your changes.</p>
<p>If you are lucky then someone will be able to tell you for format for the firmware and what the checksum algorithm is.</p>