SDXPINN branch is now ipk focused

-Updated opkg-feed with new packages
-Updated key cause I lost my private key
This commit is contained in:
iamromulan
2024-10-06 02:52:53 -04:00
parent 705d461342
commit 7a636798d6
39 changed files with 723 additions and 182 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/sh
# Copyright 2020-2021 Rafał Wabik (IceG) - From eko.one.pl forum
# Licensed to the GNU General Public License v3.0.
work=false
for port in /dev/ttyUSB*
do
[[ -e $port ]] || continue
gcom -d $port info &> /tmp/testusb
testUSB=`cat /tmp/testusb | grep "Error\|Can't"`
if [ -z "$testUSB" ]; then
work=$port
break
fi
done
rm -rf /tmp/testusb
if [ $work != false ]; then
uci set atinout.@atinout[0].atcport=$work
uci commit atinout
fi