Random Post: Happy 20th, Perl!
RSS .92| RSS 2.0| ATOM 0.3
  • Home
  •  

    Convert firmware images from .bin to .trx

    You may on occasion have a need to convert .bin firmware images such as those used to flash linksys based devices into .bin formatted images that can be accepted by OpenWRT. Its actually quite easy to do:

    dd if=image.bin of=image.trx bs=32 skip=1

    That will strip the first 32 bytes off the image, thus making it a valid .bin formatted firmware image file. Neat, huh?

    Leave a Reply