source: mass rename KernelSU -> KernelSU-Next

This commit is contained in:
Rifat Azad
2024-12-21 02:06:32 +06:00
parent df700143da
commit ef4714871e
10 changed files with 18 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
#!/system/bin/sh
############################################
# KernelSU installer script
# KernelSU-Next installer script
# mostly from module_installer.sh
# and util_functions.sh in Magisk
############################################
@@ -369,7 +369,7 @@ install_module() {
set_permissions
else
print_title "$MODNAME" "by $MODAUTH"
print_title "Powered by KernelSU"
print_title "Powered by KernelSU-Next"
unzip -o "$ZIPFILE" customize.sh -d $MODPATH >&2

View File

@@ -223,7 +223,7 @@ pub fn uninstall(magiskboot_path: Option<PathBuf>) -> Result<()> {
std::fs::remove_dir_all(defs::MODULE_DIR).ok();
println!("- Restore boot image..");
boot_patch::restore(None, magiskboot_path, true)?;
println!("- Uninstall KernelSU manager..");
println!("- Uninstall KernelSU-Next manager..");
Command::new("pm")
.args(["uninstall", "com.rifsxd.ksunext"])
.spawn()?;