├── .github └── workflows │ ├── build-k2p.yml │ ├── build-mt7981-apbase.yml │ ├── build-mt7981.yml │ ├── build-newifi_d2.yml │ ├── build-r619ac.yml │ ├── build-ufi003.yml │ └── build-x86_64.yml ├── LICENSE ├── README.md ├── README_zh.md ├── diy ├── ipq40xx │ ├── diy-after-feeds.sh │ └── diy-before-feeds.sh ├── msm89xx │ └── ufi003 │ │ ├── diy-after-feeds.sh │ │ └── diy-before-feeds.sh ├── mt7981 │ ├── diy-after-feeds.sh │ └── diy-before-feeds.sh ├── mt7981_apbase │ ├── diy-after-feeds.sh │ └── diy-before-feeds.sh ├── ramips_mt7621 │ ├── newifi_d2 │ │ ├── diy-after-feeds.sh │ │ └── diy-before-feeds.sh │ └── phicomm_k2p │ │ ├── diy-after-feeds.sh │ │ └── diy-before-feeds.sh └── x86_64 │ ├── diy-after-feeds.sh │ └── diy-before-feeds.sh ├── patches └── 00_python3.patch └── seeds ├── k2p.seed ├── mt7981.seed ├── mt7981_apbase.seed ├── newifi_d2.seed ├── r619ac.seed ├── ufi003.seed └── x86_64.seed /.github/workflows/build-k2p.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-k2p.yml -------------------------------------------------------------------------------- /.github/workflows/build-mt7981-apbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-mt7981-apbase.yml -------------------------------------------------------------------------------- /.github/workflows/build-mt7981.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-mt7981.yml -------------------------------------------------------------------------------- /.github/workflows/build-newifi_d2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-newifi_d2.yml -------------------------------------------------------------------------------- /.github/workflows/build-r619ac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-r619ac.yml -------------------------------------------------------------------------------- /.github/workflows/build-ufi003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-ufi003.yml -------------------------------------------------------------------------------- /.github/workflows/build-x86_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/.github/workflows/build-x86_64.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/README_zh.md -------------------------------------------------------------------------------- /diy/ipq40xx/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ipq40xx/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/ipq40xx/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ipq40xx/diy-before-feeds.sh -------------------------------------------------------------------------------- /diy/msm89xx/ufi003/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/msm89xx/ufi003/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/msm89xx/ufi003/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/msm89xx/ufi003/diy-before-feeds.sh -------------------------------------------------------------------------------- /diy/mt7981/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/mt7981/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/mt7981/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/mt7981/diy-before-feeds.sh -------------------------------------------------------------------------------- /diy/mt7981_apbase/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/mt7981_apbase/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/mt7981_apbase/diy-before-feeds.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /diy/ramips_mt7621/newifi_d2/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ramips_mt7621/newifi_d2/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/ramips_mt7621/newifi_d2/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ramips_mt7621/newifi_d2/diy-before-feeds.sh -------------------------------------------------------------------------------- /diy/ramips_mt7621/phicomm_k2p/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ramips_mt7621/phicomm_k2p/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/ramips_mt7621/phicomm_k2p/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/ramips_mt7621/phicomm_k2p/diy-before-feeds.sh -------------------------------------------------------------------------------- /diy/x86_64/diy-after-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/x86_64/diy-after-feeds.sh -------------------------------------------------------------------------------- /diy/x86_64/diy-before-feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/diy/x86_64/diy-before-feeds.sh -------------------------------------------------------------------------------- /patches/00_python3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/patches/00_python3.patch -------------------------------------------------------------------------------- /seeds/k2p.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/k2p.seed -------------------------------------------------------------------------------- /seeds/mt7981.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/mt7981.seed -------------------------------------------------------------------------------- /seeds/mt7981_apbase.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/mt7981_apbase.seed -------------------------------------------------------------------------------- /seeds/newifi_d2.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/newifi_d2.seed -------------------------------------------------------------------------------- /seeds/r619ac.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/r619ac.seed -------------------------------------------------------------------------------- /seeds/ufi003.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/ufi003.seed -------------------------------------------------------------------------------- /seeds/x86_64.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinMX/Railgun/HEAD/seeds/x86_64.seed --------------------------------------------------------------------------------