blob: ba4fcaa8b2b4d21bbfad86ca4cbffa4568c8772b [file] [log] [blame]
Gabriele M5b33c6c2017-01-22 22:50:02 +01001ui_print("Removing su addon...");
2ifelse(is_mounted("/system"), unmount("/system"));
3package_extract_file("mount-system.sh", "/tmp/mount-system.sh");
Christopher N. Hesse1f94c932018-06-11 21:56:24 +02004package_extract_file("unmount-system.sh", "/tmp/unmount-system.sh");
Gabriele M5b33c6c2017-01-22 22:50:02 +01005set_metadata("/tmp/mount-system.sh", "uid", 0, "gid", 0, "mode", 0755);
Christopher N. Hesse1f94c932018-06-11 21:56:24 +02006set_metadata("/tmp/unmount-system.sh", "uid", 0, "gid", 0, "mode", 0755);
Gabriele M5b33c6c2017-01-22 22:50:02 +01007run_program("/tmp/mount-system.sh") == 0 || abort("Could not mount /system");
8
Christopher N. Hesse1f94c932018-06-11 21:56:24 +02009delete("/system/addon.d/51-addonsu.sh");
10delete("/system/bin/su");
11delete("/system/etc/init/superuser.rc");
12delete("/system/xbin/su");
Gabriele M5b33c6c2017-01-22 22:50:02 +010013
Christopher N. Hesse1f94c932018-06-11 21:56:24 +020014run_program("/tmp/unmount-system.sh") == 0 || ui_print("Could not unmount /system");
Gabriele M5b33c6c2017-01-22 22:50:02 +010015ui_print("Done");
16set_progress(1.000000);