From ad90267593bd98c7a5c0f9fc8589b9619d77355c Mon Sep 17 00:00:00 2001 From: TwinbornPlate75 <42514046+TwinbornPlate75@users.noreply.github.com> Date: Wed, 26 Nov 2025 23:26:55 +0800 Subject: [PATCH] kernel: Manual hook shouldn't be enabled when susfs is enabled (#630) susfs already includes hook since v2.0.0, so manual hook shouldn't be enabled when susfs is enabled --- kernel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Kconfig b/kernel/Kconfig index 00f0e2cc..a02389e5 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -50,7 +50,7 @@ config KPM config KSU_MANUAL_HOOK bool "Hook KernelSU manually" - depends on KSU != m + depends on KSU != m && !KSU_SUSFS help If enabled, Hook required KernelSU syscalls with manually-patched function.