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

Commit 0b9a8e44 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add command to read fastboot variable 'variant'"

parents 9c419ee8 3f27a7b3
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -39,4 +39,15 @@ interface IFastboot {
     *     FAILURE_UNKNOWN for an invalid/unsupported command.
     */
    doOemCommand(string oemCmd) generates (Result result);

    /**
     * Returns an OEM-defined string indicating the variant of the device, for
     * example, US and ROW.
     *
     * @response variant Indicates the device variant.
     * @response result Returns the status SUCCESS if the operation is successful,
     *     FAILURE_UNKNOWN otherwise.
     */
    getVariant() generates (string variant, Result result);

};