mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 02:25:28 +00:00
Add new rules to unmount
This commit is contained in:
parent
b3da28eade
commit
806fec7017
@ -89,10 +89,10 @@ int hide_daemon() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// First unmount the dummy skeletons, cache mounts, and /sbin links
|
// First unmount the mirror, dummy skeletons, cache mounts, and /sbin links
|
||||||
vec_for_each_r(&mount_list, line) {
|
vec_for_each_r(&mount_list, line) {
|
||||||
if (strstr(line, "tmpfs /system") || strstr(line, "tmpfs /vendor") || strstr(line, "tmpfs /sbin")
|
if (strstr(line, "tmpfs /system") || strstr(line, "tmpfs /vendor") || strstr(line, "tmpfs /sbin")
|
||||||
|| (strstr(line, cache_block) && strstr(line, "/system/")) ) {
|
|| (strstr(line, cache_block) && strstr(line, "/system/")) || strstr(line, MIRRDIR) ) {
|
||||||
sscanf(line, "%*s %512s", buffer);
|
sscanf(line, "%*s %512s", buffer);
|
||||||
lazy_unmount(buffer);
|
lazy_unmount(buffer);
|
||||||
}
|
}
|
||||||
@ -107,7 +107,7 @@ int hide_daemon() {
|
|||||||
|
|
||||||
// Unmount loop mounts
|
// Unmount loop mounts
|
||||||
vec_for_each_r(&mount_list, line) {
|
vec_for_each_r(&mount_list, line) {
|
||||||
if (strstr(line, "/dev/block/loop") && !strstr(line, DUMMDIR)) {
|
if (strstr(line, "/dev/block/loop") || strstr(line, DUMMDIR)) {
|
||||||
sscanf(line, "%*s %512s", buffer);
|
sscanf(line, "%*s %512s", buffer);
|
||||||
lazy_unmount(buffer);
|
lazy_unmount(buffer);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user