summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhang sanshan <b51434@freescale.com>2015-11-05 16:35:30 +0800
committerMax Krummenacher <max.krummenacher@toradex.com>2016-02-17 10:54:05 +0100
commit9faf35d00fe6bfc30515ffa85da98727c5511108 (patch)
treefc673c08e413ffc2b6410608576fa3eb262a2597
parente37fd5e3c3cdfce34f4301df053a74b97ee7b9a8 (diff)
MA-7157 Check the error log in fastboot flash
The fastboot.exe will get var partition-type:* firstly when "fastboot flash * *". The uboot did not support get var partition-type: default. This patch mask info the error when gat cat partition-type. Signed-off-by: zhang sanshan <b51434@freescale.com>
-rw-r--r--drivers/usb/gadget/f_fastboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c
index 519a9d3295..88c648f782 100644
--- a/drivers/usb/gadget/f_fastboot.c
+++ b/drivers/usb/gadget/f_fastboot.c
@@ -2053,6 +2053,8 @@ static void cb_getvar(struct usb_ep *ep, struct usb_request *req)
strncat(response, s, chars_left);
else
strcpy(response, "FAILValue not set");
+ } else if (!strcmp_l1("partition-type", cmd)) {
+ strcpy(response, "FAILVariable not implemented");
} else {
error("unknown variable: %s\n", cmd);
strcpy(response, "FAILVariable not implemented");