diff --git a/LKM-Source/Kconfig b/LKM-Source/Kconfig new file mode 100644 index 0000000..1681d47 --- /dev/null +++ b/LKM-Source/Kconfig @@ -0,0 +1,17 @@ +menu "Re:Kernel" + +config REKERNEL + bool "Re:Kernel module" + depends on MODULES + default n + help + Make tombstone users get a better experience. + Tips: Enabling this will build Re-Kernel as a module + +config REKERNEL_NETWORK + bool "Re:Kernel NetReceive unfreeze support" + depends on REKERNEL + default n + help + Allow ReKernel to listen to network activity then send signal to tombstone. +endmenu diff --git a/LKM-Source/Makefile b/LKM-Source/Makefile new file mode 100644 index 0000000..2aef0d3 --- /dev/null +++ b/LKM-Source/Makefile @@ -0,0 +1,2 @@ +obj-m := rekernel.o +ccflags-$(CONFIG_REKERNEL_NETWORK) += -DNETWORK_FILTER \ No newline at end of file diff --git a/LKM-Source/rekernel.h b/LKM-Source/rekernel.h index 4fac212..c727980 100644 --- a/LKM-Source/rekernel.h +++ b/LKM-Source/rekernel.h @@ -8,7 +8,7 @@ // #define KERNEL_6_6 // #define KERNEL_6_12 -#define NETWORK_FILTER +// #define NETWORK_FILTER #define CLEAN_UP_ASYNC_BINDER #define MIN_USERAPP_UID (10000)