diff options
author | zhang sanshan <b51434@freescale.com> | 2015-11-05 16:35:30 +0800 |
---|---|---|
committer | zhang sanshan <b51434@freescale.com> | 2015-11-05 16:57:10 +0800 |
commit | 9059037c34dac3d64109fdf7da6e7c295b5fbba3 (patch) | |
tree | 9eac6780b6802611e87a689c5ff7860933f77d55 | |
parent | 28b46992955d73ffcd7a944d626ae93f28317c59 (diff) | |
download | u-boot-imx-9059037c34dac3d64109fdf7da6e7c295b5fbba3.zip u-boot-imx-9059037c34dac3d64109fdf7da6e7c295b5fbba3.tar.gz u-boot-imx-9059037c34dac3d64109fdf7da6e7c295b5fbba3.tar.bz2 |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c index 519a9d3..88c648f 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"); |