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

Commit 4e30d0d6 authored by Hridya Valsaraju's avatar Hridya Valsaraju Committed by android-build-merger
Browse files

Merge "Enter into userspace fastboot only if the device supports it"

am: c2e6f041

Change-Id: I503f02ce45b582018672e84e04311ec2bac88c82
parents 4c65ab54 c2e6f041
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -364,7 +364,8 @@ int main(int argc, char** argv) {
        std::string option = OPTIONS[option_index].name;
        if (option == "locale") {
          locale = optarg;
        } else if (option == "fastboot") {
        } else if (option == "fastboot" &&
                   android::base::GetBoolProperty("ro.boot.logical_partitions", false)) {
          fastboot = true;
        }
        break;