kernel: When CONFIG_KSU = m, disable sulog

This commit is contained in:
ShirkNeko
2025-11-02 03:09:55 +08:00
parent bd0b07cba9
commit c06d694ebc
3 changed files with 10 additions and 2 deletions

View File

@@ -4,7 +4,11 @@
#include <linux/types.h>
#include <linux/version.h>
#define __SULOG_GATE 1
#ifdef KSU_MODULE
#define __SULOG_GATE 0
#else
#define __SULOG_GATE 1
#endif
#if __SULOG_GATE
extern struct timezone sys_tz;