├── README.md ├── fibocom-dial ├── Makefile └── src │ ├── GobiNetCM.c │ ├── MPQCTL.h │ ├── MPQMI.h │ ├── MPQMUX.c │ ├── MPQMUX.h │ ├── Makefile │ ├── QMIThread.c │ ├── QMIThread.h │ ├── QmiWwanCM.c │ ├── default.script │ ├── fibo_qmimsg_server.c │ ├── libmnl │ ├── README │ ├── attr.c │ ├── callback.c │ ├── dhcp │ │ ├── dhcp.h │ │ ├── dhcpclient.c │ │ ├── dhcpmsg.c │ │ ├── dhcpmsg.h │ │ ├── packet.c │ │ └── packet.h │ ├── ifutils.c │ ├── ifutils.h │ ├── libmnl.h │ ├── nlmsg.c │ └── socket.c │ ├── main.c │ ├── multi-pdn-manager.c │ ├── multi-pdn.ini │ ├── qmap_bridge_mode.c │ ├── query_pcie_mode.c │ ├── query_pcie_mode.h │ ├── udhcpc.c │ ├── udhcpc_netlink.c │ ├── util.c │ └── util.h ├── fibocom_MHI ├── Makefile └── src │ ├── Kconfig │ ├── Makefile │ ├── controllers │ ├── mhi_qcom.c │ ├── mhi_qcom.h │ ├── mhi_qcom_arm.h │ └── mhi_qcom_x86.h │ ├── core │ ├── mhi.h │ ├── mhi_boot.c │ ├── mhi_common.h │ ├── mhi_dtr.c │ ├── mhi_init.c │ ├── mhi_internal.h │ ├── mhi_main.c │ └── mhi_pm.c │ └── devices │ ├── mhi_netdev.c │ ├── mhi_netdev.h │ └── mhi_uci.c ├── fibocom_QMI_WWAN ├── Makefile └── src │ ├── Makefile │ └── qmi_wwan_f.c ├── luci-app-cpe ├── Makefile ├── luasrc │ ├── controller │ │ └── admin │ │ │ └── cpe.lua │ ├── model │ │ └── cbi │ │ │ └── cpe │ │ │ └── modem.lua │ └── view │ │ └── cpe │ │ ├── at.htm │ │ └── net_status.htm ├── po │ ├── zh-cn │ │ └── modem.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── modem │ ├── init.d │ │ ├── cpeinit │ │ └── modem │ └── uci-defaults │ │ └── luci-modem │ └── usr │ ├── bin │ ├── bmask128 │ ├── chan2band.sh │ ├── encodemask │ ├── jkillall │ ├── rsrp2rssi │ └── set_gpio │ └── share │ └── cpe │ ├── Fibocom │ ├── Quectel │ ├── SIMCOM │ ├── atcmd.sh │ ├── cpedebug │ ├── delatcmd.sh │ └── rssi ├── luci-app-gobinetmodem ├── Makefile ├── luasrc │ ├── controller │ │ └── gobinetmodem.lua │ └── model │ │ └── cbi │ │ └── gobinetmodem.lua ├── po │ └── zh-cn │ │ └── usbmodem.po └── root │ └── etc │ ├── config │ └── gobinetmodem │ ├── init.d │ └── gobinetmodem │ └── uci-defaults │ └── luci-gobinetmodem ├── luci-app-hypermodem ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── hypermodem.lua │ └── model │ │ └── cbi │ │ └── hypermodem.lua ├── po │ └── zh-cn │ │ └── hypermodem.po └── root │ └── etc │ ├── config │ └── hypermodem │ ├── init.d │ └── hypermodem │ └── uci-defaults │ └── luci-hypermodem ├── luci-app-modem ├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── resources │ │ └── icons │ │ ├── sms.png │ │ └── sms2.png ├── luasrc │ ├── controller │ │ └── modem.lua │ ├── model │ │ └── cbi │ │ │ └── modem │ │ │ ├── dial_config.lua │ │ │ ├── dial_overview.lua │ │ │ ├── modem_config.lua │ │ │ ├── plugin_config.lua │ │ │ └── quick_commands_config.lua │ └── view │ │ └── modem │ │ ├── at_command_old.htm │ │ ├── hide_dial_config_id.htm │ │ ├── hide_manual_config_modem.htm │ │ ├── list_status.htm │ │ ├── mode_info.htm │ │ ├── modem_debug.htm │ │ ├── modem_dial_log.htm │ │ ├── modem_info.htm │ │ ├── modem_scan.htm │ │ ├── modem_status.htm │ │ ├── plugin_info.htm │ │ ├── status.htm │ │ ├── tblsection.htm │ │ └── tblsection_command.htm ├── po │ ├── zh-cn │ │ └── modem.po │ └── zh_Hans │ │ └── modem.po └── root │ ├── etc │ ├── config │ │ ├── custom_at_commands │ │ └── modem │ ├── hotplug.d │ │ ├── net │ │ │ └── 20-modem-net │ │ └── usb │ │ │ └── 20-modem-usb │ ├── init.d │ │ ├── modem │ │ └── modeminit │ └── uci-defaults │ │ └── luci-app-modem │ └── usr │ └── share │ ├── modem │ ├── at_commands.json │ ├── fibocom.sh │ ├── huawei.sh │ ├── meig.sh │ ├── modem_at.sh │ ├── modem_band.sh │ ├── modem_debug.sh │ ├── modem_info.sh │ ├── modem_init.sh │ ├── modem_network_task.sh │ ├── modem_scan.sh │ ├── modem_support.json │ ├── modem_task.sh │ ├── modem_util.sh │ ├── network_prefer.json │ ├── quectel.sh │ ├── simcom.sh │ └── vendor_support.json │ └── rpcd │ └── acl.d │ └── luci-app-modem.json ├── luci-app-pcimodem ├── Makefile ├── luasrc │ ├── controller │ │ └── pcimodem.lua │ └── model │ │ └── cbi │ │ └── pcimodem.lua ├── po │ └── zh-cn │ │ └── pcimodem.po └── root │ └── etc │ ├── config │ └── pcimodem │ ├── init.d │ └── pcimodem │ └── uci-defaults │ └── luci-pcimodem ├── luci-app-sms-tool ├── LICENSE ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── icons │ │ ├── delsms.png │ │ └── delsms2.png ├── luasrc │ ├── controller │ │ └── modem │ │ │ └── sms.lua │ ├── model │ │ └── cbi │ │ │ └── modem │ │ │ └── smsconfig.lua │ └── view │ │ └── modem │ │ ├── atcommands.htm │ │ ├── readsms.htm │ │ ├── sendsms.htm │ │ └── ussd.htm ├── po │ ├── pl │ │ └── sms-tool.po │ └── zh-cn │ │ └── sms-tool.po └── root │ ├── etc │ ├── config │ │ ├── atcmds.user │ │ ├── phonebook.user │ │ └── sms_tool │ ├── init.d │ │ └── smsled │ └── uci-defaults │ │ ├── set_sms_ports.sh │ │ └── start-smsled │ ├── sbin │ ├── cronsync.sh │ ├── set_sms_ports.sh │ ├── smsled-init.sh │ └── smsled.sh │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-sms-tool.json ├── luci-app-spdmodem ├── Makefile ├── luasrc │ ├── controller │ │ └── spdmodem.lua │ └── model │ │ └── cbi │ │ └── spdmodem.lua ├── po │ └── zh-cn │ │ └── spdmodem.po └── root │ └── etc │ ├── config │ └── spdmodem │ ├── init.d │ └── spdmodem │ └── uci-defaults │ └── luci-spdmodem ├── luci-app-usbmodem ├── Makefile ├── luasrc │ ├── controller │ │ └── usbmodem.lua │ └── model │ │ └── cbi │ │ └── usbmodem.lua ├── po │ └── zh-cn │ │ └── usbmodem.po └── root │ └── etc │ ├── config │ └── usbmodem │ ├── init.d │ └── usbmodem │ └── uci-defaults │ └── luci-usbmodem ├── meig-cm ├── Makefile └── src │ ├── GobiNetCM.c │ ├── MPQCTL.h │ ├── MPQMI.h │ ├── MPQMUX.c │ ├── MPQMUX.h │ ├── Makefile │ ├── QMIThread.c │ ├── QMIThread.h │ ├── QmiWwanCM.c │ ├── ReleaseNote.txt │ ├── build.sh │ ├── default.script │ ├── device.c │ ├── dhcpclient.c │ ├── main.c │ ├── mbim-cm.c │ ├── meig-cm │ ├── meig-qmi-proxy │ ├── meig-qmi-proxy.c │ ├── ql-ifconfig.c │ ├── qmap_bridge_mode.c │ ├── udhcpc.c │ ├── util.c │ └── util.h ├── meig_QMI_WWAN ├── Makefile └── src │ ├── Makefile │ └── qmi_wwan_m.c ├── ndisc ├── Makefile └── patches │ ├── 100-favor_bsd.patch │ └── 110-strverscmp.patch ├── quectel_Gobinet ├── Makefile └── src │ ├── GobiUSBNet.c │ ├── Makefile │ ├── QMI.c │ ├── QMI.h │ ├── QMIDevice.c │ ├── QMIDevice.h │ ├── Readme.txt │ ├── ReleaseNote.txt │ └── Structs.h ├── quectel_MHI ├── Makefile └── src │ ├── Makefile │ ├── README │ ├── ReleaseNote.txt │ ├── controllers │ ├── Kconfig │ ├── Makefile │ ├── mhi_arch_qti.c │ ├── mhi_qcom.c │ ├── mhi_qcom.h │ ├── mhi_qti.c │ └── mhi_qti.h │ ├── core │ ├── Makefile │ ├── mhi.h │ ├── mhi_boot.c │ ├── mhi_dtr.c │ ├── mhi_init.c │ ├── mhi_internal.h │ ├── mhi_main.c │ ├── mhi_pm.c │ ├── mhi_sdx20.h │ └── sdx20_mhi.h │ ├── devices │ ├── Kconfig │ ├── Makefile │ ├── mhi_netdev.c │ ├── mhi_netdev_quectel.c │ ├── mhi_satellite.c │ └── mhi_uci.c │ └── log │ ├── AT_OVER_PCIE.txt │ ├── MBIM_OVER_PCIE.txt │ ├── QMI_OVER_PCIE.txt │ └── QXDM_OVER_PCIE.txt ├── quectel_QMI_WWAN ├── Makefile └── src │ ├── Makefile │ ├── ReleaseNote.txt │ ├── qmi_wwan_q.c │ └── rmnet_nss.c ├── quectel_SRPD_PCIE ├── Makefile └── src │ ├── Makefile │ ├── include │ ├── mdm_ctrl.h │ ├── pcie-rc-sprd.h │ ├── sipa.h │ ├── sipc.h │ ├── sipc_big_to_little.h │ ├── sprd_mpm.h │ ├── sprd_pcie_ep_device.h │ └── sprd_pcie_resource.h │ ├── mcd │ ├── Kconfig │ ├── Makefile │ └── modem_ctrl.c │ ├── pcie │ ├── Kconfig │ ├── Makefile │ ├── pcie_client_resource.c │ ├── pcie_host_resource.c │ ├── pcie_sipa_res.c │ ├── pcie_sipa_res.h │ ├── sprd_pcie_ep_device.c │ └── sprd_pcie_quirks.c │ ├── power_manager │ ├── Makefile │ └── power_manager.c │ ├── pwake_function │ └── ipq4019 │ │ └── pcie-qcom.c │ ├── sipa │ ├── Kconfig │ ├── Makefile │ ├── sipa_core.c │ ├── sipa_core.h │ ├── sipa_debugfs.c │ ├── sipa_dele_cmn.c │ ├── sipa_dummy.c │ ├── sipa_eth.c │ ├── sipa_eth.h │ ├── sipa_nic.c │ ├── sipa_phy_v0 │ │ ├── Makefile │ │ ├── sipa_common_fifo_hal.c │ │ ├── sipa_fifo_irq_hal.c │ │ └── sipa_fifo_phy.h │ ├── sipa_skb_recv.c │ └── sipa_skb_send.c │ └── sipc │ ├── Kconfig │ ├── Makefile │ ├── sblock.c │ ├── sblock.h │ ├── sbuf.c │ ├── sbuf.h │ ├── sipc.c │ ├── sipc_debugfs.c │ ├── sipc_debugfs.h │ ├── sipc_priv.h │ ├── smem.c │ ├── smsg.c │ ├── spipe.c │ ├── spipe.h │ ├── spool.c │ └── spool.h ├── quectel_cm_5G ├── Makefile ├── files │ ├── dhcp │ ├── rmnet.script │ ├── rmnet.sh │ ├── rmnet6.script │ ├── rmnet6.sh │ └── rmnet_init.sh └── src │ ├── CMakeLists.txt │ ├── GobiNetCM.c │ ├── MPQCTL.h │ ├── MPQMI.h │ ├── MPQMUX.c │ ├── MPQMUX.h │ ├── Makefile │ ├── Makefile.am │ ├── NOTICE │ ├── QMIThread.c │ ├── QMIThread.h │ ├── QmiWwanCM.c │ ├── ReleaseNote.txt │ ├── at_tok.c │ ├── at_tok.h │ ├── atc.c │ ├── atchannel.c │ ├── atchannel.h │ ├── configure.ac │ ├── default.script │ ├── default.script_ip │ ├── device.c │ ├── ethtool-copy.h │ ├── log │ ├── cdc_mbim.txt │ ├── cdc_mbim_vlan.txt │ ├── ecm_ncm_rndis.txt │ ├── gobinet.txt │ ├── gobinet_bridge.txt │ ├── gobinet_qmap=1.txt │ ├── gobinet_qmap=1_bridge.txt │ ├── gobinet_qmap=4.txt │ ├── gobinet_qmap=4_bridge.txt │ ├── pcie_mhi_mbim.txt │ ├── pcie_mhi_mbim_qmap=4.txt │ ├── pcie_mhi_qmap=1.txt │ ├── pcie_mhi_qmap=1_bridge.txt │ ├── pcie_mhi_qmap=4.txt │ ├── pcie_mhi_qmap=4_bridge.txt │ ├── qmi_wwan_q.txt │ ├── qmi_wwan_q_bridge.txt │ ├── qmi_wwan_q_qmap=1.txt │ ├── qmi_wwan_q_qmap=1_bridge.txt │ ├── qmi_wwan_q_qmap=4.txt │ ├── qmi_wwan_q_qmap=4_bridge.txt │ ├── qmi_wwan_qmap=4.txt │ └── usage_of_argument │ │ ├── 6.txt │ │ └── m.txt │ ├── main.c │ ├── mbim-cm.c │ ├── qendian.h │ ├── qlist.h │ ├── qmap_bridge_mode.c │ ├── qrtr.c │ ├── qrtr.h │ ├── quectel-atc-proxy.c │ ├── quectel-mbim-proxy.c │ ├── quectel-qmi-proxy.c │ ├── quectel-qrtr-proxy.c │ ├── rmnetctl.c │ ├── udhcpc.c │ ├── udhcpc_netlink.c │ ├── udhcpc_script.c │ ├── util.c │ └── util.h ├── rooter ├── 0basicapps │ ├── 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-p910nd │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── uci-defaults │ │ │ │ └── 40_luci-p910ndx │ │ │ └── usr │ │ │ └── lib │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── p910ndx.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── p910ndx.lua │ └── usb-storage │ │ ├── Makefile │ │ └── files │ │ ├── etc │ │ ├── config │ │ │ └── umount │ │ ├── hotplug.d │ │ │ └── block │ │ │ │ ├── 20-mount │ │ │ │ ├── 30-mount │ │ │ │ └── 99-mount │ │ ├── uci-defaults │ │ │ └── 40_luci-hd_idle │ │ └── umount │ │ └── usr │ │ └── lib │ │ ├── lua │ │ └── luci │ │ │ ├── controller │ │ │ ├── hd_idle.lua │ │ │ └── umount.lua │ │ │ └── model │ │ │ └── cbi │ │ │ ├── hd_idle.lua │ │ │ └── umount.lua │ │ └── sdcard │ │ └── sdcard.sh ├── 0basicsupport │ ├── 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-sms │ │ ├── Makefile │ │ └── files │ │ │ └── usr │ │ │ └── lib │ │ │ ├── lua │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── sms.lua │ │ │ │ └── view │ │ │ │ └── rooter │ │ │ │ └── sms.htm │ │ │ └── sms │ │ │ ├── delall.sh │ │ │ ├── delsms.sh │ │ │ ├── merge.lua │ │ │ ├── pack7bit.lua │ │ │ ├── processsms │ │ │ ├── sendsms.lua │ │ │ ├── sendsms.sh │ │ │ ├── smsout.lua │ │ │ ├── smsout.sh │ │ │ ├── smsread.lua │ │ │ ├── sys2sms.lua │ │ │ ├── sys2sms.sh │ │ │ ├── toggle.sh │ │ │ └── utf8togsm.lua │ └── luci-app-guestwifi │ │ ├── Makefile │ │ └── files │ │ ├── etc │ │ └── config │ │ │ └── guestwifi │ │ └── usr │ │ └── lib │ │ ├── guestwifi │ │ ├── create.sh │ │ ├── remove.sh │ │ ├── start.sh │ │ └── stop.sh │ │ └── lua │ │ └── luci │ │ ├── controller │ │ └── guestwifi.lua │ │ ├── model │ │ └── cbi │ │ │ ├── guestwifi-edit.lua │ │ │ └── guestwifi.lua │ │ └── view │ │ └── guestwifi │ │ ├── cbi-select-input-add.htm │ │ └── ovpn_css.htm ├── 0drivers │ ├── rmbim │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── Makefile.svn-base │ │ ├── Makefile │ │ └── files │ │ │ ├── lib │ │ │ └── netifd │ │ │ │ └── proto │ │ │ │ └── mbim.sh │ │ │ └── usr │ │ │ └── lib │ │ │ └── rooter │ │ │ └── mbim │ │ │ ├── mbimdata.sh │ │ │ └── monitor.sh │ └── rqmi │ │ ├── Makefile │ │ └── files │ │ └── usr │ │ └── lib │ │ └── rooter │ │ └── qmi │ │ └── connectqmi.sh ├── 0optionalapps │ ├── bwallocate │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── textbwint │ │ │ └── usr │ │ │ └── lib │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── bwallocate.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── fullmenu │ │ │ └── bwmenu.lua │ ├── bwmon │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── bwmon │ │ │ └── init.d │ │ │ │ └── bwmon │ │ │ ├── lib │ │ │ └── upgrade │ │ │ │ └── keep.d │ │ │ │ └── bwmon │ │ │ └── usr │ │ │ ├── lib │ │ │ ├── bwmon │ │ │ │ ├── allocate.sh │ │ │ │ ├── amtleft.lua │ │ │ │ ├── backup-daily.lua │ │ │ │ ├── backup-mon.lua │ │ │ │ ├── backup.sh │ │ │ │ ├── block │ │ │ │ ├── change.sh │ │ │ │ ├── chksms.sh │ │ │ │ ├── cleanup.lua │ │ │ │ ├── create.sh │ │ │ │ ├── create_data.lua │ │ │ │ ├── data │ │ │ │ │ └── placeholder │ │ │ │ ├── datainc.lua │ │ │ │ ├── dataper.lua │ │ │ │ ├── dotext.sh │ │ │ │ ├── editemail.sh │ │ │ │ ├── excede.sh │ │ │ │ ├── external.sh │ │ │ │ ├── float.lua │ │ │ │ ├── message │ │ │ │ ├── msmtprc │ │ │ │ ├── perday.lua │ │ │ │ ├── process.sh │ │ │ │ ├── rollover.sh │ │ │ │ ├── savetot.sh │ │ │ │ ├── sendsms.sh │ │ │ │ ├── textbw.sh │ │ │ │ └── wrtbwmon.sh │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── bwmon.lua │ │ │ │ └── view │ │ │ │ └── bwmon │ │ │ │ └── bwmon.htm │ │ │ └── sbin │ │ │ └── readDB.awk │ ├── ext-autoapn │ │ ├── Makefile │ │ └── files │ │ │ └── usr │ │ │ └── lib │ │ │ └── autoapn │ │ │ └── apn.data │ ├── ext-blacklist │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── config │ │ │ │ └── blacklist │ │ │ └── usr │ │ │ └── lib │ │ │ ├── blacklist │ │ │ ├── blacklist.sh │ │ │ └── chkblack.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── blacklist.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── blacklist.lua │ ├── ext-blockport │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── config │ │ │ │ └── blockport │ │ │ └── usr │ │ │ └── lib │ │ │ ├── blockport │ │ │ └── blockport.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── blockport.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── portblk.lua │ ├── ext-domain │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── config │ │ │ │ └── blockport │ │ │ └── usr │ │ │ └── lib │ │ │ ├── blockport │ │ │ └── blockport.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── blockport.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── portblk.lua │ ├── ext-rspeedtest │ │ ├── Makefile │ │ └── files │ │ │ ├── usr │ │ │ └── lib │ │ │ │ ├── lua │ │ │ │ └── luci │ │ │ │ │ ├── controller │ │ │ │ │ └── rspeedtest.lua │ │ │ │ │ └── view │ │ │ │ │ └── speedtest │ │ │ │ │ └── rspeedtest.htm │ │ │ │ └── speedtest │ │ │ │ ├── closest.lua │ │ │ │ ├── getspeed.sh │ │ │ │ ├── info.sh │ │ │ │ ├── ping.sh │ │ │ │ ├── servers.lua │ │ │ │ └── stop.sh │ │ │ └── www │ │ │ └── luci-static │ │ │ └── resources │ │ │ └── img │ │ │ ├── prov.png │ │ │ └── user.png │ ├── ext-speedtest │ │ ├── Makefile │ │ └── files │ │ │ ├── usr │ │ │ └── lib │ │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── speedtest.lua │ │ │ │ └── view │ │ │ │ └── speedtest │ │ │ │ └── speedtest.htm │ │ │ └── www │ │ │ └── luci-static │ │ │ └── speed │ │ │ ├── css │ │ │ ├── iconmoon_splash.css │ │ │ └── splash.css │ │ │ ├── fonts │ │ │ ├── icomoon_splash.eot │ │ │ ├── icomoon_splash.svg │ │ │ ├── icomoon_splash.ttf │ │ │ └── icomoon_splash.woff │ │ │ └── img │ │ │ ├── favicon.gif │ │ │ └── kangaroo_800.png │ ├── ext-texting │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── texting │ │ │ └── init.d │ │ │ │ └── texting │ │ │ └── usr │ │ │ └── lib │ │ │ ├── fullmenu │ │ │ ├── chksms.sh │ │ │ ├── dotext.sh │ │ │ └── text-setup.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── texting.lua │ │ │ ├── model │ │ │ └── cbi │ │ │ │ └── fullmenu │ │ │ │ └── texting.lua │ │ │ └── view │ │ │ └── fullmenu │ │ │ └── textarea.htm │ ├── ext-throttle │ │ └── files │ │ │ └── usr │ │ │ └── lib │ │ │ └── throttle │ │ │ └── throttle.sh │ ├── ext-wireguard │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ ├── wireguard │ │ │ │ └── wireguard_recipes │ │ │ └── init.d │ │ │ │ └── wireguard │ │ │ ├── usr │ │ │ └── lib │ │ │ │ ├── lua │ │ │ │ └── luci │ │ │ │ │ ├── controller │ │ │ │ │ └── wireguard.lua │ │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ ├── wireguard-client.lua │ │ │ │ │ │ ├── wireguard-server.lua │ │ │ │ │ │ └── wireguard.lua │ │ │ │ │ └── view │ │ │ │ │ └── wireguard │ │ │ │ │ ├── cbi-select-input-add.htm │ │ │ │ │ ├── conf.htm │ │ │ │ │ ├── ovpn_css.htm │ │ │ │ │ ├── pageswitch.htm │ │ │ │ │ ├── text_conf.htm │ │ │ │ │ └── wireguard.htm │ │ │ │ └── wireguard │ │ │ │ ├── conf.sh │ │ │ │ ├── create.sh │ │ │ │ ├── keygen.sh │ │ │ │ ├── startvpn.sh │ │ │ │ ├── stopvpn.sh │ │ │ │ └── text.sh │ │ │ └── www │ │ │ └── luci-static │ │ │ └── resources │ │ │ └── icons │ │ │ ├── wireguard.png │ │ │ └── wireguard_disabled.png │ ├── ext-zerotier │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── init.d │ │ │ │ └── zerofire │ │ │ └── uci-defaults │ │ │ │ └── 64-zerotier │ │ │ └── usr │ │ │ └── lib │ │ │ ├── lua │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── zerotier.lua │ │ │ │ └── view │ │ │ │ ├── admin_status │ │ │ │ └── index │ │ │ │ │ └── zero.htm │ │ │ │ └── zerotier │ │ │ │ ├── zerotier.htm │ │ │ │ └── zerotier1.htm │ │ │ └── zerotier │ │ │ └── netid.sh │ ├── extramenu │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── fullmenu │ │ │ └── usr │ │ │ └── lib │ │ │ ├── fullmenu │ │ │ └── setmenu.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── fullmenu.lua │ │ │ └── view │ │ │ └── fullmenu │ │ │ └── fullmenu.htm │ ├── 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 │ │ │ ├── bin │ │ │ │ └── hkillall │ │ │ ├── lib │ │ │ │ ├── hotspot │ │ │ │ │ ├── band.sh │ │ │ │ │ ├── copyhot.sh │ │ │ │ │ ├── dis_hot.sh │ │ │ │ │ ├── enable.sh │ │ │ │ │ ├── getssid.sh │ │ │ │ │ ├── inrange.sh │ │ │ │ │ ├── manual.sh │ │ │ │ │ ├── mode.sh │ │ │ │ │ ├── reconn.sh │ │ │ │ │ └── travelmate.sh │ │ │ │ ├── lua │ │ │ │ │ └── luci │ │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── hotspot.lua │ │ │ │ │ │ └── wifilog.lua │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── hotspot │ │ │ │ │ │ └── hotspot.htm │ │ │ │ │ │ └── wifilog │ │ │ │ │ │ └── wifilog.htm │ │ │ │ └── rooter │ │ │ │ │ └── log │ │ │ │ │ └── wifilogger.sh │ │ │ └── sbin │ │ │ │ └── wifilog │ │ │ └── www │ │ │ └── luci-static │ │ │ └── resources │ │ │ └── icons │ │ │ └── encryption.png │ ├── luci-app-nft-qos │ │ ├── Makefile │ │ ├── files │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── nft-qos.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── nft-qos │ │ │ │ │ └── nft-qos.lua │ │ │ │ └── view │ │ │ │ └── nft-qos │ │ │ │ └── rate.htm │ │ ├── po │ │ │ ├── bg │ │ │ │ └── nft-qos.po │ │ │ ├── ca │ │ │ │ └── nft-qos.po │ │ │ ├── cs │ │ │ │ └── nft-qos.po │ │ │ ├── de │ │ │ │ └── nft-qos.po │ │ │ ├── el │ │ │ │ └── nft-qos.po │ │ │ ├── en │ │ │ │ └── nft-qos.po │ │ │ ├── es │ │ │ │ └── nft-qos.po │ │ │ ├── fr │ │ │ │ └── nft-qos.po │ │ │ ├── he │ │ │ │ └── nft-qos.po │ │ │ ├── hi │ │ │ │ └── nft-qos.po │ │ │ ├── hu │ │ │ │ └── nft-qos.po │ │ │ ├── it │ │ │ │ └── nft-qos.po │ │ │ ├── ja │ │ │ │ └── nft-qos.po │ │ │ ├── ko │ │ │ │ └── nft-qos.po │ │ │ ├── mr │ │ │ │ └── nft-qos.po │ │ │ ├── ms │ │ │ │ └── nft-qos.po │ │ │ ├── nb_NO │ │ │ │ └── nft-qos.po │ │ │ ├── pl │ │ │ │ └── nft-qos.po │ │ │ ├── pt │ │ │ │ └── nft-qos.po │ │ │ ├── pt_BR │ │ │ │ └── nft-qos.po │ │ │ ├── ro │ │ │ │ └── nft-qos.po │ │ │ ├── ru │ │ │ │ └── nft-qos.po │ │ │ ├── sk │ │ │ │ └── nft-qos.po │ │ │ ├── sv │ │ │ │ └── nft-qos.po │ │ │ ├── templates │ │ │ │ └── nft-qos.pot │ │ │ ├── tr │ │ │ │ └── nft-qos.po │ │ │ ├── uk │ │ │ │ └── nft-qos.po │ │ │ ├── vi │ │ │ │ └── nft-qos.po │ │ │ ├── zh_Hans │ │ │ │ └── nft-qos.po │ │ │ └── zh_Hant │ │ │ │ └── nft-qos.po │ │ └── root │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-nft-qos.json │ ├── 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 │ │ │ │ └── openvpn_recipes │ │ │ ├── init.d │ │ │ │ ├── openvpn │ │ │ │ └── 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 │ │ │ │ └── rkillall │ │ │ └── lib │ │ │ │ ├── easyrsa │ │ │ │ ├── dns.sh │ │ │ │ ├── firewall.sh │ │ │ │ ├── generate.sh │ │ │ │ ├── stop.sh │ │ │ │ ├── vpn.sh │ │ │ │ └── vpng.sh │ │ │ │ └── lua │ │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── openvpn.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ ├── openvpn-advanced.lua │ │ │ │ │ ├── openvpn-basic.lua │ │ │ │ │ ├── openvpn-file.lua │ │ │ │ │ ├── openvpn-server.lua │ │ │ │ │ └── openvpn.lua │ │ │ │ └── view │ │ │ │ ├── admin_status │ │ │ │ └── index │ │ │ │ │ └── vpn.htm │ │ │ │ ├── easyrsa │ │ │ │ └── easyrsa.htm │ │ │ │ └── openvpn │ │ │ │ ├── cbi-select-input-add.htm │ │ │ │ ├── ovpn_css.htm │ │ │ │ ├── pageswitch.htm │ │ │ │ └── vpn1.htm │ │ │ └── www │ │ │ └── luci-static │ │ │ └── resources │ │ │ └── icons │ │ │ ├── vpn-disabled.png │ │ │ ├── vpn-started.png │ │ │ └── vpn-stopped.png │ ├── nft-qos │ │ ├── Makefile │ │ └── files │ │ │ ├── lib │ │ │ ├── core.sh │ │ │ ├── dynamic.sh │ │ │ ├── monitor.sh │ │ │ ├── priority.sh │ │ │ └── static.sh │ │ │ ├── nft-qos-dynamic.hotplug │ │ │ ├── nft-qos-monitor.hotplug │ │ │ ├── nft-qos.config │ │ │ └── nft-qos.init │ ├── pingtest │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── ping │ │ │ └── init.d │ │ │ │ └── pingtest │ │ │ └── usr │ │ │ └── lib │ │ │ ├── custom │ │ │ ├── johns_ping.sh │ │ │ └── test_ping.sh │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── ping.lua │ │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ping.lua │ │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── extping.htm │ │ │ └── pingtest │ │ │ └── extping.htm │ ├── qfirehose │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── firehose_protocol.c │ │ │ ├── hostdl_packet.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── qfirehose.c │ │ │ ├── sahara.c │ │ │ ├── sahara.h │ │ │ ├── stream_download_protocol.c │ │ │ ├── usb2tcp.c │ │ │ ├── usb_linux.c │ │ │ └── usb_linux.h │ ├── qlog │ │ ├── Makefile │ │ ├── files │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── conf │ │ │ │ ├── T1.LinuxData-OTA-DataService-AP_V01.cfg │ │ │ │ ├── T2.RegServ-CotextAct_V01.cfg │ │ │ │ ├── T3.SimpleData-(TCPUDP)_V01.cfg │ │ │ │ ├── T4.Throughput_V01.cfg │ │ │ │ ├── T5.COMMON-T1T4_V01.cfg │ │ │ │ ├── T6.FullMessage.SimpleLogPacket(AT)_V01.cfg │ │ │ │ ├── T7.V2X_ALL_V01.cfg │ │ │ │ └── default.cfg │ │ └── src │ │ │ ├── Makefile │ │ │ ├── asr.c │ │ │ ├── main.c │ │ │ ├── mdm.c │ │ │ ├── qlog.h │ │ │ ├── sahara.c │ │ │ ├── sahara_protocol.h │ │ │ └── tty2tcp.c │ ├── udp-tunnel │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── network.c │ │ │ ├── network.h │ │ │ ├── udptunnel.c │ │ │ ├── utils.c │ │ │ └── utils.h │ └── webconsole │ │ ├── Makefile │ │ └── files │ │ └── usr │ │ └── lib │ │ └── lua │ │ └── luci │ │ ├── controller │ │ └── webconsole.lua │ │ └── view │ │ └── web │ │ └── web_console.htm ├── 0protocols │ ├── 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 ├── 0routerspecfic │ ├── rd05a1 │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── pciepwr │ │ │ └── lib │ │ │ └── firmware │ │ │ └── ath10k │ │ │ ├── QCA9887 │ │ │ └── hw1.0 │ │ │ │ ├── board.bin │ │ │ │ └── firmware-5.bin │ │ │ └── cal-pci-0000_00_00.0.bin │ └── we826q │ │ ├── Makefile │ │ └── files │ │ ├── etc │ │ └── init.d │ │ │ └── wd-init │ │ └── usr │ │ └── lib │ │ ├── custom │ │ └── watchdog.sh │ │ └── rooter │ │ └── changedevice.sh ├── 0splash │ ├── ext-splash │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── iframe │ │ │ └── init.d │ │ │ │ └── iframeint │ │ │ ├── usr │ │ │ └── lib │ │ │ │ └── iframe │ │ │ │ ├── band.html │ │ │ │ ├── bwdays.sh │ │ │ │ ├── bwtemplate.html │ │ │ │ ├── create.sh │ │ │ │ ├── daylist.html │ │ │ │ ├── iframe.html │ │ │ │ ├── image.html │ │ │ │ ├── mframe.html │ │ │ │ ├── modem2.html │ │ │ │ ├── open.html │ │ │ │ ├── speed.html │ │ │ │ ├── status.html │ │ │ │ ├── status.sh │ │ │ │ ├── stupdate.sh │ │ │ │ ├── update.sh │ │ │ │ └── zerotier.html │ │ │ └── www │ │ │ ├── luci-static │ │ │ ├── display.html │ │ │ ├── iframe.html │ │ │ ├── ifstatus.html │ │ │ └── rooter │ │ │ │ ├── css │ │ │ │ ├── iconmoon_splash.css │ │ │ │ └── splash.css │ │ │ │ ├── fonts │ │ │ │ ├── icomoon_splash.eot │ │ │ │ ├── icomoon_splash.svg │ │ │ │ ├── icomoon_splash.ttf │ │ │ │ └── icomoon_splash.woff │ │ │ │ └── img │ │ │ │ ├── favicon.gif │ │ │ │ └── kangaroo_800.png │ │ │ └── splash_files │ │ │ └── check1.gif │ ├── ext-splashconfig │ │ ├── Makefile │ │ └── files │ │ │ └── usr │ │ │ └── lib │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── splash.lua │ │ │ └── model │ │ │ └── cbi │ │ │ └── splashm.lua │ ├── splash │ │ ├── Makefile │ │ └── files │ │ │ └── www │ │ │ ├── luci-static │ │ │ └── rooter │ │ │ │ ├── css │ │ │ │ ├── iconmoon_splash.css │ │ │ │ └── splash.css │ │ │ │ ├── fonts │ │ │ │ ├── icomoon_splash.eot │ │ │ │ ├── icomoon_splash.svg │ │ │ │ ├── icomoon_splash.ttf │ │ │ │ └── icomoon_splash.woff │ │ │ │ └── img │ │ │ │ ├── favicon.gif │ │ │ │ └── kangaroo_800.png │ │ │ ├── splash.html │ │ │ ├── splash_files │ │ │ ├── cellular.png │ │ │ ├── check.gif │ │ │ ├── check.jpg │ │ │ ├── forum.png │ │ │ ├── home.png │ │ │ ├── kanga1.png │ │ │ ├── openwrt.png │ │ │ └── rooter.png │ │ │ └── status.html │ └── status │ │ ├── Makefile │ │ └── files │ │ ├── etc │ │ └── config │ │ │ └── splash │ │ ├── usr │ │ └── lib │ │ │ ├── lua │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ └── splashset.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── splash.lua │ │ │ └── splash │ │ │ ├── check.gif │ │ │ ├── full.gif │ │ │ └── splash.sh │ │ └── www │ │ ├── luci-static │ │ └── rooter │ │ │ ├── css │ │ │ ├── iconmoon_splash.css │ │ │ └── splash.css │ │ │ ├── fonts │ │ │ ├── icomoon_splash.eot │ │ │ ├── icomoon_splash.svg │ │ │ ├── icomoon_splash.ttf │ │ │ └── icomoon_splash.woff │ │ │ └── img │ │ │ ├── favicon.gif │ │ │ └── kangaroo_800.png │ │ ├── splash.html │ │ ├── splash_files │ │ ├── cellular.png │ │ ├── check.gif │ │ ├── check.jpg │ │ ├── forum.png │ │ ├── full.gif │ │ ├── home.png │ │ ├── kanga1.png │ │ ├── openwrt.png │ │ └── rooter.png │ │ ├── splashfull.html │ │ └── statusfull.html └── ext-rooter-basic │ ├── Makefile │ └── files │ ├── etc │ ├── codename │ ├── config │ │ ├── custom │ │ ├── modem │ │ ├── profile │ │ └── ttl │ ├── genericcmd │ ├── header_msg │ ├── hotplug.d │ │ ├── iface │ │ │ ├── 10-lan │ │ │ └── 19-rooter │ │ ├── tty │ │ │ └── 30-3x │ │ └── usb │ │ │ └── 20-usb_mode │ ├── init.d │ │ ├── clear │ │ ├── iphone │ │ ├── rooter │ │ └── usbmode │ ├── lockdown │ │ └── locks │ │ │ └── 0000000000000000000000000000000000000000.plist │ ├── netspeed │ ├── quectelcmd │ ├── sierracmd │ ├── ttl.user │ └── usb-mode.json │ ├── lib │ ├── netifd │ │ └── proto │ │ │ └── 3x.sh │ └── upgrade │ │ └── keep.d │ │ ├── cronfiles │ │ └── rc-local │ ├── usr │ ├── bin │ │ ├── bmask128 │ │ ├── chan2band.sh │ │ ├── encodemask │ │ ├── jkillall │ │ ├── rsrp2rssi │ │ └── set_gpio │ ├── lib │ │ ├── custom │ │ │ ├── locktype.sh │ │ │ └── ttlx.sh │ │ ├── gps │ │ │ └── smsreply.sh │ │ ├── lua │ │ │ └── luci │ │ │ │ ├── controller │ │ │ │ ├── admin │ │ │ │ │ └── modem.lua │ │ │ │ ├── modlog.lua │ │ │ │ ├── poweroff.lua │ │ │ │ └── profile.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ ├── firewall │ │ │ │ │ └── ttlx.lua │ │ │ │ │ └── rooter │ │ │ │ │ ├── customize.lua │ │ │ │ │ └── profiles.lua │ │ │ │ └── view │ │ │ │ ├── admin_status │ │ │ │ └── index │ │ │ │ │ └── external.htm │ │ │ │ ├── admin_system │ │ │ │ └── poweroff.htm │ │ │ │ ├── modlog │ │ │ │ └── modlog.htm │ │ │ │ └── rooter │ │ │ │ ├── custom.htm │ │ │ │ ├── debug.htm │ │ │ │ ├── external.htm │ │ │ │ ├── log.htm │ │ │ │ ├── misc.htm │ │ │ │ ├── net_status.htm │ │ │ │ └── profile.htm │ │ ├── modlog │ │ │ └── modlogger.sh │ │ ├── profile │ │ │ ├── loadcfg.sh │ │ │ ├── restart.sh │ │ │ └── savecfg.sh │ │ └── rooter │ │ │ ├── autoapn.sh │ │ │ ├── cdmafind.lua │ │ │ ├── chan2band.sh │ │ │ ├── common │ │ │ ├── fibocomdata.sh │ │ │ ├── gettype.sh │ │ │ ├── huaweidata.sh │ │ │ ├── lockchk.sh │ │ │ ├── mdm9215data.sh │ │ │ ├── meigdata.sh │ │ │ ├── modemchk.lua │ │ │ ├── novateldata.sh │ │ │ ├── otherdata.sh │ │ │ ├── phone.sh │ │ │ ├── processat.sh │ │ │ ├── quantadata.sh │ │ │ ├── quecteldata.sh │ │ │ ├── sierradata.sh │ │ │ ├── simcomdata.sh │ │ │ ├── t77data.sh │ │ │ ├── telitdata.sh │ │ │ ├── ubloxdata.sh │ │ │ └── ztedata.sh │ │ │ ├── connect │ │ │ ├── bandmask │ │ │ ├── conmon.sh │ │ │ ├── create_connect.sh │ │ │ ├── create_hostless.sh │ │ │ ├── create_iphone.sh │ │ │ ├── disablemw3.sh │ │ │ ├── disconnect.sh │ │ │ ├── get_profile.sh │ │ │ ├── handlettl.sh │ │ │ ├── postconnect.sh │ │ │ ├── preconnect.sh │ │ │ ├── reconnect-ppp.sh │ │ │ └── reconnect.sh │ │ │ ├── customname.lua │ │ │ ├── gcom │ │ │ ├── auto.gcom │ │ │ ├── baseinfo.gcom │ │ │ ├── cellinfo.gcom │ │ │ ├── cellinfo0.gcom │ │ │ ├── cgpaddr.gcom │ │ │ ├── connect-directip.gcom │ │ │ ├── connect-fecm.gcom │ │ │ ├── connect-ncm.gcom │ │ │ ├── connect-ppp.gcom │ │ │ ├── connect-zecm.gcom │ │ │ ├── curc.gcom │ │ │ ├── fibocominfo.gcom │ │ │ ├── gcom-locked │ │ │ ├── gettype.gcom │ │ │ ├── huaweiinfo.gcom │ │ │ ├── lock-prov.gcom │ │ │ ├── mdm9215info.gcom │ │ │ ├── meiginfo.gcom │ │ │ ├── novatelinfo.gcom │ │ │ ├── otherinfo.gcom │ │ │ ├── quantainfo.gcom │ │ │ ├── quectelinfo.gcom │ │ │ ├── raw-ip.gcom │ │ │ ├── reset.gcom │ │ │ ├── run-at.gcom │ │ │ ├── sendsms-at.gcom │ │ │ ├── setapn.gcom │ │ │ ├── setpin.gcom │ │ │ ├── sierrainfo.gcom │ │ │ ├── simcominfo.gcom │ │ │ ├── smschk.gcom │ │ │ ├── smswrite.gcom │ │ │ ├── t77info.gcom │ │ │ ├── telitinfo.gcom │ │ │ ├── telitinfoln.gcom │ │ │ ├── ubloxinfo.gcom │ │ │ ├── ussd.gcom │ │ │ └── zteinfo.gcom │ │ │ ├── gpio-set.sh │ │ │ ├── gpiomodel.lua │ │ │ ├── idown.lua │ │ │ ├── initialize.sh │ │ │ ├── log │ │ │ ├── at-logger │ │ │ ├── logger │ │ │ ├── modlogger.sh │ │ │ ├── mrotate.lua │ │ │ └── rotate.lua │ │ │ ├── logprint.sh │ │ │ ├── luci │ │ │ ├── atcmd.sh │ │ │ ├── celltype.sh │ │ │ ├── em060-2xbands │ │ │ ├── em12-2xbands │ │ │ ├── em12-3xbands │ │ │ ├── em20-2xbands │ │ │ ├── em20-3xbands │ │ │ ├── em20-4xbands │ │ │ ├── em7411-2xbands │ │ │ ├── em7411-3xbands │ │ │ ├── em7511-2xbands │ │ │ ├── em7511-3xbands │ │ │ ├── em7565-2xbands │ │ │ ├── em7565-3xbands │ │ │ ├── ep06a-bands │ │ │ ├── ep06e-bands │ │ │ ├── l850-2xbands │ │ │ ├── l850-3xbands │ │ │ ├── lock.sh │ │ │ ├── luaops.sh │ │ │ ├── mask.sh │ │ │ ├── mc7455-bands │ │ │ ├── modechge.sh │ │ │ ├── modemchge.sh │ │ │ ├── portchge.sh │ │ │ ├── protochnge.sh │ │ │ ├── restart.sh │ │ │ ├── scancmd.sh │ │ │ ├── setcell.sh │ │ │ └── wifiradio.sh │ │ │ ├── mbimfind.lua │ │ │ ├── modeswitch.sh │ │ │ ├── ncmfind.lua │ │ │ ├── nitz2sys.sh │ │ │ ├── portchge.sh │ │ │ ├── ppp │ │ │ └── create_ppp.sh │ │ │ ├── proto.sh │ │ │ ├── protofind.lua │ │ │ ├── pwrtoggle.sh │ │ │ ├── shutall.sh │ │ │ ├── signal │ │ │ ├── basedata.sh │ │ │ ├── celldata.sh │ │ │ ├── celltype.lua │ │ │ ├── huaweihostless.sh │ │ │ ├── mccmnc.data │ │ │ ├── modemsignal.sh │ │ │ ├── otherhostless.sh │ │ │ ├── status.sh │ │ │ └── ztehostless.sh │ │ │ ├── simlock.sh │ │ │ ├── simlockc.sh │ │ │ ├── sms │ │ │ └── check_sms.sh │ │ │ ├── timezone.sh │ │ │ ├── tzone.lua │ │ │ └── ussd.sh │ └── sbin │ │ └── modlog │ └── www │ └── luci-static │ ├── background │ └── main_bg.jpg │ ├── css │ ├── cascade.css │ ├── dark.css │ ├── fonts.css │ └── pure-min.css │ ├── fonts │ ├── Roboto-Medium-webfont.woff │ ├── Roboto-Regular-webfont.woff │ ├── TypoGraphica.eot │ ├── TypoGraphica.svg │ ├── TypoGraphica.ttf │ ├── TypoGraphica.woff │ ├── advancedtomato.eot │ ├── advancedtomato.svg │ ├── advancedtomato.ttf │ ├── advancedtomato.woff │ ├── argon.eot │ ├── argon.svg │ ├── argon.ttf │ ├── argon.woff │ ├── font.eot │ ├── font.svg │ ├── font.ttf │ ├── font.woff │ └── fonts.css │ ├── icon │ ├── android-icon-192x192.png │ ├── apple-icon-144x144.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── manifest.json │ └── ms-icon-144x144.png │ ├── icons │ ├── arrow.svg │ ├── logout.svg │ ├── menu.svg │ └── spinner.svg │ ├── img │ ├── argon.svg │ ├── blank.png │ ├── open.png │ ├── volume_high.svg │ └── volume_off.svg │ └── resources │ ├── buttons │ └── buttons.css │ ├── icons │ ├── lock1.png │ └── unlock1.png │ └── img │ ├── header.png │ ├── rooter.png │ └── rosy.png ├── sendat ├── Makefile ├── README.md └── src │ ├── Makefile │ ├── pdu.c │ ├── pdu.h │ ├── pdu_decoder.c │ ├── sendat.c │ └── ucs2_to_utf8.c └── sms-tool ├── Makefile └── patches └── 0001-Update-sms_main.c.patch /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/README.md -------------------------------------------------------------------------------- /fibocom-dial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/Makefile -------------------------------------------------------------------------------- /fibocom-dial/src/GobiNetCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/GobiNetCM.c -------------------------------------------------------------------------------- /fibocom-dial/src/MPQCTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/MPQCTL.h -------------------------------------------------------------------------------- /fibocom-dial/src/MPQMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/MPQMI.h -------------------------------------------------------------------------------- /fibocom-dial/src/MPQMUX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/MPQMUX.c -------------------------------------------------------------------------------- /fibocom-dial/src/MPQMUX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/MPQMUX.h -------------------------------------------------------------------------------- /fibocom-dial/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/Makefile -------------------------------------------------------------------------------- /fibocom-dial/src/QMIThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/QMIThread.c -------------------------------------------------------------------------------- /fibocom-dial/src/QMIThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/QMIThread.h -------------------------------------------------------------------------------- /fibocom-dial/src/QmiWwanCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/QmiWwanCM.c -------------------------------------------------------------------------------- /fibocom-dial/src/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/default.script -------------------------------------------------------------------------------- /fibocom-dial/src/fibo_qmimsg_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/fibo_qmimsg_server.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/README -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/attr.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/callback.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/dhcp.h -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/dhcpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/dhcpclient.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/dhcpmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/dhcpmsg.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/dhcpmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/dhcpmsg.h -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/packet.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/dhcp/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/dhcp/packet.h -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/ifutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/ifutils.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/ifutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/ifutils.h -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/libmnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/libmnl.h -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/nlmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/nlmsg.c -------------------------------------------------------------------------------- /fibocom-dial/src/libmnl/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/libmnl/socket.c -------------------------------------------------------------------------------- /fibocom-dial/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/main.c -------------------------------------------------------------------------------- /fibocom-dial/src/multi-pdn-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/multi-pdn-manager.c -------------------------------------------------------------------------------- /fibocom-dial/src/multi-pdn.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/multi-pdn.ini -------------------------------------------------------------------------------- /fibocom-dial/src/qmap_bridge_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/qmap_bridge_mode.c -------------------------------------------------------------------------------- /fibocom-dial/src/query_pcie_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/query_pcie_mode.c -------------------------------------------------------------------------------- /fibocom-dial/src/query_pcie_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/query_pcie_mode.h -------------------------------------------------------------------------------- /fibocom-dial/src/udhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/udhcpc.c -------------------------------------------------------------------------------- /fibocom-dial/src/udhcpc_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/udhcpc_netlink.c -------------------------------------------------------------------------------- /fibocom-dial/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/util.c -------------------------------------------------------------------------------- /fibocom-dial/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom-dial/src/util.h -------------------------------------------------------------------------------- /fibocom_MHI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/Makefile -------------------------------------------------------------------------------- /fibocom_MHI/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/Kconfig -------------------------------------------------------------------------------- /fibocom_MHI/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/Makefile -------------------------------------------------------------------------------- /fibocom_MHI/src/controllers/mhi_qcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/controllers/mhi_qcom.c -------------------------------------------------------------------------------- /fibocom_MHI/src/controllers/mhi_qcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/controllers/mhi_qcom.h -------------------------------------------------------------------------------- /fibocom_MHI/src/controllers/mhi_qcom_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/controllers/mhi_qcom_arm.h -------------------------------------------------------------------------------- /fibocom_MHI/src/controllers/mhi_qcom_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/controllers/mhi_qcom_x86.h -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi.h -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_boot.c -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_common.h -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_dtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_dtr.c -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_init.c -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_internal.h -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_main.c -------------------------------------------------------------------------------- /fibocom_MHI/src/core/mhi_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/core/mhi_pm.c -------------------------------------------------------------------------------- /fibocom_MHI/src/devices/mhi_netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/devices/mhi_netdev.c -------------------------------------------------------------------------------- /fibocom_MHI/src/devices/mhi_netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/devices/mhi_netdev.h -------------------------------------------------------------------------------- /fibocom_MHI/src/devices/mhi_uci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_MHI/src/devices/mhi_uci.c -------------------------------------------------------------------------------- /fibocom_QMI_WWAN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_QMI_WWAN/Makefile -------------------------------------------------------------------------------- /fibocom_QMI_WWAN/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_QMI_WWAN/src/Makefile -------------------------------------------------------------------------------- /fibocom_QMI_WWAN/src/qmi_wwan_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/fibocom_QMI_WWAN/src/qmi_wwan_f.c -------------------------------------------------------------------------------- /luci-app-cpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/Makefile -------------------------------------------------------------------------------- /luci-app-cpe/luasrc/controller/admin/cpe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/luasrc/controller/admin/cpe.lua -------------------------------------------------------------------------------- /luci-app-cpe/luasrc/model/cbi/cpe/modem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/luasrc/model/cbi/cpe/modem.lua -------------------------------------------------------------------------------- /luci-app-cpe/luasrc/view/cpe/at.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/luasrc/view/cpe/at.htm -------------------------------------------------------------------------------- /luci-app-cpe/luasrc/view/cpe/net_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/luasrc/view/cpe/net_status.htm -------------------------------------------------------------------------------- /luci-app-cpe/po/zh-cn/modem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/po/zh-cn/modem.po -------------------------------------------------------------------------------- /luci-app-cpe/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-cpe/root/etc/config/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/etc/config/modem -------------------------------------------------------------------------------- /luci-app-cpe/root/etc/init.d/cpeinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/etc/init.d/cpeinit -------------------------------------------------------------------------------- /luci-app-cpe/root/etc/init.d/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/etc/init.d/modem -------------------------------------------------------------------------------- /luci-app-cpe/root/etc/uci-defaults/luci-modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/etc/uci-defaults/luci-modem -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/bmask128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/bmask128 -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/chan2band.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/chan2band.sh -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/encodemask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/encodemask -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/jkillall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/jkillall -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/rsrp2rssi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/rsrp2rssi -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/bin/set_gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/bin/set_gpio -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/Fibocom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/share/cpe/Fibocom -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/Quectel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/share/cpe/Quectel -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/SIMCOM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/share/cpe/SIMCOM -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/atcmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rec=$(sendat $1 $2) 3 | echo $rec >> /tmp/result.at -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/cpedebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/share/cpe/cpedebug -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/delatcmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f /tmp/result.at -------------------------------------------------------------------------------- /luci-app-cpe/root/usr/share/cpe/rssi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-cpe/root/usr/share/cpe/rssi -------------------------------------------------------------------------------- /luci-app-gobinetmodem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/Makefile -------------------------------------------------------------------------------- /luci-app-gobinetmodem/luasrc/controller/gobinetmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/luasrc/controller/gobinetmodem.lua -------------------------------------------------------------------------------- /luci-app-gobinetmodem/luasrc/model/cbi/gobinetmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/luasrc/model/cbi/gobinetmodem.lua -------------------------------------------------------------------------------- /luci-app-gobinetmodem/po/zh-cn/usbmodem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/po/zh-cn/usbmodem.po -------------------------------------------------------------------------------- /luci-app-gobinetmodem/root/etc/config/gobinetmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/root/etc/config/gobinetmodem -------------------------------------------------------------------------------- /luci-app-gobinetmodem/root/etc/init.d/gobinetmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/root/etc/init.d/gobinetmodem -------------------------------------------------------------------------------- /luci-app-gobinetmodem/root/etc/uci-defaults/luci-gobinetmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-gobinetmodem/root/etc/uci-defaults/luci-gobinetmodem -------------------------------------------------------------------------------- /luci-app-hypermodem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/Makefile -------------------------------------------------------------------------------- /luci-app-hypermodem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/README.md -------------------------------------------------------------------------------- /luci-app-hypermodem/luasrc/controller/hypermodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/luasrc/controller/hypermodem.lua -------------------------------------------------------------------------------- /luci-app-hypermodem/luasrc/model/cbi/hypermodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/luasrc/model/cbi/hypermodem.lua -------------------------------------------------------------------------------- /luci-app-hypermodem/po/zh-cn/hypermodem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/po/zh-cn/hypermodem.po -------------------------------------------------------------------------------- /luci-app-hypermodem/root/etc/config/hypermodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/root/etc/config/hypermodem -------------------------------------------------------------------------------- /luci-app-hypermodem/root/etc/init.d/hypermodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/root/etc/init.d/hypermodem -------------------------------------------------------------------------------- /luci-app-hypermodem/root/etc/uci-defaults/luci-hypermodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-hypermodem/root/etc/uci-defaults/luci-hypermodem -------------------------------------------------------------------------------- /luci-app-modem/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/.gitattributes -------------------------------------------------------------------------------- /luci-app-modem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/.gitignore -------------------------------------------------------------------------------- /luci-app-modem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/LICENSE -------------------------------------------------------------------------------- /luci-app-modem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/Makefile -------------------------------------------------------------------------------- /luci-app-modem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/README.md -------------------------------------------------------------------------------- /luci-app-modem/htdocs/luci-static/resources/icons/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/htdocs/luci-static/resources/icons/sms.png -------------------------------------------------------------------------------- /luci-app-modem/htdocs/luci-static/resources/icons/sms2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/htdocs/luci-static/resources/icons/sms2.png -------------------------------------------------------------------------------- /luci-app-modem/luasrc/controller/modem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/controller/modem.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/model/cbi/modem/dial_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/model/cbi/modem/dial_config.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/model/cbi/modem/dial_overview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/model/cbi/modem/dial_overview.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/model/cbi/modem/modem_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/model/cbi/modem/modem_config.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/model/cbi/modem/plugin_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/model/cbi/modem/plugin_config.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/model/cbi/modem/quick_commands_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/model/cbi/modem/quick_commands_config.lua -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/at_command_old.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/at_command_old.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/hide_dial_config_id.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/hide_dial_config_id.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/hide_manual_config_modem.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/hide_manual_config_modem.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/list_status.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/mode_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/mode_info.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/modem_debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/modem_debug.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/modem_dial_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/modem_dial_log.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/modem_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/modem_info.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/modem_scan.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/modem_scan.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/modem_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/modem_status.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/plugin_info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/plugin_info.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/status.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/tblsection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/tblsection.htm -------------------------------------------------------------------------------- /luci-app-modem/luasrc/view/modem/tblsection_command.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/luasrc/view/modem/tblsection_command.htm -------------------------------------------------------------------------------- /luci-app-modem/po/zh-cn/modem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/po/zh-cn/modem.po -------------------------------------------------------------------------------- /luci-app-modem/po/zh_Hans/modem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/po/zh_Hans/modem.po -------------------------------------------------------------------------------- /luci-app-modem/root/etc/config/custom_at_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/config/custom_at_commands -------------------------------------------------------------------------------- /luci-app-modem/root/etc/config/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/config/modem -------------------------------------------------------------------------------- /luci-app-modem/root/etc/hotplug.d/net/20-modem-net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/hotplug.d/net/20-modem-net -------------------------------------------------------------------------------- /luci-app-modem/root/etc/hotplug.d/usb/20-modem-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/hotplug.d/usb/20-modem-usb -------------------------------------------------------------------------------- /luci-app-modem/root/etc/init.d/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/init.d/modem -------------------------------------------------------------------------------- /luci-app-modem/root/etc/init.d/modeminit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/init.d/modeminit -------------------------------------------------------------------------------- /luci-app-modem/root/etc/uci-defaults/luci-app-modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/etc/uci-defaults/luci-app-modem -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/at_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/at_commands.json -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/fibocom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/fibocom.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/huawei.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/huawei.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/meig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/meig.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_at.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_at.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_band.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_band.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_debug.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_info.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_init.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_network_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_network_task.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_scan.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_support.json -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_task.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/modem_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/modem_util.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/network_prefer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/network_prefer.json -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/quectel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/quectel.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/simcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/simcom.sh -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/modem/vendor_support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/modem/vendor_support.json -------------------------------------------------------------------------------- /luci-app-modem/root/usr/share/rpcd/acl.d/luci-app-modem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-modem/root/usr/share/rpcd/acl.d/luci-app-modem.json -------------------------------------------------------------------------------- /luci-app-pcimodem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/Makefile -------------------------------------------------------------------------------- /luci-app-pcimodem/luasrc/controller/pcimodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/luasrc/controller/pcimodem.lua -------------------------------------------------------------------------------- /luci-app-pcimodem/luasrc/model/cbi/pcimodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/luasrc/model/cbi/pcimodem.lua -------------------------------------------------------------------------------- /luci-app-pcimodem/po/zh-cn/pcimodem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/po/zh-cn/pcimodem.po -------------------------------------------------------------------------------- /luci-app-pcimodem/root/etc/config/pcimodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/root/etc/config/pcimodem -------------------------------------------------------------------------------- /luci-app-pcimodem/root/etc/init.d/pcimodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/root/etc/init.d/pcimodem -------------------------------------------------------------------------------- /luci-app-pcimodem/root/etc/uci-defaults/luci-pcimodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-pcimodem/root/etc/uci-defaults/luci-pcimodem -------------------------------------------------------------------------------- /luci-app-sms-tool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/LICENSE -------------------------------------------------------------------------------- /luci-app-sms-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/Makefile -------------------------------------------------------------------------------- /luci-app-sms-tool/htdocs/luci-static/resources/icons/delsms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/htdocs/luci-static/resources/icons/delsms.png -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/controller/modem/sms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/controller/modem/sms.lua -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/model/cbi/modem/smsconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/model/cbi/modem/smsconfig.lua -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/view/modem/atcommands.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/view/modem/atcommands.htm -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/view/modem/readsms.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/view/modem/readsms.htm -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/view/modem/sendsms.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/view/modem/sendsms.htm -------------------------------------------------------------------------------- /luci-app-sms-tool/luasrc/view/modem/ussd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/luasrc/view/modem/ussd.htm -------------------------------------------------------------------------------- /luci-app-sms-tool/po/pl/sms-tool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/po/pl/sms-tool.po -------------------------------------------------------------------------------- /luci-app-sms-tool/po/zh-cn/sms-tool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/po/zh-cn/sms-tool.po -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/config/atcmds.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/config/atcmds.user -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/config/phonebook.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/config/phonebook.user -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/config/sms_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/config/sms_tool -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/init.d/smsled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/init.d/smsled -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/uci-defaults/set_sms_ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/uci-defaults/set_sms_ports.sh -------------------------------------------------------------------------------- /luci-app-sms-tool/root/etc/uci-defaults/start-smsled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/etc/uci-defaults/start-smsled -------------------------------------------------------------------------------- /luci-app-sms-tool/root/sbin/cronsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/sbin/cronsync.sh -------------------------------------------------------------------------------- /luci-app-sms-tool/root/sbin/set_sms_ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/sbin/set_sms_ports.sh -------------------------------------------------------------------------------- /luci-app-sms-tool/root/sbin/smsled-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/sbin/smsled-init.sh -------------------------------------------------------------------------------- /luci-app-sms-tool/root/sbin/smsled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-sms-tool/root/sbin/smsled.sh -------------------------------------------------------------------------------- /luci-app-spdmodem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/Makefile -------------------------------------------------------------------------------- /luci-app-spdmodem/luasrc/controller/spdmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/luasrc/controller/spdmodem.lua -------------------------------------------------------------------------------- /luci-app-spdmodem/luasrc/model/cbi/spdmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/luasrc/model/cbi/spdmodem.lua -------------------------------------------------------------------------------- /luci-app-spdmodem/po/zh-cn/spdmodem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/po/zh-cn/spdmodem.po -------------------------------------------------------------------------------- /luci-app-spdmodem/root/etc/config/spdmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/root/etc/config/spdmodem -------------------------------------------------------------------------------- /luci-app-spdmodem/root/etc/init.d/spdmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/root/etc/init.d/spdmodem -------------------------------------------------------------------------------- /luci-app-spdmodem/root/etc/uci-defaults/luci-spdmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-spdmodem/root/etc/uci-defaults/luci-spdmodem -------------------------------------------------------------------------------- /luci-app-usbmodem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/Makefile -------------------------------------------------------------------------------- /luci-app-usbmodem/luasrc/controller/usbmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/luasrc/controller/usbmodem.lua -------------------------------------------------------------------------------- /luci-app-usbmodem/luasrc/model/cbi/usbmodem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/luasrc/model/cbi/usbmodem.lua -------------------------------------------------------------------------------- /luci-app-usbmodem/po/zh-cn/usbmodem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/po/zh-cn/usbmodem.po -------------------------------------------------------------------------------- /luci-app-usbmodem/root/etc/config/usbmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/root/etc/config/usbmodem -------------------------------------------------------------------------------- /luci-app-usbmodem/root/etc/init.d/usbmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/root/etc/init.d/usbmodem -------------------------------------------------------------------------------- /luci-app-usbmodem/root/etc/uci-defaults/luci-usbmodem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/luci-app-usbmodem/root/etc/uci-defaults/luci-usbmodem -------------------------------------------------------------------------------- /meig-cm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/Makefile -------------------------------------------------------------------------------- /meig-cm/src/GobiNetCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/GobiNetCM.c -------------------------------------------------------------------------------- /meig-cm/src/MPQCTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/MPQCTL.h -------------------------------------------------------------------------------- /meig-cm/src/MPQMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/MPQMI.h -------------------------------------------------------------------------------- /meig-cm/src/MPQMUX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/MPQMUX.c -------------------------------------------------------------------------------- /meig-cm/src/MPQMUX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/MPQMUX.h -------------------------------------------------------------------------------- /meig-cm/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/Makefile -------------------------------------------------------------------------------- /meig-cm/src/QMIThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/QMIThread.c -------------------------------------------------------------------------------- /meig-cm/src/QMIThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/QMIThread.h -------------------------------------------------------------------------------- /meig-cm/src/QmiWwanCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/QmiWwanCM.c -------------------------------------------------------------------------------- /meig-cm/src/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/ReleaseNote.txt -------------------------------------------------------------------------------- /meig-cm/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/build.sh -------------------------------------------------------------------------------- /meig-cm/src/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/default.script -------------------------------------------------------------------------------- /meig-cm/src/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/device.c -------------------------------------------------------------------------------- /meig-cm/src/dhcpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/dhcpclient.c -------------------------------------------------------------------------------- /meig-cm/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/main.c -------------------------------------------------------------------------------- /meig-cm/src/mbim-cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/mbim-cm.c -------------------------------------------------------------------------------- /meig-cm/src/meig-cm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/meig-cm -------------------------------------------------------------------------------- /meig-cm/src/meig-qmi-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/meig-qmi-proxy -------------------------------------------------------------------------------- /meig-cm/src/meig-qmi-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/meig-qmi-proxy.c -------------------------------------------------------------------------------- /meig-cm/src/ql-ifconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/ql-ifconfig.c -------------------------------------------------------------------------------- /meig-cm/src/qmap_bridge_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/qmap_bridge_mode.c -------------------------------------------------------------------------------- /meig-cm/src/udhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/udhcpc.c -------------------------------------------------------------------------------- /meig-cm/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/util.c -------------------------------------------------------------------------------- /meig-cm/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig-cm/src/util.h -------------------------------------------------------------------------------- /meig_QMI_WWAN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig_QMI_WWAN/Makefile -------------------------------------------------------------------------------- /meig_QMI_WWAN/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig_QMI_WWAN/src/Makefile -------------------------------------------------------------------------------- /meig_QMI_WWAN/src/qmi_wwan_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/meig_QMI_WWAN/src/qmi_wwan_m.c -------------------------------------------------------------------------------- /ndisc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/ndisc/Makefile -------------------------------------------------------------------------------- /ndisc/patches/100-favor_bsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/ndisc/patches/100-favor_bsd.patch -------------------------------------------------------------------------------- /ndisc/patches/110-strverscmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/ndisc/patches/110-strverscmp.patch -------------------------------------------------------------------------------- /quectel_Gobinet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/Makefile -------------------------------------------------------------------------------- /quectel_Gobinet/src/GobiUSBNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/GobiUSBNet.c -------------------------------------------------------------------------------- /quectel_Gobinet/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/Makefile -------------------------------------------------------------------------------- /quectel_Gobinet/src/QMI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/QMI.c -------------------------------------------------------------------------------- /quectel_Gobinet/src/QMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/QMI.h -------------------------------------------------------------------------------- /quectel_Gobinet/src/QMIDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/QMIDevice.c -------------------------------------------------------------------------------- /quectel_Gobinet/src/QMIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/QMIDevice.h -------------------------------------------------------------------------------- /quectel_Gobinet/src/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/Readme.txt -------------------------------------------------------------------------------- /quectel_Gobinet/src/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/ReleaseNote.txt -------------------------------------------------------------------------------- /quectel_Gobinet/src/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_Gobinet/src/Structs.h -------------------------------------------------------------------------------- /quectel_MHI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/Makefile -------------------------------------------------------------------------------- /quectel_MHI/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/Makefile -------------------------------------------------------------------------------- /quectel_MHI/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/README -------------------------------------------------------------------------------- /quectel_MHI/src/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/ReleaseNote.txt -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/Kconfig -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/Makefile -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/mhi_arch_qti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/mhi_arch_qti.c -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/mhi_qcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/mhi_qcom.c -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/mhi_qcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/mhi_qcom.h -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/mhi_qti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/mhi_qti.c -------------------------------------------------------------------------------- /quectel_MHI/src/controllers/mhi_qti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/controllers/mhi_qti.h -------------------------------------------------------------------------------- /quectel_MHI/src/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/Makefile -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi.h -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_boot.c -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_dtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_dtr.c -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_init.c -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_internal.h -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_main.c -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_pm.c -------------------------------------------------------------------------------- /quectel_MHI/src/core/mhi_sdx20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/mhi_sdx20.h -------------------------------------------------------------------------------- /quectel_MHI/src/core/sdx20_mhi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/core/sdx20_mhi.h -------------------------------------------------------------------------------- /quectel_MHI/src/devices/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/Kconfig -------------------------------------------------------------------------------- /quectel_MHI/src/devices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/Makefile -------------------------------------------------------------------------------- /quectel_MHI/src/devices/mhi_netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/mhi_netdev.c -------------------------------------------------------------------------------- /quectel_MHI/src/devices/mhi_netdev_quectel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/mhi_netdev_quectel.c -------------------------------------------------------------------------------- /quectel_MHI/src/devices/mhi_satellite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/mhi_satellite.c -------------------------------------------------------------------------------- /quectel_MHI/src/devices/mhi_uci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/devices/mhi_uci.c -------------------------------------------------------------------------------- /quectel_MHI/src/log/AT_OVER_PCIE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/log/AT_OVER_PCIE.txt -------------------------------------------------------------------------------- /quectel_MHI/src/log/MBIM_OVER_PCIE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/log/MBIM_OVER_PCIE.txt -------------------------------------------------------------------------------- /quectel_MHI/src/log/QMI_OVER_PCIE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/log/QMI_OVER_PCIE.txt -------------------------------------------------------------------------------- /quectel_MHI/src/log/QXDM_OVER_PCIE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_MHI/src/log/QXDM_OVER_PCIE.txt -------------------------------------------------------------------------------- /quectel_QMI_WWAN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_QMI_WWAN/Makefile -------------------------------------------------------------------------------- /quectel_QMI_WWAN/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_QMI_WWAN/src/Makefile -------------------------------------------------------------------------------- /quectel_QMI_WWAN/src/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_QMI_WWAN/src/ReleaseNote.txt -------------------------------------------------------------------------------- /quectel_QMI_WWAN/src/qmi_wwan_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_QMI_WWAN/src/qmi_wwan_q.c -------------------------------------------------------------------------------- /quectel_QMI_WWAN/src/rmnet_nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_QMI_WWAN/src/rmnet_nss.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/mdm_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/mdm_ctrl.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/pcie-rc-sprd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/pcie-rc-sprd.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sipa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sipa.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sipc.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sipc_big_to_little.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sipc_big_to_little.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sprd_mpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sprd_mpm.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sprd_pcie_ep_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sprd_pcie_ep_device.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/include/sprd_pcie_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/include/sprd_pcie_resource.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/mcd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/mcd/Kconfig -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/mcd/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += modem_ctrl.o 2 | -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/mcd/modem_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/mcd/modem_ctrl.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/Kconfig -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/pcie_client_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/pcie_client_resource.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/pcie_host_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/pcie_host_resource.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/pcie_sipa_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/pcie_sipa_res.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/pcie_sipa_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/pcie_sipa_res.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/sprd_pcie_ep_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/sprd_pcie_ep_device.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pcie/sprd_pcie_quirks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pcie/sprd_pcie_quirks.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/power_manager/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += power_manager.o 2 | -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/power_manager/power_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/power_manager/power_manager.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/pwake_function/ipq4019/pcie-qcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/pwake_function/ipq4019/pcie-qcom.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/Kconfig -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_core.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_core.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_debugfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_debugfs.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_dele_cmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_dele_cmn.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_dummy.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_eth.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_eth.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_nic.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_common_fifo_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_common_fifo_hal.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_fifo_irq_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_fifo_irq_hal.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_fifo_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_phy_v0/sipa_fifo_phy.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_skb_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_skb_recv.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipa/sipa_skb_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipa/sipa_skb_send.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/Kconfig -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/Makefile -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sblock.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sblock.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sbuf.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sbuf.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sipc.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sipc_debugfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sipc_debugfs.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sipc_debugfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sipc_debugfs.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/sipc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/sipc_priv.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/smem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/smem.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/smsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/smsg.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/spipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/spipe.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/spipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/spipe.h -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/spool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/spool.c -------------------------------------------------------------------------------- /quectel_SRPD_PCIE/src/sipc/spool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_SRPD_PCIE/src/sipc/spool.h -------------------------------------------------------------------------------- /quectel_cm_5G/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/Makefile -------------------------------------------------------------------------------- /quectel_cm_5G/files/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/dhcp -------------------------------------------------------------------------------- /quectel_cm_5G/files/rmnet.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/rmnet.script -------------------------------------------------------------------------------- /quectel_cm_5G/files/rmnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/rmnet.sh -------------------------------------------------------------------------------- /quectel_cm_5G/files/rmnet6.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/rmnet6.script -------------------------------------------------------------------------------- /quectel_cm_5G/files/rmnet6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/rmnet6.sh -------------------------------------------------------------------------------- /quectel_cm_5G/files/rmnet_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/files/rmnet_init.sh -------------------------------------------------------------------------------- /quectel_cm_5G/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/CMakeLists.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/GobiNetCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/GobiNetCM.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/MPQCTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/MPQCTL.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/MPQMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/MPQMI.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/MPQMUX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/MPQMUX.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/MPQMUX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/MPQMUX.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/Makefile -------------------------------------------------------------------------------- /quectel_cm_5G/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/Makefile.am -------------------------------------------------------------------------------- /quectel_cm_5G/src/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/NOTICE -------------------------------------------------------------------------------- /quectel_cm_5G/src/QMIThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/QMIThread.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/QMIThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/QMIThread.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/QmiWwanCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/QmiWwanCM.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/ReleaseNote.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/at_tok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/at_tok.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/at_tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/at_tok.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/atc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/atc.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/atchannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/atchannel.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/atchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/atchannel.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/configure.ac -------------------------------------------------------------------------------- /quectel_cm_5G/src/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/default.script -------------------------------------------------------------------------------- /quectel_cm_5G/src/default.script_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/default.script_ip -------------------------------------------------------------------------------- /quectel_cm_5G/src/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/device.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/ethtool-copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/ethtool-copy.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/cdc_mbim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/cdc_mbim.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/cdc_mbim_vlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/cdc_mbim_vlan.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/ecm_ncm_rndis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/ecm_ncm_rndis.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet_qmap=1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet_qmap=1.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet_qmap=1_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet_qmap=1_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet_qmap=4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet_qmap=4.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/gobinet_qmap=4_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/gobinet_qmap=4_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_mbim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_mbim.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_mbim_qmap=4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_mbim_qmap=4.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_qmap=1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_qmap=1.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_qmap=1_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_qmap=1_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_qmap=4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_qmap=4.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/pcie_mhi_qmap=4_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/pcie_mhi_qmap=4_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q_qmap=1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q_qmap=1.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q_qmap=1_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q_qmap=1_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q_qmap=4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q_qmap=4.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_q_qmap=4_bridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_q_qmap=4_bridge.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/qmi_wwan_qmap=4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/qmi_wwan_qmap=4.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/usage_of_argument/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/usage_of_argument/6.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/log/usage_of_argument/m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/log/usage_of_argument/m.txt -------------------------------------------------------------------------------- /quectel_cm_5G/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/main.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/mbim-cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/mbim-cm.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/qendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/qendian.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/qlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/qlist.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/qmap_bridge_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/qmap_bridge_mode.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/qrtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/qrtr.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/qrtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/qrtr.h -------------------------------------------------------------------------------- /quectel_cm_5G/src/quectel-atc-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/quectel-atc-proxy.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/quectel-mbim-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/quectel-mbim-proxy.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/quectel-qmi-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/quectel-qmi-proxy.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/quectel-qrtr-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/quectel-qrtr-proxy.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/rmnetctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/rmnetctl.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/udhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/udhcpc.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/udhcpc_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/udhcpc_netlink.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/udhcpc_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/udhcpc_script.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/util.c -------------------------------------------------------------------------------- /quectel_cm_5G/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/quectel_cm_5G/src/util.h -------------------------------------------------------------------------------- /rooter/0basicapps/ext-command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/ext-command/Makefile -------------------------------------------------------------------------------- /rooter/0basicapps/ext-command/files/usr/lib/scripts/dummy: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /rooter/0basicapps/ext-extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/ext-extra/Makefile -------------------------------------------------------------------------------- /rooter/0basicapps/ext-extra/files/etc/config/schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/ext-extra/files/etc/config/schedule -------------------------------------------------------------------------------- /rooter/0basicapps/ext-extra/files/usr/lib/rooter/luci/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/ext-extra/files/usr/lib/rooter/luci/reboot.sh -------------------------------------------------------------------------------- /rooter/0basicapps/ext-p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/ext-p910nd/Makefile -------------------------------------------------------------------------------- /rooter/0basicapps/usb-storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/usb-storage/Makefile -------------------------------------------------------------------------------- /rooter/0basicapps/usb-storage/files/etc/config/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/usb-storage/files/etc/config/umount -------------------------------------------------------------------------------- /rooter/0basicapps/usb-storage/files/etc/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/usb-storage/files/etc/umount -------------------------------------------------------------------------------- /rooter/0basicapps/usb-storage/files/usr/lib/sdcard/sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicapps/usb-storage/files/usr/lib/sdcard/sdcard.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-buttons/Makefile -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-buttons/files/etc/btnaction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-buttons/files/etc/btnaction.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-buttons/files/etc/init.d/buttons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-buttons/files/etc/init.d/buttons -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/Makefile -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/delall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/delall.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/delsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/delsms.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/merge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/merge.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/pack7bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/pack7bit.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/processsms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/processsms -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/sendsms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/sendsms.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/sendsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/sendsms.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsout.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsout.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/smsread.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/sys2sms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/sys2sms.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/sys2sms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/sys2sms.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/toggle.sh -------------------------------------------------------------------------------- /rooter/0basicsupport/ext-sms/files/usr/lib/sms/utf8togsm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/ext-sms/files/usr/lib/sms/utf8togsm.lua -------------------------------------------------------------------------------- /rooter/0basicsupport/luci-app-guestwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0basicsupport/luci-app-guestwifi/Makefile -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/.svn/entries -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/.svn/text-base/Makefile.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/.svn/text-base/Makefile.svn-base -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/Makefile -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/files/lib/netifd/proto/mbim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/files/lib/netifd/proto/mbim.sh -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/files/usr/lib/rooter/mbim/mbimdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/files/usr/lib/rooter/mbim/mbimdata.sh -------------------------------------------------------------------------------- /rooter/0drivers/rmbim/files/usr/lib/rooter/mbim/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rmbim/files/usr/lib/rooter/mbim/monitor.sh -------------------------------------------------------------------------------- /rooter/0drivers/rqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rqmi/Makefile -------------------------------------------------------------------------------- /rooter/0drivers/rqmi/files/usr/lib/rooter/qmi/connectqmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0drivers/rqmi/files/usr/lib/rooter/qmi/connectqmi.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwallocate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwallocate/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/bwallocate/files/etc/init.d/textbwint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwallocate/files/etc/init.d/textbwint -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/etc/config/bwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/etc/config/bwmon -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/etc/init.d/bwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/etc/init.d/bwmon -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/lib/upgrade/keep.d/bwmon: -------------------------------------------------------------------------------- 1 | /usr/lib/bwmon/data/ 2 | -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/allocate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/allocate.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/amtleft.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/amtleft.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup-daily.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup-daily.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup-mon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup-mon.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/backup.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/block -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/change.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/chksms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/chksms.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/cleanup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/cleanup.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/create.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/create_data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/create_data.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/data/placeholder: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/datainc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/datainc.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/dataper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/dataper.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/dotext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/dotext.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/editemail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/editemail.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/excede.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/excede.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/external.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/external.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/float.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/float.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/message -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/msmtprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/msmtprc -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/perday.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/perday.lua -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/process.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/rollover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/rollover.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/savetot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/savetot.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/sendsms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/sendsms.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/textbw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/textbw.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/lib/bwmon/wrtbwmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/lib/bwmon/wrtbwmon.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/bwmon/files/usr/sbin/readDB.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/bwmon/files/usr/sbin/readDB.awk -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-autoapn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-autoapn/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-autoapn/files/usr/lib/autoapn/apn.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-autoapn/files/usr/lib/autoapn/apn.data -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-blacklist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-blacklist/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-blacklist/files/etc/config/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-blacklist/files/etc/config/blacklist -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-blockport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-blockport/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-blockport/files/etc/config/blockport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-blockport/files/etc/config/blockport -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-domain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-domain/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-domain/files/etc/config/blockport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-domain/files/etc/config/blockport -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-rspeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-rspeedtest/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-speedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-speedtest/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-texting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-texting/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-texting/files/etc/config/texting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-texting/files/etc/config/texting -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-texting/files/etc/init.d/texting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-texting/files/etc/init.d/texting -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-wireguard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-wireguard/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-wireguard/files/etc/config/wireguard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-wireguard/files/etc/config/wireguard -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-wireguard/files/etc/init.d/wireguard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-wireguard/files/etc/init.d/wireguard -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-zerotier/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/ext-zerotier/files/etc/init.d/zerofire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/ext-zerotier/files/etc/init.d/zerofire -------------------------------------------------------------------------------- /rooter/0optionalapps/extramenu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/extramenu/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/extramenu/files/etc/init.d/fullmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/extramenu/files/etc/init.d/fullmenu -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-dnsmasq-ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-dnsmasq-ipset/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-hotspot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-hotspot/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-hotspot/files/etc/init.d/zhot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-hotspot/files/etc/init.d/zhot -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-hotspot/files/lib/upgrade/keep.d/hotspot: -------------------------------------------------------------------------------- 1 | /etc/hotspot 2 | -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-hotspot/files/usr/bin/hkillall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-hotspot/files/usr/bin/hkillall -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-hotspot/files/usr/sbin/wifilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-hotspot/files/usr/sbin/wifilog -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/bg/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/bg/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ca/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ca/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/cs/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/cs/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/de/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/de/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/el/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/el/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/en/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/en/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/es/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/es/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/fr/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/fr/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/he/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/he/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/hi/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/hi/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/hu/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/hu/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/it/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/it/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ja/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ja/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ko/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ko/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/mr/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/mr/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ms/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ms/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/nb_NO/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/nb_NO/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/pl/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/pl/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/pt/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/pt/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/pt_BR/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/pt_BR/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ro/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ro/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/ru/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/ru/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/sk/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/sk/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/sv/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/sv/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/templates/nft-qos.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/templates/nft-qos.pot -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/tr/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/tr/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/uk/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/uk/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/vi/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/vi/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/zh_Hans/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/zh_Hans/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-nft-qos/po/zh_Hant/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-nft-qos/po/zh_Hant/nft-qos.po -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rooterddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-rooterddns/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rooterddns/files/usr/lib/lua/luci/view/admin_status/index/ddns.htm: -------------------------------------------------------------------------------- 1 | <%+ddns/system_status%> 2 | -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rootervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-rootervpn/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rootervpn/files/lib/upgrade/keep.d/rootervpn: -------------------------------------------------------------------------------- 1 | /etc/openvpn/* 2 | -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rootervpn/files/usr/bin/rkillall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/luci-app-rootervpn/files/usr/bin/rkillall -------------------------------------------------------------------------------- /rooter/0optionalapps/luci-app-rootervpn/files/usr/lib/lua/luci/view/admin_status/index/vpn.htm: -------------------------------------------------------------------------------- 1 | <%+openvpn/vpn1%> -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/lib/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/lib/core.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/lib/dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/lib/dynamic.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/lib/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/lib/monitor.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/lib/priority.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/lib/priority.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/lib/static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/lib/static.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/nft-qos-dynamic.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/nft-qos-dynamic.hotplug -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/nft-qos-monitor.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/nft-qos-monitor.hotplug -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/nft-qos.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/nft-qos.config -------------------------------------------------------------------------------- /rooter/0optionalapps/nft-qos/files/nft-qos.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/nft-qos/files/nft-qos.init -------------------------------------------------------------------------------- /rooter/0optionalapps/pingtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/pingtest/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/pingtest/files/etc/config/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/pingtest/files/etc/config/ping -------------------------------------------------------------------------------- /rooter/0optionalapps/pingtest/files/etc/init.d/pingtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/pingtest/files/etc/init.d/pingtest -------------------------------------------------------------------------------- /rooter/0optionalapps/pingtest/files/usr/lib/custom/test_ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/pingtest/files/usr/lib/custom/test_ping.sh -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/firehose_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/firehose_protocol.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/hostdl_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/hostdl_packet.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/md5.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/md5.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/qfirehose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/qfirehose.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/sahara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/sahara.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/sahara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/sahara.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/stream_download_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/stream_download_protocol.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/usb2tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/usb2tcp.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/usb_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/usb_linux.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qfirehose/src/usb_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qfirehose/src/usb_linux.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/files/usr/lib/conf/T7.V2X_ALL_V01.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/files/usr/lib/conf/T7.V2X_ALL_V01.cfg -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/files/usr/lib/conf/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/files/usr/lib/conf/default.cfg -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/asr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/asr.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/main.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/mdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/mdm.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/qlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/qlog.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/sahara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/sahara.c -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/sahara_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/sahara_protocol.h -------------------------------------------------------------------------------- /rooter/0optionalapps/qlog/src/tty2tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/qlog/src/tty2tcp.c -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/Makefile -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/log.c -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/log.h -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/network.c -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/network.h -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/udptunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/udptunnel.c -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/utils.c -------------------------------------------------------------------------------- /rooter/0optionalapps/udp-tunnel/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/udp-tunnel/src/utils.h -------------------------------------------------------------------------------- /rooter/0optionalapps/webconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0optionalapps/webconsole/Makefile -------------------------------------------------------------------------------- /rooter/0protocols/luci-proto-3x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0protocols/luci-proto-3x/Makefile -------------------------------------------------------------------------------- /rooter/0protocols/luci-proto-mbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0protocols/luci-proto-mbim/Makefile -------------------------------------------------------------------------------- /rooter/0routerspecfic/rd05a1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0routerspecfic/rd05a1/Makefile -------------------------------------------------------------------------------- /rooter/0routerspecfic/rd05a1/files/etc/init.d/pciepwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0routerspecfic/rd05a1/files/etc/init.d/pciepwr -------------------------------------------------------------------------------- /rooter/0routerspecfic/we826q/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0routerspecfic/we826q/Makefile -------------------------------------------------------------------------------- /rooter/0routerspecfic/we826q/files/etc/init.d/wd-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0routerspecfic/we826q/files/etc/init.d/wd-init -------------------------------------------------------------------------------- /rooter/0routerspecfic/we826q/files/usr/lib/custom/watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0routerspecfic/we826q/files/usr/lib/custom/watchdog.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/Makefile -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/etc/config/iframe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/etc/config/iframe -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/etc/init.d/iframeint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/etc/init.d/iframeint -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/band.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/band.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/bwdays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/bwdays.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/bwtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/bwtemplate.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/create.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/daylist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/daylist.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/iframe.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/image.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/mframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/mframe.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/modem2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/modem2.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/open.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/speed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/speed.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/status.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/status.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/stupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/stupdate.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/update.sh -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/usr/lib/iframe/zerotier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/usr/lib/iframe/zerotier.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/www/luci-static/display.html: -------------------------------------------------------------------------------- 1 | /tmp/www/display.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/www/luci-static/iframe.html: -------------------------------------------------------------------------------- 1 | /tmp/www/daylist.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/www/luci-static/ifstatus.html: -------------------------------------------------------------------------------- 1 | /tmp/www/ifstatus.html -------------------------------------------------------------------------------- /rooter/0splash/ext-splash/files/www/splash_files/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splash/files/www/splash_files/check1.gif -------------------------------------------------------------------------------- /rooter/0splash/ext-splashconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/ext-splashconfig/Makefile -------------------------------------------------------------------------------- /rooter/0splash/splash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/Makefile -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash.html -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/cellular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/cellular.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/check.gif -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/check.jpg -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/forum.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/home.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/kanga1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/kanga1.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/openwrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/openwrt.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/splash_files/rooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/splash_files/rooter.png -------------------------------------------------------------------------------- /rooter/0splash/splash/files/www/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/splash/files/www/status.html -------------------------------------------------------------------------------- /rooter/0splash/status/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/Makefile -------------------------------------------------------------------------------- /rooter/0splash/status/files/etc/config/splash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/etc/config/splash -------------------------------------------------------------------------------- /rooter/0splash/status/files/usr/lib/splash/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/usr/lib/splash/check.gif -------------------------------------------------------------------------------- /rooter/0splash/status/files/usr/lib/splash/full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/usr/lib/splash/full.gif -------------------------------------------------------------------------------- /rooter/0splash/status/files/usr/lib/splash/splash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/usr/lib/splash/splash.sh -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash.html -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/cellular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/cellular.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/check.gif -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/check.jpg -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/forum.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/full.gif -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/home.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/kanga1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/kanga1.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/openwrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/openwrt.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splash_files/rooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splash_files/rooter.png -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/splashfull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/splashfull.html -------------------------------------------------------------------------------- /rooter/0splash/status/files/www/statusfull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/0splash/status/files/www/statusfull.html -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/Makefile -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/codename: -------------------------------------------------------------------------------- 1 | CODENAME="GoldenOrb-Version-1" -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/config/custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/config/custom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/config/modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/config/modem -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/config/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/config/profile -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/config/ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/config/ttl -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/genericcmd: -------------------------------------------------------------------------------- 1 | AT+CRSM=176,12258,0,0,10 2 | ICCID 3 | at+csq 4 | Signal Information 5 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/header_msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/header_msg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/hotplug.d/iface/10-lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/hotplug.d/iface/10-lan -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/hotplug.d/iface/19-rooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/hotplug.d/iface/19-rooter -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/hotplug.d/tty/30-3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/hotplug.d/tty/30-3x -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/hotplug.d/usb/20-usb_mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/lib/rooter/modeswitch.sh & -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/init.d/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/init.d/clear -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/init.d/iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/init.d/iphone -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/init.d/rooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/init.d/rooter -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/init.d/usbmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/init.d/usbmode -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/lockdown/locks/0000000000000000000000000000000000000000.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/netspeed: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/quectelcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/quectelcmd -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/sierracmd: -------------------------------------------------------------------------------- 1 | AT+CRSM=176,12258,0,0,10 2 | ICCID 3 | at+csq 4 | Signal Strength 5 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/ttl.user: -------------------------------------------------------------------------------- 1 | # 2 | # TTL Setting 3 | # 4 | 5 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/etc/usb-mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/etc/usb-mode.json -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/lib/netifd/proto/3x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/lib/netifd/proto/3x.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/lib/upgrade/keep.d/cronfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/lib/upgrade/keep.d/cronfiles -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/lib/upgrade/keep.d/rc-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/lib/upgrade/keep.d/rc-local -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/bmask128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/bmask128 -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/chan2band.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/chan2band.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/encodemask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/encodemask -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/jkillall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/jkillall -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/rsrp2rssi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/rsrp2rssi -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/bin/set_gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/bin/set_gpio -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/custom/locktype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/custom/locktype.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/custom/ttlx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/custom/ttlx.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/gps/smsreply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/gps/smsreply.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/lua/luci/view/admin_status/index/external.htm: -------------------------------------------------------------------------------- 1 | <%+rooter/external%> -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/modlog/modlogger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/modlog/modlogger.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/profile/loadcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/profile/loadcfg.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/profile/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/profile/restart.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/profile/savecfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/profile/savecfg.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/autoapn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ROOTER=/usr/lib/rooter 4 | 5 | log() { 6 | logger -t "SimLock " "$@" 7 | } 8 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/cdmafind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/cdmafind.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/chan2band.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/chan2band.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/gettype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/gettype.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/lockchk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/lockchk.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/meigdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/meigdata.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/phone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/phone.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/t77data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/t77data.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/common/ztedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/common/ztedata.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/connect/bandmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/connect/bandmask -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/connect/conmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/connect/conmon.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/customname.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/customname.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/auto.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/auto.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/baseinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/baseinfo.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/cellinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/cellinfo.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/cgpaddr.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/cgpaddr.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/curc.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/curc.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/gcom-locked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/gcom-locked -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/gettype.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/gettype.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/meiginfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/meiginfo.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/raw-ip.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/raw-ip.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/reset.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/reset.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/run-at.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/run-at.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/setapn.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/setapn.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/setpin.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/setpin.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/smschk.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/smschk.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/smswrite.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/smswrite.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/t77info.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/t77info.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/ussd.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/ussd.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/zteinfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gcom/zteinfo.gcom -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gpio-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gpio-set.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/gpiomodel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/gpiomodel.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/idown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/idown.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/initialize.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/log/at-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/log/at-logger -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/log/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/log/logger -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/log/modlogger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/log/modlogger.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/log/mrotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/log/mrotate.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/log/rotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/log/rotate.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/logprint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | 4 | modlog "Log Print " "$1 $2 $3 $4 $5 $6" 5 | exit 0 6 | -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/atcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/atcmd.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/celltype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/celltype.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em060-2xbands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em060-2xbands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em12-2xbands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em12-2xbands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em12-3xbands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em12-3xbands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em20-2xbands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/em20-2xbands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/ep06a-bands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/ep06a-bands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/ep06e-bands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/ep06e-bands -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/lock.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/luaops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/luaops.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/mask.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/modechge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/modechge.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/portchge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/portchge.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/restart.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/scancmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/scancmd.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/luci/setcell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/luci/setcell.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/mbimfind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/mbimfind.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/modeswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/modeswitch.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/ncmfind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/ncmfind.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/nitz2sys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/nitz2sys.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/portchge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/portchge.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/proto.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/protofind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/protofind.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/pwrtoggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/pwrtoggle.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/shutall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/shutall.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/signal/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/signal/status.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/simlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/simlock.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/simlockc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/simlockc.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/sms/check_sms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/sms/check_sms.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/timezone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/timezone.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/tzone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/tzone.lua -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/lib/rooter/ussd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/lib/rooter/ussd.sh -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/usr/sbin/modlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/usr/sbin/modlog -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/css/cascade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/css/cascade.css -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/css/dark.css -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/css/fonts.css -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.eot -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.svg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/argon.ttf -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/font.eot -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/font.svg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/font.ttf -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/font.woff -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/fonts/fonts.css -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/icons/arrow.svg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/icons/menu.svg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/img/argon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/img/argon.svg -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/img/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/img/blank.png -------------------------------------------------------------------------------- /rooter/ext-rooter-basic/files/www/luci-static/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/rooter/ext-rooter-basic/files/www/luci-static/img/open.png -------------------------------------------------------------------------------- /sendat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/Makefile -------------------------------------------------------------------------------- /sendat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/README.md -------------------------------------------------------------------------------- /sendat/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/Makefile -------------------------------------------------------------------------------- /sendat/src/pdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/pdu.c -------------------------------------------------------------------------------- /sendat/src/pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/pdu.h -------------------------------------------------------------------------------- /sendat/src/pdu_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/pdu_decoder.c -------------------------------------------------------------------------------- /sendat/src/sendat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/sendat.c -------------------------------------------------------------------------------- /sendat/src/ucs2_to_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sendat/src/ucs2_to_utf8.c -------------------------------------------------------------------------------- /sms-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sms-tool/Makefile -------------------------------------------------------------------------------- /sms-tool/patches/0001-Update-sms_main.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siriling/5G-Modem-Support/HEAD/sms-tool/patches/0001-Update-sms_main.c.patch --------------------------------------------------------------------------------