update sms_tool and socat_at-bridge

-Updated sms_tool binary to the AP aarch64 version

- socat-at-bridge ready to build
This commit is contained in:
Cameron Thompson
2025-01-12 14:14:47 -05:00
parent 5d29af2f85
commit 13ba36f560
11 changed files with 29 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
Package: socat-at-bridge
Version: 1.0.0
Depends: libc socat
Source: github/iamromulan
Source: github/iamromulan/quectel-rgmii-toolkit
Section: utils
URL: https://github.com/iamromulan
URL: https://github.com/iamromulan/quectel-rgmii-toolkit
Architecture: aarch64_cortex-a53
Description: Sets up a tty from SMD11

View File

@@ -0,0 +1,9 @@
#!/bin/ash
echo "Enabling socat-at-bridge at startup"
service enable socat-at-bridge
echo "Starting socat-at-bridge"
service start socat-at-bridge
exit 0

View File

@@ -0,0 +1,9 @@
#!/bin/ash
echo "Disabling socat-at-bridge at startup"
service disable socat-at-bridge
echo "Stopping socat-at-bridge"
service stop socat-at-bridge
exit 0