├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── files ├── etc ├── config │ └── gdut_drcom ├── gdut-drcom.conf └── init.d │ └── gdut-drcom └── usr ├── bin ├── gdut-drcom-patch └── gdut-drcom-unpatch └── lib └── lua └── luci ├── controller └── gdut-drcom.lua └── model └── cbi └── gdut-drcom.lua /.gitignore: -------------------------------------------------------------------------------- 1 | update.sh 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /files/etc/config/gdut_drcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/etc/config/gdut_drcom -------------------------------------------------------------------------------- /files/etc/gdut-drcom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/etc/gdut-drcom.conf -------------------------------------------------------------------------------- /files/etc/init.d/gdut-drcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/etc/init.d/gdut-drcom -------------------------------------------------------------------------------- /files/usr/bin/gdut-drcom-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/usr/bin/gdut-drcom-patch -------------------------------------------------------------------------------- /files/usr/bin/gdut-drcom-unpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/usr/bin/gdut-drcom-unpatch -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/controller/gdut-drcom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/usr/lib/lua/luci/controller/gdut-drcom.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/model/cbi/gdut-drcom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnhw01/gdut-drcom-for-openwrt/HEAD/files/usr/lib/lua/luci/model/cbi/gdut-drcom.lua --------------------------------------------------------------------------------