From 812e096354b66666cf131503dc26a645a5253bc4 Mon Sep 17 00:00:00 2001 From: Cameron Thompson <50184035+iamromulan@users.noreply.github.com> Date: Sun, 22 Sep 2024 17:23:25 -0400 Subject: [PATCH] Ready to test --- etc/config/luci | 50 ------------------- ...N-repo.pub => iamromulan-SDXPINN-repo.key} | 0 rcPCIe_SDXPINN_toolkit.sh | 24 +++++++++ 3 files changed, 24 insertions(+), 50 deletions(-) delete mode 100644 etc/config/luci rename opkg-feed/{iamromulan-SDXPINN-repo.pub => iamromulan-SDXPINN-repo.key} (100%) diff --git a/etc/config/luci b/etc/config/luci deleted file mode 100644 index f8f6f92..0000000 --- a/etc/config/luci +++ /dev/null @@ -1,50 +0,0 @@ - -config core 'main' - option lang 'auto' - option mediaurlbase '/luci-static/bootstrap' - option resourcebase '/luci-static/resources' - option ubuspath '/ubus/' - -config extern 'flash_keep' - option uci '/etc/config/' - option dropbear '/etc/dropbear/' - option openvpn '/etc/openvpn/' - option passwd '/etc/passwd' - option opkg '/etc/opkg.conf' - option firewall '/etc/firewall.user' - option uploads '/lib/uci/upload/' - -config internal 'languages' - option en 'English' - -config internal 'sauth' - option sessionpath '/tmp/luci-sessions' - option sessiontime '3600' - -config internal 'ccache' - option enable '1' - -config internal 'themes' - option Bootstrap '/luci-static/bootstrap' - option BootstrapDark '/luci-static/bootstrap-dark' - option BootstrapLight '/luci-static/bootstrap-light' - -config internal 'apply' - option rollback '90' - option holdoff '4' - option timeout '5' - option display '1.5' - -config internal 'diag' - option dns 'openwrt.org' - option ping 'openwrt.org' - option route 'openwrt.org' - -config command - option name 'Show INFO' - option command 'atcmd '\''ATI'\''' - -config command - option name 'show name' - option command 'uname -a' - diff --git a/opkg-feed/iamromulan-SDXPINN-repo.pub b/opkg-feed/iamromulan-SDXPINN-repo.key similarity index 100% rename from opkg-feed/iamromulan-SDXPINN-repo.pub rename to opkg-feed/iamromulan-SDXPINN-repo.key diff --git a/rcPCIe_SDXPINN_toolkit.sh b/rcPCIe_SDXPINN_toolkit.sh index 8bcde22..5bcd7da 100644 --- a/rcPCIe_SDXPINN_toolkit.sh +++ b/rcPCIe_SDXPINN_toolkit.sh @@ -83,11 +83,35 @@ basic_55x_setup() { service mount-fix enable service init-overlay-watchdog enable service mount-fix start + echo "src/gz iamromulan-SDXPINN-repo https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/SDXPINN/opkg-feed" >> /etc/opkg/customfeeds.conf + rm /etc/opkg/distfeeds.conf + cd /etc/opkg/ + wget https://raw.githubusercontent.com/$GITUSER/$GITREPO/$GITTREE/etc/opkg/distfeeds.conf + cd / + wget https://raw.githubusercontent.com/$GITUSER/$GITREPO/$GITTREE/opkg-feed/iamromulan-SDXPINN-repo.key -O /tmp/iamromulan-SDXPINN-repo.key + opkg-key add /tmp/iamromulan-SDXPINN-repo.key opkg update opkg opkg install inotifywait inotifywatch service init-overlay-watchdog start echo -e "\e[92m" echo "Mount fix completed!" + echo "Visit https://github.com/iamromulan for more!" + echo "Proceeding with basic packages installation...." + echo -e "\e[0m" + opkg install atinout luci-app-atinout-mod + opkg install shadow-login + opkg install luci-app-ttyd + opkg install mc-skins + rm /etc/config/atcommands.user + rm /etc/config/atinout + rm /etc/config/ttyd + cd /etc/config/ + wget https://raw.githubusercontent.com/$GITUSER/$GITREPO/$GITTREE/etc/config/atcommands.user + wget https://raw.githubusercontent.com/$GITUSER/$GITREPO/$GITTREE/etc/config/ttyd + wget https://raw.githubusercontent.com/$GITUSER/$GITREPO/$GITTREE/etc/config/atinout + cd / + echo -e "\e[92m" + echo "Basic packages installed!" echo "Visit https://github.com/iamromulan for more!" echo -e "\e[0m" }