├── .github └── workflows │ └── build-kernel.yml ├── README.md ├── README_EN.md ├── boot └── boot.img ├── config.env └── patches └── patches.sh /.github/workflows/build-kernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/.github/workflows/build-kernel.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/README_EN.md -------------------------------------------------------------------------------- /boot/boot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/boot/boot.img -------------------------------------------------------------------------------- /config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/config.env -------------------------------------------------------------------------------- /patches/patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoleGun/KernelSU_Action/HEAD/patches/patches.sh --------------------------------------------------------------------------------