Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8437b9a0 authored by Jiyong Park's avatar Jiyong Park Committed by Gerrit Code Review
Browse files

Merge "Fix failure on mounting system_ext partition"

parents 50eb9227 ccd094cd
Loading
Loading
Loading
Loading
+21 −19
Original line number Diff line number Diff line
@@ -897,7 +897,8 @@ void MountMissingSystemPartitions() {
            continue;
        }

        auto system_entry = GetEntryForMountPoint(&fstab, "/system");
        auto system_entries = GetEntriesForMountPoint(&fstab, "/system");
        for (auto& system_entry : system_entries) {
            if (!system_entry) {
                LOG(ERROR) << "Could not find mount entry for /system";
                break;
@@ -921,6 +922,7 @@ void MountMissingSystemPartitions() {

            extra_fstab.emplace_back(std::move(entry));
        }
    }

    SkipMountingPartitions(&extra_fstab, true /* verbose */);
    if (extra_fstab.empty()) {