No need extra tmpfs for worker

This commit is contained in:
LoveSy
2024-02-22 22:19:31 +08:00
committed by John Wu
parent 10069215f4
commit 156b0e67ca
3 changed files with 7 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ void revert_unmount() {
// Unmount dummy skeletons and MAGISKTMP
// since mirror nodes are always mounted under skeleton, we don't have to specifically unmount
for (auto &info: parse_mount_info("self")) {
if (info.source == "magisk" || info.source == "worker" || // magisktmp tmpfs
if (info.source == "magisk" || // magisktmp tmpfs
info.root.starts_with("/adb/modules")) { // bind mount from data partition
targets.insert(info.target);
}