Altering file inside firmware requires new checksum - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:09:35Z http://stackoverflow.com/feeds/question/1002914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1002914/altering-file-inside-firmware-requires-new-checksum 0 Altering file inside firmware requires new checksum Frank F. Burmo 2009-06-16T17:36:14Z 2009-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#1002983 2 Answer by Douglas Leeder for Altering file inside firmware requires new checksum Douglas Leeder 2009-06-16T17:55:00Z 2009-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>