Added req for rc_sync for QuecManager BETA and socat-at-bridge

This commit is contained in:
Cameron Thompson
2025-01-20 16:15:00 -05:00
parent 4010a26b40
commit f2767682c5
6 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/ash
if [ -f /usr/bin/rc_sync ]; then
echo "/usr/bin/rc_sync exists. Continuing..."
else
echo "/usr/bin/rc_sync not found. Downloading..."
curl -fsSL https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/SDXPINN/ipk-source/sdxpinn-mount-fix/root/usr/bin/rc_sync -o /usr/bin/rc_sync
chmod +x /usr/bin/rc_sync
fi
exit 0