You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
653 B
Plaintext
20 lines
653 B
Plaintext
ui_print("Removing su addon...");
|
|
ifelse(is_mounted("/system"), unmount("/system"));
|
|
package_extract_file("mount-system.sh", "/tmp/mount-system.sh");
|
|
set_metadata("/tmp/mount-system.sh", "uid", 0, "gid", 0, "mode", 0755);
|
|
run_program("/tmp/mount-system.sh") == 0 || abort("Could not mount /system");
|
|
|
|
if getprop("ro.build.system_root_image") != "true" then
|
|
delete("/system/addon.d/51-addonsu.sh");
|
|
delete("/system/bin/su");
|
|
delete("/system/xbin/su");
|
|
else
|
|
delete("/system/system/addon.d/51-addonsu.sh");
|
|
delete("/system/system/bin/su");
|
|
delete("/system/system/xbin/su");
|
|
endif;
|
|
|
|
unmount("/system");
|
|
ui_print("Done");
|
|
set_progress(1.000000);
|