├── .github └── workflows │ ├── Auto-Clean.yml │ ├── QCA-6.12-LiBwrt.yml │ ├── QCA-6.12-VIKINGYFY.yml │ ├── WRT-CORE-TEST.yml │ └── WRT-CORE.yml ├── .gitignore ├── Config ├── GENERAL.txt ├── IPQ60XX-NOWIFI.txt ├── IPQ60XX-WIFI.txt ├── IPQ807X-NOWIFI.txt ├── IPQ807X-WIFI.txt ├── MEDIATEK.txt ├── ROCKCHIP.txt └── X86.txt ├── README.md ├── Scripts ├── Handles.sh ├── Packages.sh ├── Settings.sh ├── function.sh └── init_build_environment.sh ├── diy.sh ├── files └── etc │ └── config │ └── argon ├── package ├── dae │ ├── Makefile │ ├── files │ │ ├── dae.config │ │ └── dae.init │ └── test.sh ├── luci-app-dae │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── dae │ │ │ ├── config.js │ │ │ ├── log.js │ │ │ └── settings.js │ ├── po │ │ ├── templates │ │ │ └── dae.pot │ │ └── zh_Hans │ │ │ └── dae.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-dae.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dae.json └── v2ray-geodata │ ├── Makefile │ ├── init.sh │ └── v2ray-geodata-updater └── patches ├── 001-fix_compile_with_ccache.patch └── daed └── Makefile /.github/workflows/Auto-Clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/.github/workflows/Auto-Clean.yml -------------------------------------------------------------------------------- /.github/workflows/QCA-6.12-LiBwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/.github/workflows/QCA-6.12-LiBwrt.yml -------------------------------------------------------------------------------- /.github/workflows/QCA-6.12-VIKINGYFY.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/.github/workflows/QCA-6.12-VIKINGYFY.yml -------------------------------------------------------------------------------- /.github/workflows/WRT-CORE-TEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/.github/workflows/WRT-CORE-TEST.yml -------------------------------------------------------------------------------- /.github/workflows/WRT-CORE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/.github/workflows/WRT-CORE.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /wrt 2 | /.idea -------------------------------------------------------------------------------- /Config/GENERAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/GENERAL.txt -------------------------------------------------------------------------------- /Config/IPQ60XX-NOWIFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/IPQ60XX-NOWIFI.txt -------------------------------------------------------------------------------- /Config/IPQ60XX-WIFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/IPQ60XX-WIFI.txt -------------------------------------------------------------------------------- /Config/IPQ807X-NOWIFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/IPQ807X-NOWIFI.txt -------------------------------------------------------------------------------- /Config/IPQ807X-WIFI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/IPQ807X-WIFI.txt -------------------------------------------------------------------------------- /Config/MEDIATEK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/MEDIATEK.txt -------------------------------------------------------------------------------- /Config/ROCKCHIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/ROCKCHIP.txt -------------------------------------------------------------------------------- /Config/X86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Config/X86.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Handles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Scripts/Handles.sh -------------------------------------------------------------------------------- /Scripts/Packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Scripts/Packages.sh -------------------------------------------------------------------------------- /Scripts/Settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Scripts/Settings.sh -------------------------------------------------------------------------------- /Scripts/function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Scripts/function.sh -------------------------------------------------------------------------------- /Scripts/init_build_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/Scripts/init_build_environment.sh -------------------------------------------------------------------------------- /diy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/diy.sh -------------------------------------------------------------------------------- /files/etc/config/argon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/files/etc/config/argon -------------------------------------------------------------------------------- /package/dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/dae/Makefile -------------------------------------------------------------------------------- /package/dae/files/dae.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/dae/files/dae.config -------------------------------------------------------------------------------- /package/dae/files/dae.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/dae/files/dae.init -------------------------------------------------------------------------------- /package/dae/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/dae/test.sh -------------------------------------------------------------------------------- /package/luci-app-dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/Makefile -------------------------------------------------------------------------------- /package/luci-app-dae/htdocs/luci-static/resources/view/dae/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/htdocs/luci-static/resources/view/dae/config.js -------------------------------------------------------------------------------- /package/luci-app-dae/htdocs/luci-static/resources/view/dae/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/htdocs/luci-static/resources/view/dae/log.js -------------------------------------------------------------------------------- /package/luci-app-dae/htdocs/luci-static/resources/view/dae/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/htdocs/luci-static/resources/view/dae/settings.js -------------------------------------------------------------------------------- /package/luci-app-dae/po/templates/dae.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/po/templates/dae.pot -------------------------------------------------------------------------------- /package/luci-app-dae/po/zh_Hans/dae.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/po/zh_Hans/dae.po -------------------------------------------------------------------------------- /package/luci-app-dae/root/usr/share/luci/menu.d/luci-app-dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/root/usr/share/luci/menu.d/luci-app-dae.json -------------------------------------------------------------------------------- /package/luci-app-dae/root/usr/share/rpcd/acl.d/luci-app-dae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/luci-app-dae/root/usr/share/rpcd/acl.d/luci-app-dae.json -------------------------------------------------------------------------------- /package/v2ray-geodata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/v2ray-geodata/Makefile -------------------------------------------------------------------------------- /package/v2ray-geodata/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/v2ray-geodata/init.sh -------------------------------------------------------------------------------- /package/v2ray-geodata/v2ray-geodata-updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/package/v2ray-geodata/v2ray-geodata-updater -------------------------------------------------------------------------------- /patches/001-fix_compile_with_ccache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/patches/001-fix_compile_with_ccache.patch -------------------------------------------------------------------------------- /patches/daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtall/OpenWRT-CI/HEAD/patches/daed/Makefile --------------------------------------------------------------------------------