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

Commit 06d9627e authored by David Anderson's avatar David Anderson Committed by Automerger Merge Worker
Browse files

Merge "fastboot: Fallback to "raw" partition type if fastboot hal isn't present" am: b51b109e

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2005710

Change-Id: Ie251ba25101661df8f36368845bbf9755035211d
parents 5b9eb5fd b51b109e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -332,8 +332,8 @@ bool GetPartitionType(FastbootDevice* device, const std::vector<std::string>& ar

    auto fastboot_hal = device->fastboot_hal();
    if (!fastboot_hal) {
        *message = "Fastboot HAL not found";
        return false;
        *message = "raw";
        return true;
    }

    FileSystemType type;