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

Commit d604080c authored by Hridya Valsaraju's avatar Hridya Valsaraju
Browse files

Revert "Add command to pass oem commands to HAL"

This reverts commit ddaa8ecb.

Reason for revert: This needs to go to master first to prevent build breaks.

Change-Id: I6418f1ba5dab492dc11b8c24e5d83ea7257d9699
parent ddaa8ecb
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -29,14 +29,4 @@ interface IFastboot {
     *     reformatting.
     */
    getPartitionType(string partitionName) generates (FileSystemType type, Result result);

    /**
     * Executes a fastboot OEM command.
     *
     * @param oemCmdArgs The oem command that is passed to the fastboot HAL.
     * @response result Returns the status SUCCESS if the operation is successful,
     *     INVALID_ARGUMENT for bad arguments,
     *     FAILURE_UNKNOWN for an invalid/unsupported command.
     */
    doOemCommand(string oemCmd) generates (Result result);
};
+2 −2
Original line number Diff line number Diff line
@@ -53,9 +53,9 @@ enum FileSystemType : uint8_t {
struct Result {
    Status status;
    /**
     * Message pertaining to the status. It must be a failure message for
     * Error message pertaining to the status. It must be a failure message for
     * Status FAILURE_UNKNOWN/NOT_SUPPORTED or an informative message for
     * Status SUCCESS.
     */
    string message;
    string error;
};