Gitiles
Code Review
Sign In
review.blissroms.org
/
platform_vendor_bliss
/
8ab8c2f35dcba2aae9c71e632527d703fe10b18e
/
.
/
addonsu
/
unmount-system.sh
blob: 19b34311cf829af09d16b64f11a3abd3c17056fa [
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_root
;
then
exit
0
fi
else
if
umount
/
system
;
then
exit
0
fi
fi
exit
1