summaryrefslogtreecommitdiffstats
path: root/addonsu/updater-script-remove
diff options
context:
space:
mode:
authorGabriele M <moto.falcon.git@gmail.com>2017-01-22 22:50:02 +0100
committerJason Riordan <jriordan001@gmail.com>2017-02-27 23:33:02 -0500
commit5f124ae55be98d4996658f05aaac4c63802ea590 (patch)
tree86d026173350088bdafa1efaf469e8f602d681c3 /addonsu/updater-script-remove
parent52996421a116965bff6b7b58bd99693b4ef02d23 (diff)
downloadvendor_replicant-5f124ae55be98d4996658f05aaac4c63802ea590.zip
vendor_replicant-5f124ae55be98d4996658f05aaac4c63802ea590.tar.gz
vendor_replicant-5f124ae55be98d4996658f05aaac4c63802ea590.tar.bz2
Add target to make a flashable su addon
Run 'make addonsu' to make a flashable zip to install the addon and 'make addonsu-remove' for a flashable zip that removes it. Change-Id: I5b2fe67f98f2474b923c074dc6025b47c6db2ae0
Diffstat (limited to 'addonsu/updater-script-remove')
-rw-r--r--addonsu/updater-script-remove19
1 files changed, 19 insertions, 0 deletions
diff --git a/addonsu/updater-script-remove b/addonsu/updater-script-remove
new file mode 100644
index 0000000..dab1df9
--- /dev/null
+++ b/addonsu/updater-script-remove
@@ -0,0 +1,19 @@
+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);