Gitiles
Code Review
Sign In
review.blissroms.org
/
platform_vendor_bliss
/
658abd5f3a80b94eda0bdc307a2d83b6d43a9b3d
/
.
/
addonsu
/
unmount-system.sh
blob: 60c5e18fb7703a97f25254eb099911a5595825b2 [
file
] [
log
] [
blame
]
#!/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
&&
umount
/
system_root
;
then
exit
0
fi
fi
if
umount
/
system
;
then
exit
0
fi
exit
1