1
0
Fork 0

fastboot: Add USB cable detect check

Add a check for USB cable attached and only enter fastboot when a cable
is attached.

Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Steve Rae <srae@broadcom.com>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
utp
Rob Herring 2015-01-26 15:14:41 -06:00 committed by Marek Vasut
parent 897923819c
commit 7c23bcb93f
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ static int do_fastboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
if (ret)
return ret;
if (!g_dnl_board_usb_cable_connected()) {
puts("\rUSB cable not detected.\n" \
"Command exit.\n");
return CMD_RET_FAILURE;
}
while (1) {
if (g_dnl_detach())
break;