Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gzip+signed OTA error #7577

Merged
merged 3 commits into from
Sep 4, 2020
Merged

Commits on Sep 4, 2020

  1. Fix gzip+signed OTA error

    The last 4 bytes of a GZIP file is the decompressed file length, and
    are used in eboot to do sanity checks and know when decompression is
    done.
    
    Updater was incorrectly telling eboot to look at
    "end-of-bin + sizeof(signing)", and when eboot did so it got an
    incorrect value causing either the update to be skipped or for only a
    portion of update to be completed.
    
    Fix by adjusting the size back to the end of binary.
    Fixes esp8266#7570
    earlephilhower committed Sep 4, 2020
    Configuration menu
    Copy the full SHA
    08b0058 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    09ee0d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e4ac5e0 View commit details
    Browse the repository at this point in the history