diff options
author | fang hui <hui.fang@freescale.com> | 2016-08-25 12:36:08 +0800 |
---|---|---|
committer | fang hui <hui.fang@freescale.com> | 2016-08-25 12:36:08 +0800 |
commit | 79290e222f8c8212dbaeb89a96f8b003a4383ff5 (patch) | |
tree | 5185de58956857a33b0166c901576c11d54cd2d6 | |
parent | eeb692a379202a4d5edbcc2c4dbaff13be36f090 (diff) | |
download | u-boot-imx-79290e222f8c8212dbaeb89a96f8b003a4383ff5.zip u-boot-imx-79290e222f8c8212dbaeb89a96f8b003a4383ff5.tar.gz u-boot-imx-79290e222f8c8212dbaeb89a96f8b003a4383ff5.tar.bz2 |
MA-8624 - [briilo] flash large(> 300M) image to system_a, failed
on picoimx, DRAM is 256M,
change CONFIG_USB_FASTBOOT_BUF_SIZE from 400M to 200M
Signed-off-by: fang hui <hui.fang@freescale.com>
-rw-r--r-- | include/configs/picosom-imx6ul.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/picosom-imx6ul.h b/include/configs/picosom-imx6ul.h index 849d5bc..5056a47 100644 --- a/include/configs/picosom-imx6ul.h +++ b/include/configs/picosom-imx6ul.h @@ -386,5 +386,9 @@ #include "mx6ul_14x14_evk_brillo.h" #endif +#ifdef CONFIG_USB_FASTBOOT_BUF_SIZE +#undef CONFIG_USB_FASTBOOT_BUF_SIZE +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0xc800000 +#endif #endif |