Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 701 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 701 Bytes

KernelSU

Build Kernel with KernelSU

Installing as a part of the GKI based kernels

  1. Let's take [linux] as the path to your kernel source dir.
        cd [linux]
        git clone https://github.com/itsshashanksp/KernelSU.git
	cp -ar KernelSU [linux]/drivers/kernelsu
  1. edit [linux]/drivers/Kconfig
	+source "drivers/kernelsu/Kconfig"
  1. edit [linux]/drivers/Makefile
	+obj-$(CONFIG_KSU)	+= kernelsu/
  1. set KSU defconfig
#
# KernelSU
#
CONFIG_KSU=y
# CONFIG_KSU_DEBUG is not set

build your kernel