QuecManager Beta 1.1.1-3

- Fixed cell scanner not working
- Improved control scripts
This commit is contained in:
Cameron Thompson
2025-01-27 23:56:02 -05:00
parent eedbe783ae
commit e99adb0a3e
9 changed files with 3 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
Package: sdxpinn-quecmanager-beta
Version: 1.1.1-2
Version: 1.1.1-3
Architecture: aarch64_cortex-a53
Maintainer: Russel Yasol dr-dolomite@github.com Cameron Thompson iamromulan@github.com
Source: github.com/iamromulan

View File

@@ -6,8 +6,6 @@ cp /www/login.html /www/index.html
service quecmanager-services enable
service quecmanager-services start
sleep 3
rc_sync
exit 0

View File

@@ -1,11 +1,8 @@
#!/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
echo "/usr/bin/rc_sync exists. Removing..."
rm /usr/bin/rc_sync
fi
echo "Cleaning anything that might be left fron old versions"

View File