diff options
author | Pierre-Jean Texier <pjtexier@koncepto.io> | 2019-04-12 22:36:36 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-25 19:16:24 +0200 |
commit | d776b07dc770c8b5078ddfe5984add1706c5073e (patch) | |
tree | a8167f0215ea3bbde521b3121d0356bfd865a563 /include | |
parent | 8e10571f0973f727f9615c56b3747b9361c419a1 (diff) |
warp7: Fix dfu_alt_info setting after DM conversion
After DM conversion, U-Boot is larger than 512 KiB, so we need to increase
the "size" of the dfu_alt_info setting.
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Acked-by: Joris Offouga <offougajoris@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/warp7.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/warp7.h b/include/configs/warp7.h index 043f2861b6..4947597b40 100644 --- a/include/configs/warp7.h +++ b/include/configs/warp7.h @@ -39,7 +39,7 @@ #define CONFIG_SERIAL_TAG #define CONFIG_DFU_ENV_SETTINGS \ - "dfu_alt_info=boot raw 0x2 0x400 mmcpart 1\0" \ + "dfu_alt_info=boot raw 0x2 0x1000 mmcpart 1\0" \ #define CONFIG_EXTRA_ENV_SETTINGS \ CONFIG_DFU_ENV_SETTINGS \ |