diff options
author | zhang sanshan <sanshan.zhang@nxp.com> | 2016-11-02 09:27:36 +0800 |
---|---|---|
committer | zhang sanshan <sanshan.zhang@nxp.com> | 2016-11-02 09:30:27 +0800 |
commit | 3efee76dcf2d310c31018f2d05772ef0a279aaa2 (patch) | |
tree | 34008fe638d598a6d7402c95dfc04e2f904bd1d9 | |
parent | fac09945aed9950acc2668051177264ee68bbd77 (diff) | |
download | u-boot-imx-3efee76dcf2d310c31018f2d05772ef0a279aaa2.zip u-boot-imx-3efee76dcf2d310c31018f2d05772ef0a279aaa2.tar.gz u-boot-imx-3efee76dcf2d310c31018f2d05772ef0a279aaa2.tar.bz2 |
MA-8873 [Android_MX6SX_ARD] BOOT: The board can't boot up completely after fastbooting with nand card.100%
The size of android_root.img have exceed 600M.
Enlarge CONFIG_USB_FASTBOOT_BUF_SIZE to 800M for nand.
Signed-off-by: zhang sanshan <sanshan.zhang@nxp.com>
-rw-r--r-- | include/configs/mx6sabreandroid_common.h | 2 | ||||
-rw-r--r-- | include/configs/mx6slevkandroid.h | 2 | ||||
-rw-r--r-- | include/configs/mx6sxsabreautoandroid.h | 2 | ||||
-rw-r--r-- | include/configs/mx6sxsabresdandroid.h | 2 | ||||
-rw-r--r-- | include/configs/mx7dsabresdandroid.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/include/configs/mx6sabreandroid_common.h b/include/configs/mx6sabreandroid_common.h index 57e9fc3..57a4112 100644 --- a/include/configs/mx6sabreandroid_common.h +++ b/include/configs/mx6sabreandroid_common.h @@ -80,7 +80,7 @@ #define CONFIG_USB_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR #ifdef CONFIG_FASTBOOT_STORAGE_NAND -#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x25000000 +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x32000000 #else #define CONFIG_USB_FASTBOOT_BUF_SIZE 0x19000000 #endif diff --git a/include/configs/mx6slevkandroid.h b/include/configs/mx6slevkandroid.h index 558dcb2..33a3d12 100644 --- a/include/configs/mx6slevkandroid.h +++ b/include/configs/mx6slevkandroid.h @@ -73,7 +73,7 @@ #define CONFIG_USB_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR #ifdef CONFIG_FASTBOOT_STORAGE_NAND -#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x25000000 +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x32000000 #else #define CONFIG_USB_FASTBOOT_BUF_SIZE 0x19000000 #endif diff --git a/include/configs/mx6sxsabreautoandroid.h b/include/configs/mx6sxsabreautoandroid.h index 00aea92..c187c31 100644 --- a/include/configs/mx6sxsabreautoandroid.h +++ b/include/configs/mx6sxsabreautoandroid.h @@ -79,7 +79,7 @@ #define CONFIG_USB_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR #ifdef CONFIG_FASTBOOT_STORAGE_NAND -#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x25000000 +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x32000000 #else #define CONFIG_USB_FASTBOOT_BUF_SIZE 0x19000000 #endif diff --git a/include/configs/mx6sxsabresdandroid.h b/include/configs/mx6sxsabresdandroid.h index 8be5675..c1f31c6 100644 --- a/include/configs/mx6sxsabresdandroid.h +++ b/include/configs/mx6sxsabresdandroid.h @@ -71,7 +71,7 @@ #define CONFIG_USB_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR #ifdef CONFIG_FASTBOOT_STORAGE_NAND -#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x25000000 +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x32000000 #else #define CONFIG_USB_FASTBOOT_BUF_SIZE 0x19000000 #endif diff --git a/include/configs/mx7dsabresdandroid.h b/include/configs/mx7dsabresdandroid.h index cb8d64f..819a338 100644 --- a/include/configs/mx7dsabresdandroid.h +++ b/include/configs/mx7dsabresdandroid.h @@ -56,7 +56,7 @@ #define CONFIG_USB_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR #ifdef CONFIG_FASTBOOT_STORAGE_NAND -#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x25000000 +#define CONFIG_USB_FASTBOOT_BUF_SIZE 0x32000000 #else #define CONFIG_USB_FASTBOOT_BUF_SIZE 0x19000000 #endif |