-
Notifications
You must be signed in to change notification settings - Fork 174
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
shelldriver: Fix xmodem #1261
shelldriver: Fix xmodem #1261
Conversation
xmodem was failing because it would consume the trailing newline character between the `echo` for the marker and the command output. Fix this by suppressing new line on the marker Signed-off-by: Joshua Watt <[email protected]>
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #1261 +/- ##
========================================
- Coverage 62.9% 62.9% -0.1%
========================================
Files 161 161
Lines 11861 11861
========================================
- Hits 7470 7469 -1
- Misses 4391 4392 +1
☔ View full report in Codecov by Sentry. |
Thanks for the fix! |
This should be back ported to stable. |
Done. |
@JoshuaWatt do you still know what you were using on the target? Was it lrzsz or the busybox rx/sx tools, or something else? (I'm wondering because I didn't get it to work recently…) |
@rohieb I'm pretty sure it was lrzsz, but it was a while ago so I'm not positive |
xmodem was failing because it would consume the trailing newline character between the
echo
for the marker and the command output. Fix this by suppressing new line on the markerDescription
Checklist