You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
Co-authored-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> Co-authored-by: liankong <xhsw.new@qq.com> Signed-off-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com>
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
menu "KernelSU"
|
|
|
|
config KSU
|
|
tristate "KernelSU function support"
|
|
depends on OVERLAY_FS
|
|
default y
|
|
help
|
|
Enable kernel-level root privileges on Android System.
|
|
To compile as a module, choose M here: the
|
|
module will be called kernelsu.
|
|
|
|
config KSU_KPROBES_HOOK
|
|
bool "Use kprobes for kernelsu"
|
|
depends on KSU
|
|
depends on KPROBES
|
|
default y
|
|
help
|
|
Disable if you use manual hooks.
|
|
|
|
config KSU_DEBUG
|
|
bool "KernelSU debug mode"
|
|
depends on KSU
|
|
default n
|
|
help
|
|
Enable KernelSU debug mode.
|
|
|
|
config KSU_ALLOWLIST_WORKAROUND
|
|
bool "KernelSU Session Keyring Init workaround"
|
|
depends on KSU
|
|
default n
|
|
help
|
|
Enable session keyring init workaround for problematic devices.
|
|
Useful for situations where the SU allowlist is not kept after a reboot.
|
|
|
|
config KSU_LSM_SECURITY_HOOKS
|
|
bool "use lsm security hooks"
|
|
depends on KSU
|
|
default y
|
|
help
|
|
Disabling this is mostly only useful for kernel 4.1 and older.
|
|
Make sure to implement manual hooks on security/security.c.
|
|
|
|
config KPM
|
|
bool "Enable SukiSU KPM"
|
|
depends on KSU && 64BIT
|
|
default n
|
|
help
|
|
Enabling this option will activate the KPM feature of SukiSU.
|
|
This option is suitable for scenarios where you need to force KPM to be enabled.
|
|
but it may affect system stability.
|
|
|
|
endmenu
|