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

This commit is contained in:
David Anderson 2022-03-23 18:09:25 +00:00 committed by Gerrit Code Review
commit b51b109ea9

View file

@ -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;