├── .github └── workflows │ ├── N1-测试.yml │ └── N1.yml ├── N1.config ├── README.md ├── diy-test.sh ├── diy.sh └── n1 ├── Dockerfile ├── build-test.sh ├── build.sh └── patches ├── cpustat ├── luci-admin-status-index-html.patch └── rc.local /.github/workflows/N1-测试.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/.github/workflows/N1-测试.yml -------------------------------------------------------------------------------- /.github/workflows/N1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/.github/workflows/N1.yml -------------------------------------------------------------------------------- /N1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/N1.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/README.md -------------------------------------------------------------------------------- /diy-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/diy-test.sh -------------------------------------------------------------------------------- /diy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/diy.sh -------------------------------------------------------------------------------- /n1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/Dockerfile -------------------------------------------------------------------------------- /n1/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/build-test.sh -------------------------------------------------------------------------------- /n1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/build.sh -------------------------------------------------------------------------------- /n1/patches/cpustat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/patches/cpustat -------------------------------------------------------------------------------- /n1/patches/luci-admin-status-index-html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/patches/luci-admin-status-index-html.patch -------------------------------------------------------------------------------- /n1/patches/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobotoy/N1-Openwrt-Actions/HEAD/n1/patches/rc.local --------------------------------------------------------------------------------