- In order to reduce the extra patch code and increase the rate of hunk succeed, we do not rename the symbols in KernelSU drvier but instead do it all in kernel/kallsym.c - Make susfs_starts_with() global as it maybe useful in future Co-authored-by: simonpunk <simonpunk2016@gmail.com>
15 lines
199 B
C
15 lines
199 B
C
#ifndef __KSU_H_KSUD
|
|
#define __KSU_H_KSUD
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define KSUD_PATH "/data/adb/ksud"
|
|
|
|
void on_post_fs_data(void);
|
|
|
|
bool ksu_is_safe_mode(void);
|
|
|
|
extern u32 ksu_devpts_sid;
|
|
|
|
#endif
|