├── .github └── workflows │ ├── Immortalwrt.yml │ ├── Lede.yml │ ├── Lienol.yml │ ├── Official.yml │ ├── Xwrt.yml │ ├── compile.yml │ ├── institution.yml │ └── packaging.yml ├── LICENSE ├── README.md └── backups ├── Immortalwrt ├── diy-part.sh ├── diy │ ├── README │ └── package │ │ └── base-files │ │ └── files │ │ └── etc │ │ └── banner ├── files │ └── README ├── patches │ └── README ├── relevance │ ├── README │ ├── actions_version │ ├── armsrstart │ └── start ├── seed │ ├── aarch64 │ └── x86_64 └── settings.ini ├── Lede ├── diy-part.sh ├── diy │ └── package │ │ ├── base-files │ │ └── files │ │ │ └── etc │ │ │ ├── banner │ │ │ └── profile │ │ └── lean │ │ └── autocore │ │ └── files │ │ └── x86 │ │ └── index.htm ├── files │ └── README ├── patches │ └── README ├── relevance │ ├── README │ ├── actions_version │ ├── armsrstart │ ├── run_number │ ├── settings.ini │ └── start ├── seed │ ├── aarch64 │ ├── asus_rt-acrh17 │ ├── d-team_newifi-d2 │ ├── k2p │ ├── p2w_r619ac-128m │ ├── phicomm_k2p │ ├── x86_32 │ ├── x86_64 │ ├── xiaomi_mi-router-4a-gigabit │ ├── xiaomi_redmi-router-ac2100 │ ├── xiaomi_redmi-router-ax6s │ └── xiaoyu_xy-c5 └── settings.ini ├── Lienol ├── diy-part.sh ├── diy │ ├── README │ └── package │ │ └── base-files │ │ └── files │ │ └── etc │ │ └── banner ├── files │ └── README ├── patches │ └── README ├── relevance │ ├── README │ ├── actions_version │ ├── armsrstart │ └── start ├── seed │ ├── aarch64 │ └── x86_64 └── settings.ini ├── Official ├── diy-part.sh ├── diy │ ├── README │ └── package │ │ └── base-files │ │ └── files │ │ └── etc │ │ └── banner ├── files │ └── README ├── patches │ └── README ├── relevance │ ├── README │ ├── actions_version │ ├── armsrstart │ └── start ├── seed │ ├── 1907-phicomm-k3 │ ├── aarch64 │ ├── phicomm_k3 │ └── x86_64 └── settings.ini ├── Xwrt ├── diy-part.sh ├── diy │ ├── README │ └── package │ │ └── base-files │ │ └── files │ │ └── etc │ │ └── banner ├── files │ └── README ├── patches │ └── README ├── relevance │ ├── README │ ├── actions_version │ ├── armsrstart │ └── start ├── seed │ ├── aarch64 │ └── x86_64 └── settings.ini └── workflows ├── Immortalwrt.yml ├── Lede.yml ├── Lienol.yml ├── Official.yml ├── Xwrt.yml ├── compile.yml ├── institution.yml └── packaging.yml /.github/workflows/Immortalwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/Immortalwrt.yml -------------------------------------------------------------------------------- /.github/workflows/Lede.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/Lede.yml -------------------------------------------------------------------------------- /.github/workflows/Lienol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/Lienol.yml -------------------------------------------------------------------------------- /.github/workflows/Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/Official.yml -------------------------------------------------------------------------------- /.github/workflows/Xwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/Xwrt.yml -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/institution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/institution.yml -------------------------------------------------------------------------------- /.github/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/.github/workflows/packaging.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/README.md -------------------------------------------------------------------------------- /backups/Immortalwrt/diy-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/diy-part.sh -------------------------------------------------------------------------------- /backups/Immortalwrt/diy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/diy/README -------------------------------------------------------------------------------- /backups/Immortalwrt/diy/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/diy/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /backups/Immortalwrt/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/files/README -------------------------------------------------------------------------------- /backups/Immortalwrt/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/patches/README -------------------------------------------------------------------------------- /backups/Immortalwrt/relevance/README: -------------------------------------------------------------------------------- 1 | 请勿修改和删除此文件夹内的任何文件 2 | -------------------------------------------------------------------------------- /backups/Immortalwrt/relevance/actions_version: -------------------------------------------------------------------------------- 1 | ACTIONS_VERSION=1.0.6 2 | -------------------------------------------------------------------------------- /backups/Immortalwrt/relevance/armsrstart: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Immortalwrt/relevance/start: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Immortalwrt/seed/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/seed/aarch64 -------------------------------------------------------------------------------- /backups/Immortalwrt/seed/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/seed/x86_64 -------------------------------------------------------------------------------- /backups/Immortalwrt/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Immortalwrt/settings.ini -------------------------------------------------------------------------------- /backups/Lede/diy-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/diy-part.sh -------------------------------------------------------------------------------- /backups/Lede/diy/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/diy/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /backups/Lede/diy/package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/diy/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /backups/Lede/diy/package/lean/autocore/files/x86/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/diy/package/lean/autocore/files/x86/index.htm -------------------------------------------------------------------------------- /backups/Lede/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/files/README -------------------------------------------------------------------------------- /backups/Lede/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/patches/README -------------------------------------------------------------------------------- /backups/Lede/relevance/README: -------------------------------------------------------------------------------- 1 | 请勿修改和删除此文件夹内的任何文件 2 | -------------------------------------------------------------------------------- /backups/Lede/relevance/actions_version: -------------------------------------------------------------------------------- 1 | ACTIONS_VERSION=1.0.6 2 | -------------------------------------------------------------------------------- /backups/Lede/relevance/armsrstart: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Lede/relevance/run_number: -------------------------------------------------------------------------------- 1 | DEVICE_NUMBER=58 2 | chonglaiss=是E5的CPU 3 | -------------------------------------------------------------------------------- /backups/Lede/relevance/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/relevance/settings.ini -------------------------------------------------------------------------------- /backups/Lede/relevance/start: -------------------------------------------------------------------------------- 1 | Lede-master-seed/x86_64-2024年02月13号16时35分08秒 2 | -------------------------------------------------------------------------------- /backups/Lede/seed/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/aarch64 -------------------------------------------------------------------------------- /backups/Lede/seed/asus_rt-acrh17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/asus_rt-acrh17 -------------------------------------------------------------------------------- /backups/Lede/seed/d-team_newifi-d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/d-team_newifi-d2 -------------------------------------------------------------------------------- /backups/Lede/seed/k2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/k2p -------------------------------------------------------------------------------- /backups/Lede/seed/p2w_r619ac-128m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/p2w_r619ac-128m -------------------------------------------------------------------------------- /backups/Lede/seed/phicomm_k2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/phicomm_k2p -------------------------------------------------------------------------------- /backups/Lede/seed/x86_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/x86_32 -------------------------------------------------------------------------------- /backups/Lede/seed/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/x86_64 -------------------------------------------------------------------------------- /backups/Lede/seed/xiaomi_mi-router-4a-gigabit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/xiaomi_mi-router-4a-gigabit -------------------------------------------------------------------------------- /backups/Lede/seed/xiaomi_redmi-router-ac2100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/xiaomi_redmi-router-ac2100 -------------------------------------------------------------------------------- /backups/Lede/seed/xiaomi_redmi-router-ax6s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/xiaomi_redmi-router-ax6s -------------------------------------------------------------------------------- /backups/Lede/seed/xiaoyu_xy-c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/seed/xiaoyu_xy-c5 -------------------------------------------------------------------------------- /backups/Lede/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lede/settings.ini -------------------------------------------------------------------------------- /backups/Lienol/diy-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/diy-part.sh -------------------------------------------------------------------------------- /backups/Lienol/diy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/diy/README -------------------------------------------------------------------------------- /backups/Lienol/diy/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/diy/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /backups/Lienol/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/files/README -------------------------------------------------------------------------------- /backups/Lienol/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/patches/README -------------------------------------------------------------------------------- /backups/Lienol/relevance/README: -------------------------------------------------------------------------------- 1 | 请勿修改和删除此文件夹内的任何文件 2 | -------------------------------------------------------------------------------- /backups/Lienol/relevance/actions_version: -------------------------------------------------------------------------------- 1 | ACTIONS_VERSION=1.0.6 2 | -------------------------------------------------------------------------------- /backups/Lienol/relevance/armsrstart: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Lienol/relevance/start: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Lienol/seed/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/seed/aarch64 -------------------------------------------------------------------------------- /backups/Lienol/seed/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/seed/x86_64 -------------------------------------------------------------------------------- /backups/Lienol/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Lienol/settings.ini -------------------------------------------------------------------------------- /backups/Official/diy-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/diy-part.sh -------------------------------------------------------------------------------- /backups/Official/diy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/diy/README -------------------------------------------------------------------------------- /backups/Official/diy/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/diy/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /backups/Official/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/files/README -------------------------------------------------------------------------------- /backups/Official/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/patches/README -------------------------------------------------------------------------------- /backups/Official/relevance/README: -------------------------------------------------------------------------------- 1 | 请勿修改和删除此文件夹内的任何文件 2 | -------------------------------------------------------------------------------- /backups/Official/relevance/actions_version: -------------------------------------------------------------------------------- 1 | ACTIONS_VERSION=1.0.6 2 | -------------------------------------------------------------------------------- /backups/Official/relevance/armsrstart: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Official/relevance/start: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Official/seed/1907-phicomm-k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/seed/1907-phicomm-k3 -------------------------------------------------------------------------------- /backups/Official/seed/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/seed/aarch64 -------------------------------------------------------------------------------- /backups/Official/seed/phicomm_k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/seed/phicomm_k3 -------------------------------------------------------------------------------- /backups/Official/seed/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/seed/x86_64 -------------------------------------------------------------------------------- /backups/Official/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Official/settings.ini -------------------------------------------------------------------------------- /backups/Xwrt/diy-part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/diy-part.sh -------------------------------------------------------------------------------- /backups/Xwrt/diy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/diy/README -------------------------------------------------------------------------------- /backups/Xwrt/diy/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/diy/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /backups/Xwrt/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/files/README -------------------------------------------------------------------------------- /backups/Xwrt/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/patches/README -------------------------------------------------------------------------------- /backups/Xwrt/relevance/README: -------------------------------------------------------------------------------- 1 | 请勿修改和删除此文件夹内的任何文件 2 | -------------------------------------------------------------------------------- /backups/Xwrt/relevance/actions_version: -------------------------------------------------------------------------------- 1 | ACTIONS_VERSION=1.0.6 2 | -------------------------------------------------------------------------------- /backups/Xwrt/relevance/armsrstart: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Xwrt/relevance/start: -------------------------------------------------------------------------------- 1 | 20240212090145 2 | -------------------------------------------------------------------------------- /backups/Xwrt/seed/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/seed/aarch64 -------------------------------------------------------------------------------- /backups/Xwrt/seed/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/seed/x86_64 -------------------------------------------------------------------------------- /backups/Xwrt/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/Xwrt/settings.ini -------------------------------------------------------------------------------- /backups/workflows/Immortalwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/Immortalwrt.yml -------------------------------------------------------------------------------- /backups/workflows/Lede.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/Lede.yml -------------------------------------------------------------------------------- /backups/workflows/Lienol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/Lienol.yml -------------------------------------------------------------------------------- /backups/workflows/Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/Official.yml -------------------------------------------------------------------------------- /backups/workflows/Xwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/Xwrt.yml -------------------------------------------------------------------------------- /backups/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/compile.yml -------------------------------------------------------------------------------- /backups/workflows/institution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/institution.yml -------------------------------------------------------------------------------- /backups/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWrtLi/OpenWrtli/HEAD/backups/workflows/packaging.yml --------------------------------------------------------------------------------