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

Commit 1afe54b5 authored by Hridya Valsaraju's avatar Hridya Valsaraju Committed by android-build-merger
Browse files

Add command to read fastboot variable 'variant' am: 338b0c70

am: afe3390b

Change-Id: Iadcdfae2f5108a1717a3455d84b72c609da1690f
parents 57b29a88 afe3390b
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);

};