Ready to test

This commit is contained in:
Cameron Thompson
2024-09-22 17:23:25 -04:00
parent 5d92fdeadf
commit 812e096354
3 changed files with 24 additions and 50 deletions

View File

@@ -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'

View File

@@ -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"
}