Merged
Conversation
- Added Gentoo (unofficial) support - Added autoinstall script for Unixes - Added pylzma workaround for -Wint-conversion error - Improved install-linux-edl-drivers.sh: now it's POSIX compliant and shell-agnostic - Improved Firehose cmd_peek() error handling - Updated README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Improvements
Added Gentoo (unofficial) support
Added autoinstall script for Unixes
Added
pylzmaworkaround for-Wint-conversionerror (GCC >= 14)Improved
install-linux-edl-drivers.sh: now it's POSIX compliant and shell-agnosticImproved Firehose
cmd_peek()error handling (more details below)Updated
README.mdExtra information
About the
cmd_peek()improvement, I've made it because this:happened when I tried to dump the PBL from a
daisy(MSM8953). So on, I've noticed that this is caused by the received Firehose XML packets that were incomplete, so I madecmd_peek()to receive data until</data>is sent.Beside this, the
daisy's PBL is supposed to send0x1ffb0bytes from address0x100000(as it usesMSM8953), but it actually stops after sending0x17fb2bytes. This way, I've also madecmd_peek()to actually save the "truncated" data (I'm not sure why this is happening, but this workaround is actually working and the generated file is valid and reverse-engineerable).Anyways, thanks for such amazing toolkit and related work! It's a truly life saver❣️