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

Commit e67102e2 authored by Zhuoyao Zhang's avatar Zhuoyao Zhang Committed by Automerger Merge Worker
Browse files

Merge "Support tool event logging for fastboot" into main am: 9a74753a

parents 21d83958 9a74753a
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -865,6 +865,16 @@ function adb() {
    run_tool_with_logging "ADB" $ADB "${@}"
    run_tool_with_logging "ADB" $ADB "${@}"
}
}


function fastboot() {
    local FASTBOOT=$(command which fastboot)
    if [ -z "$FASTBOOT" ]; then
        echo "Command fastboot not found; try lunch (and building) first?"
        return 1
    fi
    # Support tool event logging for fastboot command.
    run_tool_with_logging "FASTBOOT" $FASTBOOT "${@}"
}

# communicate with a running device or emulator, set up necessary state,
# communicate with a running device or emulator, set up necessary state,
# and run the hat command.
# and run the hat command.
function runhat()
function runhat()