Gabriele M | 5b33c6c | 2017-01-22 22:50:02 +0100 | [diff] [blame] | 1 | ui_print("Removing su addon..."); |
| 2 | ifelse(is_mounted("/system"), unmount("/system")); |
| 3 | package_extract_file("mount-system.sh", "/tmp/mount-system.sh"); |
Christopher N. Hesse | 1f94c93 | 2018-06-11 21:56:24 +0200 | [diff] [blame] | 4 | package_extract_file("unmount-system.sh", "/tmp/unmount-system.sh"); |
Gabriele M | 5b33c6c | 2017-01-22 22:50:02 +0100 | [diff] [blame] | 5 | set_metadata("/tmp/mount-system.sh", "uid", 0, "gid", 0, "mode", 0755); |
Christopher N. Hesse | 1f94c93 | 2018-06-11 21:56:24 +0200 | [diff] [blame] | 6 | set_metadata("/tmp/unmount-system.sh", "uid", 0, "gid", 0, "mode", 0755); |
Gabriele M | 5b33c6c | 2017-01-22 22:50:02 +0100 | [diff] [blame] | 7 | run_program("/tmp/mount-system.sh") == 0 || abort("Could not mount /system"); |
| 8 | |
LuK1337 | fd798c5 | 2018-07-05 13:40:09 +0200 | [diff] [blame] | 9 | if getprop("ro.build.system_root_image") != "true" then |
| 10 | delete("/system/addon.d/51-addonsu.sh"); |
| 11 | delete("/system/bin/su"); |
| 12 | delete("/system/etc/init/superuser.rc"); |
| 13 | delete("/system/xbin/su"); |
| 14 | else |
| 15 | delete("/system/system/addon.d/51-addonsu.sh"); |
| 16 | delete("/system/system/bin/su"); |
| 17 | delete("/system/system/etc/init/superuser.rc"); |
| 18 | delete("/system/system/xbin/su"); |
| 19 | endif; |
Gabriele M | 5b33c6c | 2017-01-22 22:50:02 +0100 | [diff] [blame] | 20 | |
Christopher N. Hesse | 1f94c93 | 2018-06-11 21:56:24 +0200 | [diff] [blame] | 21 | run_program("/tmp/unmount-system.sh") == 0 || ui_print("Could not unmount /system"); |
Gabriele M | 5b33c6c | 2017-01-22 22:50:02 +0100 | [diff] [blame] | 22 | ui_print("Done"); |
| 23 | set_progress(1.000000); |