summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorzhang sanshan <b51434@freescale.com>2015-11-05 16:35:30 +0800
committerMax Krummenacher <max.krummenacher@toradex.com>2016-03-09 14:42:53 +0100
commitcc6e715561462a914e618004d66b96ad11f5a4eb (patch)
treefc673c08e413ffc2b6410608576fa3eb262a2597 /drivers
parentdf8d3d9d480cd75dd9357b5661bd17cdba90ba2d (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>
Diffstat (limited to 'drivers')
-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");