mirror of
https://github.com/natecarlson/quectel-rgmii-configuration-notes.git
synced 2026-04-25 06:35:55 +03:00
[GH-ISSUE #6] TTL mod failing #5
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/quectel-rgmii-configuration-notes#5
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kameleon25 on GitHub (Aug 24, 2023).
Original GitHub issue: https://github.com/natecarlson/quectel-rgmii-configuration-notes/issues/6
When I am following the directions to enable the TTL mod (after unlocking adb access) I get the following error:
c:\Users\Username\quectel-rgmii-configuration-notes\files>adb shell systemctl start ttl-override Job for ttl-override.service failed because the control process exited with error code. See "systemctl status ttl-override.service" and "journalctl -xe" for details.So I run the systemctl command to see what is going on and get this:
`c:\Users\Username\quectel-rgmii-configuration-notes\files>adb shell systemctl status ttl-override.service
Loaded: loaded (/lib/systemd/system/ttl-override.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Sun 1980-01-06 00:12:05 UTC; 35s ago
Process: 1449 ExecStart=/etc/initscripts/ttl-override start (code=exited, status=203/EXEC)
Main PID: 1449 (code=exited, status=203/EXEC)
c:\Users\Username\quectel-rgmii-configuration-notes\files>`
I also enabled the service and get this:
adb shell systemctl enable ttl-override.service Created symlink /etc/systemd/system/multi-user.target.wants/ttl-override.service -> /lib/systemd/system/ttl-override.service.Even with that I get the
c:\Users\Username\quectel-rgmii-configuration-notes\files>adb shell systemctl start ttl-override Job for ttl-override.service failed because the control process exited with error code. See "systemctl status ttl-override.service" and "journalctl -xe" for details.Which then shows:
`adb shell systemctl status ttl-override.service
Loaded: loaded (/lib/systemd/system/ttl-override.service; enabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Sun 1980-01-06 00:22:06 UTC; 7s ago
Main PID: 1710 (code=exited, status=203/EXEC)`
So I am not doing something right here. I am copying and pasting the commands so it should not be a fat finger issue. Any ideas?
@kameleon25 commented on GitHub (Aug 24, 2023):
Disregard. I will leave this as a lesson for others though. My issue was I am using windows and when I downloaded the github repo, it put a ^M at the end of all the lines. I did a normal
adb shelland used vi to manually delete the character on each line of both files. It now works.