From 89288a0c59986884ad5f147ed07c27e88e05ca24 Mon Sep 17 00:00:00 2001 From: Huy Minh <39849246+hmtheboy154@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:48:22 +0000 Subject: [PATCH] Kconfig : Make KSU depends on OVERLAY_FS (#25) As KernelSU now support modules and mounting system as R/W using overlayfs, it's time to require overlayfs when trying to compile it. --- kernel/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/Kconfig b/kernel/Kconfig index 7c1f93a3..ae663e42 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -2,5 +2,6 @@ config KSU tristate "KernelSU module" default y depends on KPROBES + depends on OVERLAY_FS help This is the KSU privilege driver for android system.