diff options
author | Adam Ford | 2019-07-26 17:53:45 -0500 |
---|---|---|
committer | Tom Rini | 2019-07-31 13:08:07 -0400 |
commit | ef97842b43efe98fcfa251b668b52e82ed1e5ff7 (patch) | |
tree | 0388bbdad2f56277062f973ffabe1bcd5f1b2d10 /configs | |
parent | 914694d6a90cac6eeefea9106408112e0c026adc (diff) |
ARM: da850evm: Split MTDPARTS into SPL and u-boot
The MTDPARTS currently lists just u-boot.ais as 512k in size.
This works when loading the ais file via serial port, but if one
wanted to update just the u-boot portion, it's not really possible.
This patch splits the MTDPARTS into a 32k SPL partiion and a 480k
u-boot partition which allows u-boot.img to be burned to the u-boot
partition. The remaining partitions are left with the same sizes
and offsets to not break backwards compatibility.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/da850evm_defconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig index 7de1d2ffc42..dd0eb982aa9 100644 --- a/configs/da850evm_defconfig +++ b/configs/da850evm_defconfig @@ -36,7 +36,7 @@ CONFIG_CMD_DM=y CONFIG_CMD_FS_UUID=y CONFIG_CMD_MTDPARTS=y CONFIG_MTDIDS_DEFAULT="nor0=spi0.0" -CONFIG_MTDPARTS_DEFAULT="mtdparts=spi0.0:512k(u-boot.ais),64k(u-boot-env),7552k(kernel-spare),64k(MAC-Address)" +CONFIG_MTDPARTS_DEFAULT="mtdparts=spi0.0:32k(SPL),480k(u-boot),64k(u-boot-env),7552k(kernel-spare),64k(MAC-Address)" CONFIG_CMD_DIAG=y CONFIG_OF_CONTROL=y CONFIG_SPL_OF_CONTROL=y @@ -77,4 +77,3 @@ CONFIG_USB_OHCI_HCD=y CONFIG_USB_OHCI_DA8XX=y CONFIG_USB_STORAGE=y # CONFIG_FAT_WRITE is not set -CONFIG_USE_TINY_PRINTF=y |