diff --git a/userspace/ksud/src/module.rs b/userspace/ksud/src/module.rs index 92e2cb59..cb69d52c 100644 --- a/userspace/ksud/src/module.rs +++ b/userspace/ksud/src/module.rs @@ -53,6 +53,7 @@ fn exec_install_script(module_file: &str) -> Result<()> { ), ) .env("KSU", "true") + .env("KSU_NEXT", "true") .env("KSU_KERNEL_VER_CODE", ksucalls::get_version().to_string()) .env("KSU_VER", defs::VERSION_NAME) .env("KSU_VER_CODE", defs::VERSION_CODE) @@ -178,6 +179,7 @@ fn exec_script>(path: T, wait: bool) -> Result<()> { .arg(path.as_ref()) .env("ASH_STANDALONE", "1") .env("KSU", "true") + .env("KSU_NEXT", "true") .env("KSU_KERNEL_VER_CODE", ksucalls::get_version().to_string()) .env("KSU_VER_CODE", defs::VERSION_CODE) .env("KSU_VER", defs::VERSION_NAME)