1. 23 Feb, 2015 2 commits
  2. 25 Feb, 2015 1 commit
  3. 23 Feb, 2015 1 commit
  4. 15 Feb, 2015 1 commit
  5. 20 Feb, 2015 1 commit
  6. 19 Feb, 2015 1 commit
  7. 15 Feb, 2015 1 commit
  8. 14 Feb, 2015 1 commit
  9. 10 Feb, 2015 1 commit
  10. 09 Feb, 2015 1 commit
  11. 22 Jan, 2015 3 commits
  12. 21 Jan, 2015 2 commits
  13. 05 Feb, 2015 2 commits
  14. 21 Jan, 2015 1 commit
  15. 20 Jan, 2015 1 commit
  16. 03 Feb, 2015 2 commits
    • Merge pull request #106 from bmaia/patch-1 · 6cc5f508
      Fixed TRX v1 signature bug
      devttys0 authored
    • Fixed TRX v1 signature bug · dab4ccf9
      The signature for the TRX header is still incomplete for v1. According to http://wiki.openwrt.org/doc/techref/header, offset[0] = lzma-loader, offset[1] = Linux-Kernel and offset[2] = rootfs.
      
      Before the fix:
      
      bernardomr@splinter ~/openwrt $ binwalk openwrt-wrtsl54gs-squashfs.bin 
      
      DECIMAL       HEXADECIMAL     DESCRIPTION
      32            0x20            TRX firmware header, little endian, header size: 32 bytes, image size: 1323008 bytes, CRC32: 0x6CAC483, flags: 0x0, version: 1, kernel offset: 0x1C, rootfs offset: 0x8D8
      60            0x3C            gzip compressed data, maximum compression, from Unix, NULL date:
      2296          0x8F8           LZMA compressed data, properties: 0x6D, dictionary size: 8388608 bytes, uncompressed size: -1 bytes
      517152        0x7E420         Squashfs filesystem, little endian, version 2.1, size: 805671 bytes, 269 inodes, blocksize: 65536 bytes, created: 2014-10-29 18:53:25
      
      After the fix:
      
      bernardomr@splinter ~/openwrt $ binwalk openwrt-wrtsl54gs-squashfs.bin 
      
      DECIMAL       HEXADECIMAL     DESCRIPTION
      --------------------------------------------------------------------------------
      32            0x20            TRX firmware header, little endian, header size: 32 bytes, image size: 1323008 bytes, CRC32: 0x6CAC483, flags: 0x0, version: 1, loader offset: 0x1C, linux kernel offset: 0x8D8, rootfs offset: 0x7E400,
      60            0x3C            gzip compressed data, maximum compression, from Unix, NULL date:
      2296          0x8F8           LZMA compressed data, properties: 0x6D, dictionary size: 8388608 bytes, uncompressed size: -1 bytes
      517152        0x7E420         Squashfs filesystem, little endian, version 2.1, size: 805671 bytes, 269 inodes, blocksize: 65536 bytes, created: 2014-10-29 18:53:25
      
      - Loader: 0x20 + 0x1C = 0x3C
      - Kernel: 0x20 + 0x8D8 = 0x8F8
      - RootFS: 0x20 + 0x7E400 = 0x7E420
      Bernardo Rodrigues authored
  17. 19 Jan, 2015 2 commits
  18. 18 Jan, 2015 1 commit
  19. 17 Jan, 2015 1 commit
  20. 25 Jan, 2015 1 commit
  21. 24 Jan, 2015 1 commit
  22. 21 Jan, 2015 3 commits
  23. 16 Jan, 2015 1 commit
  24. 29 Dec, 2014 3 commits
  25. 28 Dec, 2014 1 commit
  26. 07 Jan, 2015 1 commit
  27. 06 Jan, 2015 1 commit
  28. 09 Dec, 2014 2 commits