├── .gitattributes ├── .gitignore ├── bwmon ├── Makefile └── files │ ├── etc │ ├── config │ │ └── bwmon │ └── init.d │ │ └── bwmon │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── bwmon │ ├── opt │ └── WRTbmon │ │ ├── cleanup.lua │ │ ├── process.sh │ │ └── wrtbwmon.sh │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── bwmon.lua │ └── model │ └── cbi │ └── bwmon │ └── bwmon.lua ├── dir860l ├── Makefile └── files │ ├── etc │ └── hotplug.d │ │ └── iface │ │ └── 99-dir860-led │ └── usr │ └── lib │ └── rooter │ └── special.sh ├── ext-buttons ├── Makefile └── files │ ├── etc │ ├── btnaction.sh │ ├── hotplug.d │ │ └── button │ │ │ ├── 00-button │ │ │ └── 10-buttonchk │ └── init.d │ │ └── buttons │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── buttons.lua │ └── model │ └── cbi │ └── buttons │ └── buttons.lua ├── ext-command ├── Makefile └── files │ └── usr │ └── lib │ ├── lua │ └── luci │ │ ├── controller │ │ └── commands.lua │ │ ├── model │ │ └── cbi │ │ │ └── commands.lua │ │ └── view │ │ ├── cmdedit.htm │ │ └── commands.htm │ └── scripts │ └── dummy ├── ext-extra ├── Makefile └── files │ ├── etc │ └── config │ │ └── schedule │ └── usr │ └── lib │ ├── lua │ └── luci │ │ ├── controller │ │ └── schedule.lua │ │ └── model │ │ └── cbi │ │ ├── admin_system │ │ └── cronnew.lua │ │ └── schedule.lua │ └── rooter │ └── luci │ ├── croncat.sh │ └── reboot.sh ├── ext-hdidle ├── Makefile └── files │ ├── etc │ └── uci-defaults │ │ └── 40_luci-hd_idle │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── hd_idle.lua │ └── model │ └── cbi │ └── hd_idle.lua ├── ext-p910nd ├── Makefile └── files │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── p910nd.lua │ └── model │ └── cbi │ └── p910nd.lua ├── ext-rooter-basic ├── Makefile └── files │ ├── etc │ ├── codename │ ├── config │ │ ├── guestwifi │ │ └── modem │ ├── hotplug.d │ │ ├── tty │ │ │ └── 30-3x │ │ └── usb │ │ │ └── 20-usb_mode │ ├── init.d │ │ ├── clear │ │ ├── rooter │ │ └── usbmode │ ├── rc.d │ │ ├── S88usbmode │ │ └── S99rooter │ ├── usb-mode.json │ └── usb-mode1.json │ ├── lib │ ├── netifd │ │ └── proto │ │ │ └── 3x.sh │ └── upgrade │ │ └── keep.d │ │ └── cronfiles │ └── usr │ ├── bin │ └── set_gpio │ └── lib │ ├── lua │ └── luci │ │ ├── controller │ │ ├── admin │ │ │ └── modem.lua │ │ ├── guestwifi.lua │ │ ├── poweroff.lua │ │ └── update.lua │ │ ├── model │ │ └── cbi │ │ │ ├── guestwifi.lua │ │ │ └── rooter │ │ │ ├── connection.lua │ │ │ ├── connmonitor.lua │ │ │ ├── customize.lua │ │ │ └── profiles.lua │ │ └── view │ │ ├── admin_system │ │ └── poweroff.htm │ │ └── rooter │ │ ├── custom.htm │ │ ├── debug.htm │ │ ├── log.htm │ │ ├── misc.htm │ │ ├── net_status.htm │ │ └── update.htm │ └── rooter │ ├── cdmafind.lua │ ├── common │ ├── gettype.sh │ ├── huaweidata.sh │ ├── lockchk.sh │ ├── modemchk.lua │ ├── otherdata.sh │ ├── phone.sh │ ├── processat.sh │ ├── sierradata.sh │ ├── ubloxdata.sh │ └── ztedata.sh │ ├── connect │ ├── conmon.sh │ ├── create_connect.sh │ ├── create_hostless.sh │ ├── disablemw3.sh │ ├── disconnect.sh │ ├── reconnect-ppp.sh │ └── reconnect.sh │ ├── gcom │ ├── auto.gcom │ ├── baseinfo.gcom │ ├── cellinfo.gcom │ ├── cgpaddr.gcom │ ├── connect-directip.gcom │ ├── connect-ncm.gcom │ ├── connect-ppp.gcom │ ├── curc.gcom │ ├── gcom-locked │ ├── gettype.gcom │ ├── huaweiinfo.gcom │ ├── lock-prov.gcom │ ├── otherinfo.gcom │ ├── reset.gcom │ ├── run-at.gcom │ ├── sendsms-at.gcom │ ├── setapn.gcom │ ├── setpin.gcom │ ├── sierrainfo.gcom │ ├── smschk.gcom │ ├── smswrite.gcom │ ├── ubloxinfo.gcom │ ├── ussd.gcom │ └── zteinfo.gcom │ ├── gpiomodel.lua │ ├── idown.lua │ ├── initialize.sh │ ├── log │ ├── at-logger │ ├── logger │ └── rotate.lua │ ├── logprint.sh │ ├── luci │ ├── atcmd.sh │ ├── celltype.sh │ ├── getlog.sh │ ├── guestwifi.sh │ ├── luaops.sh │ ├── modechge.sh │ ├── modemchge.sh │ ├── portchge.sh │ └── wifiradio.sh │ ├── mbimfind.lua │ ├── modeswitch.sh │ ├── portchge.sh │ ├── ppp │ └── create_ppp.sh │ ├── protofind.lua │ ├── pwrtoggle.sh │ ├── signal │ ├── basedata.sh │ ├── celldata.sh │ ├── celltype.lua │ ├── huaweihostless.sh │ ├── mccmnc.data │ ├── modemsignal.sh │ ├── otherhostless.sh │ ├── status.sh │ └── ztehostless.sh │ ├── sms │ └── check_sms.sh │ └── ussd.sh ├── ext-rooter4 ├── Makefile └── files │ ├── etc │ ├── config │ │ └── failover │ └── flash │ └── usr │ └── lib │ ├── lua │ └── luci │ │ ├── controller │ │ └── failover.lua │ │ ├── model │ │ └── cbi │ │ │ └── rooter │ │ │ └── failover.lua │ │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── failover.htm │ │ └── rooter │ │ └── failover_overview.htm │ └── rooter │ ├── connect │ └── failover.sh │ ├── luci │ └── failchk.sh │ └── removeipv6.sh ├── ext-rooter45 ├── Makefile └── files │ └── usr │ └── lib │ └── lua │ └── luci │ └── view │ ├── admin_status │ └── indexnew.htm │ └── rooter │ └── external.htm ├── ext-rooter8 ├── Makefile └── files │ ├── etc │ ├── config │ │ └── mwan3 │ ├── flash │ └── hotplug.d │ │ └── block │ │ ├── 20-mount │ │ └── 99-mount │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ ├── controller │ │ └── mwan3.lua │ │ ├── model │ │ └── cbi │ │ │ └── mwan │ │ │ └── interfaceconfig.lua │ │ └── view │ │ ├── admin_status │ │ └── indexnew.htm │ │ └── rooter │ │ └── external.htm │ └── sbin │ └── mwan3track ├── ext-rooterbcm ├── Makefile └── files │ ├── etc │ ├── config │ │ └── mwan3 │ ├── flash │ └── hotplug.d │ │ └── block │ │ ├── 20-mount │ │ └── 99-mount │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ ├── controller │ │ └── mwan3.lua │ │ ├── model │ │ └── cbi │ │ │ └── mwan │ │ │ └── interfaceconfig.lua │ │ └── view │ │ ├── admin_status │ │ └── indexnew.htm │ │ └── rooter │ │ └── external.htm │ └── sbin │ └── mwan3track ├── ext-rooterbcm8 ├── Makefile └── files │ ├── etc │ ├── config │ │ └── mwan3 │ ├── flash │ └── hotplug.d │ │ └── block │ │ ├── 20-mount │ │ └── 99-mount │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ ├── controller │ │ └── mwan3.lua │ │ ├── model │ │ └── cbi │ │ │ └── mwan │ │ │ └── interfaceconfig.lua │ │ └── view │ │ ├── admin_status │ │ └── indexnew.htm │ │ └── rooter │ │ └── external.htm │ └── sbin │ └── mwan3track ├── ext-rooterlite ├── Makefile └── files │ ├── etc │ ├── config │ │ └── mwan3 │ └── flash │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ ├── controller │ │ └── mwan3.lua │ │ ├── model │ │ └── cbi │ │ │ └── mwan │ │ │ └── interfaceconfig.lua │ │ └── view │ │ ├── admin_status │ │ └── indexnew.htm │ │ └── rooter │ │ └── external.htm │ └── sbin │ └── mwan3track ├── ext-samba ├── Makefile └── files │ └── etc │ └── hotplug.d │ └── block │ └── 30-mount ├── ext-sms ├── Makefile └── files │ └── usr │ └── lib │ ├── lua │ └── luci │ │ ├── controller │ │ └── sms.lua │ │ └── view │ │ └── rooter │ │ └── sms.htm │ └── sms │ ├── delsms.sh │ ├── pack7bit.lua │ ├── processsms │ ├── sendsms.lua │ ├── sendsms.sh │ ├── smsout.lua │ ├── smsout.sh │ ├── smsread.lua │ ├── sys2sms.lua │ ├── sys2sms.sh │ ├── toggle.sh │ └── utf8togsm.lua ├── ext-umount ├── Makefile └── files │ ├── etc │ ├── config │ │ └── umount │ └── umount │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── umount.lua │ └── model │ └── cbi │ └── umount.lua ├── ext-wifi └── Makefile ├── luci-app-dnsmasq-ipset ├── Makefile └── files │ ├── etc │ ├── config │ │ └── dnsmasq-ipset │ └── init.d │ │ └── dnsmasq-ipset │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── dnsmasq-ipset.lua │ └── model │ └── cbi │ └── dnsmasq-ipset.lua ├── luci-app-hotspot ├── Makefile └── files │ ├── etc │ ├── config │ │ └── travelmate │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-travelmate-iface │ └── init.d │ │ ├── travelmate │ │ └── zhot │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── hotspot │ └── usr │ └── lib │ ├── hotspot │ ├── band.sh │ ├── copyhot.sh │ ├── dis_hot.sh │ ├── enable.sh │ ├── getssid.sh │ ├── inrange.sh │ ├── manual.sh │ ├── mode.sh │ └── travelmate.sh │ └── lua │ └── luci │ ├── controller │ └── hotspot.lua │ └── view │ └── hotspot │ └── hotspot.htm ├── luci-app-rooterddns ├── Makefile └── files │ ├── etc │ └── uci-defaults │ │ └── 40_luci-ddns │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── ddns.lua │ ├── model │ └── cbi │ │ └── ddns │ │ ├── detail.lua │ │ ├── global.lua │ │ ├── hints.lua │ │ └── overview.lua │ ├── tools │ └── ddns.lua │ └── view │ ├── admin_status │ └── index │ │ └── ddns.htm │ └── ddns │ ├── detail_logview.htm │ ├── detail_lvalue.htm │ ├── detail_value.htm │ ├── global_value.htm │ ├── overview_doubleline.htm │ ├── overview_enabled.htm │ ├── overview_startstop.htm │ ├── overview_status.htm │ └── system_status.htm ├── luci-app-rootervpn ├── Makefile └── files │ ├── etc │ ├── config │ │ └── rooter_recipes │ ├── init.d │ │ └── rootervpn │ └── openvpn │ │ ├── airvpn │ │ ├── ca.crt │ │ ├── client.crt │ │ ├── client.key │ │ └── ta.key │ │ ├── mullvad │ │ ├── mullvad_ca.crt │ │ └── mullvad_crl.pem │ │ ├── pia │ │ ├── ca.rsa.2048.crt │ │ └── crl.rsa.2048.pem │ │ ├── placeholder │ │ └── placeholder.file │ │ └── windscribe │ │ ├── ca.crt │ │ └── ta.key │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── rootervpn │ └── usr │ ├── bin │ └── ovpn-userpass │ └── lib │ ├── easyrsa │ ├── dns.sh │ ├── firewall.sh │ ├── generate.sh │ ├── openvpn │ └── stop.sh │ └── lua │ └── luci │ ├── controller │ └── openvpn.lua │ ├── model │ └── cbi │ │ ├── easyrsa.lua │ │ ├── openvpn-advanced.lua │ │ ├── openvpn-basic.lua │ │ └── openvpn.lua │ └── view │ ├── easyrsa │ └── easyrsa.htm │ └── openvpn │ ├── cbi-select-input-add.htm │ └── pageswitch.htm ├── luci-proto-3x ├── Makefile └── files │ └── usr │ └── lib │ └── lua │ └── luci │ └── model │ ├── cbi │ └── admin_network │ │ └── proto_3x.lua │ └── network │ └── proto_3x.lua ├── luci-proto-mbim ├── Makefile └── files │ └── usr │ └── lib │ └── lua │ └── luci │ └── model │ ├── cbi │ └── admin_network │ │ └── proto_mbim.lua │ └── network │ └── proto_mbim.lua ├── luci-theme-darkmatter ├── Makefile └── files │ ├── htdocs │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── DIN.eot │ │ ├── DIN.otf │ │ ├── DIN.svg │ │ ├── DIN.ttf │ │ ├── DIN.woff │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ └── logo.png │ └── templates │ ├── footer.htm │ └── header.htm ├── luci-theme-rooter ├── Makefile └── files │ ├── htdocs │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ └── logo.png │ └── templates │ ├── footer.htm │ └── header.htm ├── rmbim ├── .svn │ ├── entries │ └── text-base │ │ └── Makefile.svn-base ├── Makefile └── files │ ├── lib │ └── netifd │ │ └── proto │ │ └── mbim.sh │ └── usr │ └── lib │ └── rooter │ └── mbim │ ├── connectmbim.sh │ ├── mbimdata.sh │ └── monitor.sh └── rqmi ├── .svn ├── entries └── text-base │ └── Makefile.svn-base ├── Makefile ├── Makefile-4meg └── files └── usr └── lib └── rooter └── qmi └── connectqmi.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/.gitignore -------------------------------------------------------------------------------- /bwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/Makefile -------------------------------------------------------------------------------- /bwmon/files/etc/config/bwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/etc/config/bwmon -------------------------------------------------------------------------------- /bwmon/files/etc/init.d/bwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/etc/init.d/bwmon -------------------------------------------------------------------------------- /bwmon/files/lib/upgrade/keep.d/bwmon: -------------------------------------------------------------------------------- 1 | /opt/WRTbmon/data/ 2 | -------------------------------------------------------------------------------- /bwmon/files/opt/WRTbmon/cleanup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/opt/WRTbmon/cleanup.lua -------------------------------------------------------------------------------- /bwmon/files/opt/WRTbmon/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/opt/WRTbmon/process.sh -------------------------------------------------------------------------------- /bwmon/files/opt/WRTbmon/wrtbwmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/opt/WRTbmon/wrtbwmon.sh -------------------------------------------------------------------------------- /bwmon/files/usr/lib/lua/luci/controller/bwmon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/usr/lib/lua/luci/controller/bwmon.lua -------------------------------------------------------------------------------- /bwmon/files/usr/lib/lua/luci/model/cbi/bwmon/bwmon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/bwmon/files/usr/lib/lua/luci/model/cbi/bwmon/bwmon.lua -------------------------------------------------------------------------------- /dir860l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/dir860l/Makefile -------------------------------------------------------------------------------- /dir860l/files/etc/hotplug.d/iface/99-dir860-led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/dir860l/files/etc/hotplug.d/iface/99-dir860-led -------------------------------------------------------------------------------- /dir860l/files/usr/lib/rooter/special.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/dir860l/files/usr/lib/rooter/special.sh -------------------------------------------------------------------------------- /ext-buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/Makefile -------------------------------------------------------------------------------- /ext-buttons/files/etc/btnaction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/etc/btnaction.sh -------------------------------------------------------------------------------- /ext-buttons/files/etc/hotplug.d/button/00-button: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/etc/hotplug.d/button/00-button -------------------------------------------------------------------------------- /ext-buttons/files/etc/hotplug.d/button/10-buttonchk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/etc/hotplug.d/button/10-buttonchk -------------------------------------------------------------------------------- /ext-buttons/files/etc/init.d/buttons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/etc/init.d/buttons -------------------------------------------------------------------------------- /ext-buttons/files/usr/lib/lua/luci/controller/buttons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/usr/lib/lua/luci/controller/buttons.lua -------------------------------------------------------------------------------- /ext-buttons/files/usr/lib/lua/luci/model/cbi/buttons/buttons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-buttons/files/usr/lib/lua/luci/model/cbi/buttons/buttons.lua -------------------------------------------------------------------------------- /ext-command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-command/Makefile -------------------------------------------------------------------------------- /ext-command/files/usr/lib/lua/luci/controller/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-command/files/usr/lib/lua/luci/controller/commands.lua -------------------------------------------------------------------------------- /ext-command/files/usr/lib/lua/luci/model/cbi/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-command/files/usr/lib/lua/luci/model/cbi/commands.lua -------------------------------------------------------------------------------- /ext-command/files/usr/lib/lua/luci/view/cmdedit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-command/files/usr/lib/lua/luci/view/cmdedit.htm -------------------------------------------------------------------------------- /ext-command/files/usr/lib/lua/luci/view/commands.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-command/files/usr/lib/lua/luci/view/commands.htm -------------------------------------------------------------------------------- /ext-command/files/usr/lib/scripts/dummy: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /ext-extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/Makefile -------------------------------------------------------------------------------- /ext-extra/files/etc/config/schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/etc/config/schedule -------------------------------------------------------------------------------- /ext-extra/files/usr/lib/lua/luci/controller/schedule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/usr/lib/lua/luci/controller/schedule.lua -------------------------------------------------------------------------------- /ext-extra/files/usr/lib/lua/luci/model/cbi/admin_system/cronnew.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/usr/lib/lua/luci/model/cbi/admin_system/cronnew.lua -------------------------------------------------------------------------------- /ext-extra/files/usr/lib/lua/luci/model/cbi/schedule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/usr/lib/lua/luci/model/cbi/schedule.lua -------------------------------------------------------------------------------- /ext-extra/files/usr/lib/rooter/luci/croncat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/usr/lib/rooter/luci/croncat.sh -------------------------------------------------------------------------------- /ext-extra/files/usr/lib/rooter/luci/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-extra/files/usr/lib/rooter/luci/reboot.sh -------------------------------------------------------------------------------- /ext-hdidle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-hdidle/Makefile -------------------------------------------------------------------------------- /ext-hdidle/files/etc/uci-defaults/40_luci-hd_idle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-hdidle/files/etc/uci-defaults/40_luci-hd_idle -------------------------------------------------------------------------------- /ext-hdidle/files/usr/lib/lua/luci/controller/hd_idle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-hdidle/files/usr/lib/lua/luci/controller/hd_idle.lua -------------------------------------------------------------------------------- /ext-hdidle/files/usr/lib/lua/luci/model/cbi/hd_idle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-hdidle/files/usr/lib/lua/luci/model/cbi/hd_idle.lua -------------------------------------------------------------------------------- /ext-p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-p910nd/Makefile -------------------------------------------------------------------------------- /ext-p910nd/files/usr/lib/lua/luci/controller/p910nd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-p910nd/files/usr/lib/lua/luci/controller/p910nd.lua -------------------------------------------------------------------------------- /ext-p910nd/files/usr/lib/lua/luci/model/cbi/p910nd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-p910nd/files/usr/lib/lua/luci/model/cbi/p910nd.lua -------------------------------------------------------------------------------- /ext-rooter-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/Makefile -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/codename: -------------------------------------------------------------------------------- 1 | CODENAME="GoldenOrb-Version-1" -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/config/guestwifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/config/guestwifi -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/config/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/config/modem -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/hotplug.d/tty/30-3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/hotplug.d/tty/30-3x -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/hotplug.d/usb/20-usb_mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/lib/rooter/modeswitch.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/init.d/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/init.d/clear -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/init.d/rooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/init.d/rooter -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/init.d/usbmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/init.d/usbmode -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/rc.d/S88usbmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/rc.d/S88usbmode -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/rc.d/S99rooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/rc.d/S99rooter -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/usb-mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/usb-mode.json -------------------------------------------------------------------------------- /ext-rooter-basic/files/etc/usb-mode1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/etc/usb-mode1.json -------------------------------------------------------------------------------- /ext-rooter-basic/files/lib/netifd/proto/3x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/lib/netifd/proto/3x.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/lib/upgrade/keep.d/cronfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/lib/upgrade/keep.d/cronfiles -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/bin/set_gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/bin/set_gpio -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/controller/admin/modem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/controller/admin/modem.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/controller/guestwifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/controller/guestwifi.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/controller/poweroff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/controller/poweroff.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/controller/update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/controller/update.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/guestwifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/guestwifi.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/connection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/connection.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/connmonitor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/connmonitor.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/customize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/customize.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/profiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/model/cbi/rooter/profiles.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/admin_system/poweroff.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/admin_system/poweroff.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/custom.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/custom.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/debug.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/log.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/misc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/misc.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/net_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/net_status.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/lua/luci/view/rooter/update.htm -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/cdmafind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/cdmafind.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/gettype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/gettype.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/huaweidata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/huaweidata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/lockchk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/lockchk.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/modemchk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/modemchk.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/otherdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/otherdata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/phone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/phone.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/processat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/processat.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/sierradata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/sierradata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/ubloxdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/ubloxdata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/common/ztedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/common/ztedata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/conmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/conmon.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/create_connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/create_connect.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/create_hostless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/create_hostless.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/disablemw3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/disablemw3.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/disconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/disconnect.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/reconnect-ppp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/reconnect-ppp.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/connect/reconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/connect/reconnect.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/auto.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/auto.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/baseinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/baseinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/cellinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/cellinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/cgpaddr.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/cgpaddr.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/connect-directip.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/connect-directip.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/connect-ncm.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/connect-ncm.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/connect-ppp.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/connect-ppp.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/curc.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/curc.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/gcom-locked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/gcom-locked -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/gettype.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/gettype.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/huaweiinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/huaweiinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/lock-prov.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/lock-prov.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/otherinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/otherinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/reset.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/reset.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/run-at.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/run-at.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/sendsms-at.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/sendsms-at.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/setapn.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/setapn.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/setpin.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/setpin.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/sierrainfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/sierrainfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/smschk.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/smschk.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/smswrite.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/smswrite.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/ubloxinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/ubloxinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/ussd.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/ussd.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gcom/zteinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gcom/zteinfo.gcom -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/gpiomodel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/gpiomodel.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/idown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/idown.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/initialize.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/log/at-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/log/at-logger -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/log/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/log/logger -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/log/rotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/log/rotate.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/logprint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | 4 | logger -t "Log Print " "$@" 5 | exit 0 6 | -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/atcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/atcmd.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/celltype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/celltype.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/getlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/getlog.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/guestwifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/guestwifi.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/luaops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/luaops.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/modechge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/modechge.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/modemchge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/modemchge.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/portchge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/portchge.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/luci/wifiradio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/luci/wifiradio.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/mbimfind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/mbimfind.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/modeswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/modeswitch.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/portchge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/portchge.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/ppp/create_ppp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/ppp/create_ppp.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/protofind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/protofind.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/pwrtoggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/pwrtoggle.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/basedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/basedata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/celldata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/celldata.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/celltype.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/celltype.lua -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/huaweihostless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/huaweihostless.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/mccmnc.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/mccmnc.data -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/modemsignal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/modemsignal.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/otherhostless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/otherhostless.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/status.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/signal/ztehostless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/signal/ztehostless.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/sms/check_sms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/sms/check_sms.sh -------------------------------------------------------------------------------- /ext-rooter-basic/files/usr/lib/rooter/ussd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter-basic/files/usr/lib/rooter/ussd.sh -------------------------------------------------------------------------------- /ext-rooter4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/Makefile -------------------------------------------------------------------------------- /ext-rooter4/files/etc/config/failover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/etc/config/failover -------------------------------------------------------------------------------- /ext-rooter4/files/etc/flash: -------------------------------------------------------------------------------- 1 | FLASH="4" 2 | -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/lua/luci/controller/failover.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/lua/luci/controller/failover.lua -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/lua/luci/model/cbi/rooter/failover.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/lua/luci/model/cbi/rooter/failover.lua -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/lua/luci/view/admin_status/index/failover.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/lua/luci/view/admin_status/index/failover.htm -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/lua/luci/view/rooter/failover_overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/lua/luci/view/rooter/failover_overview.htm -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/rooter/connect/failover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/rooter/connect/failover.sh -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/rooter/luci/failchk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/rooter/luci/failchk.sh -------------------------------------------------------------------------------- /ext-rooter4/files/usr/lib/rooter/removeipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter4/files/usr/lib/rooter/removeipv6.sh -------------------------------------------------------------------------------- /ext-rooter45/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter45/Makefile -------------------------------------------------------------------------------- /ext-rooter45/files/usr/lib/lua/luci/view/admin_status/indexnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter45/files/usr/lib/lua/luci/view/admin_status/indexnew.htm -------------------------------------------------------------------------------- /ext-rooter45/files/usr/lib/lua/luci/view/rooter/external.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter45/files/usr/lib/lua/luci/view/rooter/external.htm -------------------------------------------------------------------------------- /ext-rooter8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/Makefile -------------------------------------------------------------------------------- /ext-rooter8/files/etc/config/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/etc/config/mwan3 -------------------------------------------------------------------------------- /ext-rooter8/files/etc/flash: -------------------------------------------------------------------------------- 1 | FLASH="8" 2 | -------------------------------------------------------------------------------- /ext-rooter8/files/etc/hotplug.d/block/20-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/etc/hotplug.d/block/20-mount -------------------------------------------------------------------------------- /ext-rooter8/files/etc/hotplug.d/block/99-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/etc/hotplug.d/block/99-mount -------------------------------------------------------------------------------- /ext-rooter8/files/usr/lib/lua/luci/controller/mwan3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/usr/lib/lua/luci/controller/mwan3.lua -------------------------------------------------------------------------------- /ext-rooter8/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua -------------------------------------------------------------------------------- /ext-rooter8/files/usr/lib/lua/luci/view/admin_status/indexnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/usr/lib/lua/luci/view/admin_status/indexnew.htm -------------------------------------------------------------------------------- /ext-rooter8/files/usr/lib/lua/luci/view/rooter/external.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/usr/lib/lua/luci/view/rooter/external.htm -------------------------------------------------------------------------------- /ext-rooter8/files/usr/sbin/mwan3track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooter8/files/usr/sbin/mwan3track -------------------------------------------------------------------------------- /ext-rooterbcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/Makefile -------------------------------------------------------------------------------- /ext-rooterbcm/files/etc/config/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/etc/config/mwan3 -------------------------------------------------------------------------------- /ext-rooterbcm/files/etc/flash: -------------------------------------------------------------------------------- 1 | FLASH="8" 2 | -------------------------------------------------------------------------------- /ext-rooterbcm/files/etc/hotplug.d/block/20-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/etc/hotplug.d/block/20-mount -------------------------------------------------------------------------------- /ext-rooterbcm/files/etc/hotplug.d/block/99-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/etc/hotplug.d/block/99-mount -------------------------------------------------------------------------------- /ext-rooterbcm/files/usr/lib/lua/luci/controller/mwan3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/usr/lib/lua/luci/controller/mwan3.lua -------------------------------------------------------------------------------- /ext-rooterbcm/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua -------------------------------------------------------------------------------- /ext-rooterbcm/files/usr/lib/lua/luci/view/admin_status/indexnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/usr/lib/lua/luci/view/admin_status/indexnew.htm -------------------------------------------------------------------------------- /ext-rooterbcm/files/usr/lib/lua/luci/view/rooter/external.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/usr/lib/lua/luci/view/rooter/external.htm -------------------------------------------------------------------------------- /ext-rooterbcm/files/usr/sbin/mwan3track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm/files/usr/sbin/mwan3track -------------------------------------------------------------------------------- /ext-rooterbcm8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/Makefile -------------------------------------------------------------------------------- /ext-rooterbcm8/files/etc/config/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/etc/config/mwan3 -------------------------------------------------------------------------------- /ext-rooterbcm8/files/etc/flash: -------------------------------------------------------------------------------- 1 | FLASH="8" 2 | -------------------------------------------------------------------------------- /ext-rooterbcm8/files/etc/hotplug.d/block/20-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/etc/hotplug.d/block/20-mount -------------------------------------------------------------------------------- /ext-rooterbcm8/files/etc/hotplug.d/block/99-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/etc/hotplug.d/block/99-mount -------------------------------------------------------------------------------- /ext-rooterbcm8/files/usr/lib/lua/luci/controller/mwan3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/usr/lib/lua/luci/controller/mwan3.lua -------------------------------------------------------------------------------- /ext-rooterbcm8/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua -------------------------------------------------------------------------------- /ext-rooterbcm8/files/usr/lib/lua/luci/view/admin_status/indexnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/usr/lib/lua/luci/view/admin_status/indexnew.htm -------------------------------------------------------------------------------- /ext-rooterbcm8/files/usr/lib/lua/luci/view/rooter/external.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/usr/lib/lua/luci/view/rooter/external.htm -------------------------------------------------------------------------------- /ext-rooterbcm8/files/usr/sbin/mwan3track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterbcm8/files/usr/sbin/mwan3track -------------------------------------------------------------------------------- /ext-rooterlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/Makefile -------------------------------------------------------------------------------- /ext-rooterlite/files/etc/config/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/etc/config/mwan3 -------------------------------------------------------------------------------- /ext-rooterlite/files/etc/flash: -------------------------------------------------------------------------------- 1 | FLASH="8" 2 | -------------------------------------------------------------------------------- /ext-rooterlite/files/usr/lib/lua/luci/controller/mwan3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/usr/lib/lua/luci/controller/mwan3.lua -------------------------------------------------------------------------------- /ext-rooterlite/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/usr/lib/lua/luci/model/cbi/mwan/interfaceconfig.lua -------------------------------------------------------------------------------- /ext-rooterlite/files/usr/lib/lua/luci/view/admin_status/indexnew.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/usr/lib/lua/luci/view/admin_status/indexnew.htm -------------------------------------------------------------------------------- /ext-rooterlite/files/usr/lib/lua/luci/view/rooter/external.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/usr/lib/lua/luci/view/rooter/external.htm -------------------------------------------------------------------------------- /ext-rooterlite/files/usr/sbin/mwan3track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-rooterlite/files/usr/sbin/mwan3track -------------------------------------------------------------------------------- /ext-samba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-samba/Makefile -------------------------------------------------------------------------------- /ext-samba/files/etc/hotplug.d/block/30-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-samba/files/etc/hotplug.d/block/30-mount -------------------------------------------------------------------------------- /ext-sms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/Makefile -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/lua/luci/controller/sms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/lua/luci/controller/sms.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/lua/luci/view/rooter/sms.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/lua/luci/view/rooter/sms.htm -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/delsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/delsms.sh -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/pack7bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/pack7bit.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/processsms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/processsms -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/sendsms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/sendsms.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/sendsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/sendsms.sh -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/smsout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/smsout.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/smsout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/smsout.sh -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/smsread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/smsread.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/sys2sms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/sys2sms.lua -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/sys2sms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/sys2sms.sh -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/toggle.sh -------------------------------------------------------------------------------- /ext-sms/files/usr/lib/sms/utf8togsm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-sms/files/usr/lib/sms/utf8togsm.lua -------------------------------------------------------------------------------- /ext-umount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-umount/Makefile -------------------------------------------------------------------------------- /ext-umount/files/etc/config/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-umount/files/etc/config/umount -------------------------------------------------------------------------------- /ext-umount/files/etc/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-umount/files/etc/umount -------------------------------------------------------------------------------- /ext-umount/files/usr/lib/lua/luci/controller/umount.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-umount/files/usr/lib/lua/luci/controller/umount.lua -------------------------------------------------------------------------------- /ext-umount/files/usr/lib/lua/luci/model/cbi/umount.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-umount/files/usr/lib/lua/luci/model/cbi/umount.lua -------------------------------------------------------------------------------- /ext-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/ext-wifi/Makefile -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-dnsmasq-ipset/Makefile -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/files/etc/config/dnsmasq-ipset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-dnsmasq-ipset/files/etc/config/dnsmasq-ipset -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/files/etc/init.d/dnsmasq-ipset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-dnsmasq-ipset/files/etc/init.d/dnsmasq-ipset -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/files/usr/lib/lua/luci/controller/dnsmasq-ipset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-dnsmasq-ipset/files/usr/lib/lua/luci/controller/dnsmasq-ipset.lua -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/files/usr/lib/lua/luci/model/cbi/dnsmasq-ipset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-dnsmasq-ipset/files/usr/lib/lua/luci/model/cbi/dnsmasq-ipset.lua -------------------------------------------------------------------------------- /luci-app-hotspot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/Makefile -------------------------------------------------------------------------------- /luci-app-hotspot/files/etc/config/travelmate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/etc/config/travelmate -------------------------------------------------------------------------------- /luci-app-hotspot/files/etc/hotplug.d/iface/99-travelmate-iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/etc/hotplug.d/iface/99-travelmate-iface -------------------------------------------------------------------------------- /luci-app-hotspot/files/etc/init.d/travelmate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/etc/init.d/travelmate -------------------------------------------------------------------------------- /luci-app-hotspot/files/etc/init.d/zhot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/etc/init.d/zhot -------------------------------------------------------------------------------- /luci-app-hotspot/files/lib/upgrade/keep.d/hotspot: -------------------------------------------------------------------------------- 1 | /etc/hotspot 2 | -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/band.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/band.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/copyhot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/copyhot.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/dis_hot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/dis_hot.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/enable.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/getssid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/getssid.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/inrange.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/inrange.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/manual.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/mode.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/hotspot/travelmate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/hotspot/travelmate.sh -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/lua/luci/controller/hotspot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/lua/luci/controller/hotspot.lua -------------------------------------------------------------------------------- /luci-app-hotspot/files/usr/lib/lua/luci/view/hotspot/hotspot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-hotspot/files/usr/lib/lua/luci/view/hotspot/hotspot.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/Makefile -------------------------------------------------------------------------------- /luci-app-rooterddns/files/etc/uci-defaults/40_luci-ddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/etc/uci-defaults/40_luci-ddns -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/controller/ddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/controller/ddns.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/detail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/detail.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/global.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/hints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/hints.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/overview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/model/cbi/ddns/overview.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/tools/ddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/tools/ddns.lua -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/admin_status/index/ddns.htm: -------------------------------------------------------------------------------- 1 | <%+ddns/system_status%> 2 | -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_logview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_logview.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_lvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_lvalue.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_value.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/detail_value.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/global_value.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/global_value.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_doubleline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_doubleline.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_enabled.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_enabled.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_startstop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_startstop.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/overview_status.htm -------------------------------------------------------------------------------- /luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/system_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rooterddns/files/usr/lib/lua/luci/view/ddns/system_status.htm -------------------------------------------------------------------------------- /luci-app-rootervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/Makefile -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/config/rooter_recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/config/rooter_recipes -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/init.d/rootervpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/init.d/rootervpn -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/airvpn/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/airvpn/ca.crt -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/airvpn/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/airvpn/client.crt -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/airvpn/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/airvpn/client.key -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/airvpn/ta.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/airvpn/ta.key -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/mullvad/mullvad_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/mullvad/mullvad_ca.crt -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/mullvad/mullvad_crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/mullvad/mullvad_crl.pem -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/pia/ca.rsa.2048.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/pia/ca.rsa.2048.crt -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/pia/crl.rsa.2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/pia/crl.rsa.2048.pem -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/placeholder/placeholder.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/placeholder/placeholder.file -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/windscribe/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/windscribe/ca.crt -------------------------------------------------------------------------------- /luci-app-rootervpn/files/etc/openvpn/windscribe/ta.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/etc/openvpn/windscribe/ta.key -------------------------------------------------------------------------------- /luci-app-rootervpn/files/lib/upgrade/keep.d/rootervpn: -------------------------------------------------------------------------------- 1 | /etc/openvpn/* 2 | -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/bin/ovpn-userpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/bin/ovpn-userpass -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/easyrsa/dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/easyrsa/dns.sh -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/easyrsa/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/easyrsa/firewall.sh -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/easyrsa/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/easyrsa/generate.sh -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/easyrsa/openvpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/easyrsa/openvpn -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/easyrsa/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/easyrsa/stop.sh -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/controller/openvpn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/controller/openvpn.lua -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/easyrsa.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/easyrsa.lua -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn-advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn-advanced.lua -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn-basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn-basic.lua -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/model/cbi/openvpn.lua -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/view/easyrsa/easyrsa.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/view/easyrsa/easyrsa.htm -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/view/openvpn/cbi-select-input-add.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/view/openvpn/cbi-select-input-add.htm -------------------------------------------------------------------------------- /luci-app-rootervpn/files/usr/lib/lua/luci/view/openvpn/pageswitch.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-app-rootervpn/files/usr/lib/lua/luci/view/openvpn/pageswitch.htm -------------------------------------------------------------------------------- /luci-proto-3x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-3x/Makefile -------------------------------------------------------------------------------- /luci-proto-3x/files/usr/lib/lua/luci/model/cbi/admin_network/proto_3x.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-3x/files/usr/lib/lua/luci/model/cbi/admin_network/proto_3x.lua -------------------------------------------------------------------------------- /luci-proto-3x/files/usr/lib/lua/luci/model/network/proto_3x.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-3x/files/usr/lib/lua/luci/model/network/proto_3x.lua -------------------------------------------------------------------------------- /luci-proto-mbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-mbim/Makefile -------------------------------------------------------------------------------- /luci-proto-mbim/files/usr/lib/lua/luci/model/cbi/admin_network/proto_mbim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-mbim/files/usr/lib/lua/luci/model/cbi/admin_network/proto_mbim.lua -------------------------------------------------------------------------------- /luci-proto-mbim/files/usr/lib/lua/luci/model/network/proto_mbim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-proto-mbim/files/usr/lib/lua/luci/model/network/proto_mbim.lua -------------------------------------------------------------------------------- /luci-theme-darkmatter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/Makefile -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/css/style.css -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/favicon.ico -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/DIN.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/DIN.eot -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/DIN.otf -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/DIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/DIN.svg -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/DIN.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/DIN.ttf -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/DIN.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/DIN.woff -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/font.eot -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/font.svg -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/font.ttf -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/fonts/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/fonts/font.woff -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/js/jquery.min.js -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/js/script.js -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/htdocs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/htdocs/logo.png -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/templates/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/templates/footer.htm -------------------------------------------------------------------------------- /luci-theme-darkmatter/files/templates/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-darkmatter/files/templates/header.htm -------------------------------------------------------------------------------- /luci-theme-rooter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/Makefile -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/css/style.css -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/favicon.ico -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/fonts/font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/fonts/font.eot -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/fonts/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/fonts/font.svg -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/fonts/font.ttf -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/fonts/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/fonts/font.woff -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/js/jquery.min.js -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/js/script.js -------------------------------------------------------------------------------- /luci-theme-rooter/files/htdocs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/htdocs/logo.png -------------------------------------------------------------------------------- /luci-theme-rooter/files/templates/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/templates/footer.htm -------------------------------------------------------------------------------- /luci-theme-rooter/files/templates/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/luci-theme-rooter/files/templates/header.htm -------------------------------------------------------------------------------- /rmbim/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/.svn/entries -------------------------------------------------------------------------------- /rmbim/.svn/text-base/Makefile.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/.svn/text-base/Makefile.svn-base -------------------------------------------------------------------------------- /rmbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/Makefile -------------------------------------------------------------------------------- /rmbim/files/lib/netifd/proto/mbim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/files/lib/netifd/proto/mbim.sh -------------------------------------------------------------------------------- /rmbim/files/usr/lib/rooter/mbim/connectmbim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/files/usr/lib/rooter/mbim/connectmbim.sh -------------------------------------------------------------------------------- /rmbim/files/usr/lib/rooter/mbim/mbimdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/files/usr/lib/rooter/mbim/mbimdata.sh -------------------------------------------------------------------------------- /rmbim/files/usr/lib/rooter/mbim/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rmbim/files/usr/lib/rooter/mbim/monitor.sh -------------------------------------------------------------------------------- /rqmi/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rqmi/.svn/entries -------------------------------------------------------------------------------- /rqmi/.svn/text-base/Makefile.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rqmi/.svn/text-base/Makefile.svn-base -------------------------------------------------------------------------------- /rqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rqmi/Makefile -------------------------------------------------------------------------------- /rqmi/Makefile-4meg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rqmi/Makefile-4meg -------------------------------------------------------------------------------- /rqmi/files/usr/lib/rooter/qmi/connectqmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROOterDairyman/Goldenorb/HEAD/rqmi/files/usr/lib/rooter/qmi/connectqmi.sh --------------------------------------------------------------------------------