platform_vendor_tequila/addonsu/unmount-system.sh
Michael Bestas 79e91fe4ca addonsu: Don't mount SAR system to /system
Change-Id: Ic2f0a994477a5bc04b32e24b0bd4baaa2773ff55
2019-02-12 10:06:12 -06:00

15 lines
253 B
Bash

#!/sbin/sh
# Modern devices use /system as root ("/")
system_as_root=`getprop ro.build.system_root_image`
if [ "$system_as_root" == "true" ]; then
if umount /system_root; then
exit 0
fi
else
if umount /system; then
exit 0
fi
fi
exit 1