commit | b51b109ea9eed67ff771d5946c7ec03d395245bb | [log] [tgz] |
---|---|---|
author | David Anderson <dvander@google.com> | Wed Mar 23 18:09:25 2022 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Mar 23 18:09:25 2022 +0000 |
tree | f22de5cda2c0a61c5ef9277d70e3594da9282bcd | |
parent | f1df9ba5c437db9b51b314285fc404efd9d536e2 [diff] | |
parent | 9dd073ebfa02e4efd4f4a6210148c456227f2eab [diff] |
Merge "fastboot: Fallback to "raw" partition type if fastboot hal isn't present"
diff --git a/fastboot/device/variables.cpp b/fastboot/device/variables.cpp index 76e9889..0cf4699 100644 --- a/fastboot/device/variables.cpp +++ b/fastboot/device/variables.cpp
@@ -332,8 +332,8 @@ auto fastboot_hal = device->fastboot_hal(); if (!fastboot_hal) { - *message = "Fastboot HAL not found"; - return false; + *message = "raw"; + return true; } FileSystemType type;