diff options
author | Marek Vasut <marex@denx.de> | 2019-10-02 18:54:45 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-11-20 23:46:16 +0100 |
commit | 48f23dd6a410d84499c9de1ae16dde9d10cb5fc7 (patch) | |
tree | 6da2fe86f1d089da031663b91e73829bc7b2bc7b /configs/socfpga_socrates_defconfig | |
parent | 64c7c8c91cc945a4e8ebb87ec33fbfed8d2b6a23 (diff) | |
download | u-boot-48f23dd6a410d84499c9de1ae16dde9d10cb5fc7.tar.gz |
ARM: socfpga: Fix default mtdparts
The default mtdparts value grew a trailing zero during the Kconfig
conversion. This is because the mtdparts value in the header file
had a \0 at the end, which got misconverted into plain 0 instead of
being dropped.
Signed-off-by: Marek Vasut <marex@denx.de>
Fixes: 43ede0bca7fc ("Kconfig: Migrate MTDIDS_DEFAULT / MTDPARTS_DEFAULT")
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'configs/socfpga_socrates_defconfig')
-rw-r--r-- | configs/socfpga_socrates_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/socfpga_socrates_defconfig b/configs/socfpga_socrates_defconfig index e24723673c..8ac2bf5159 100644 --- a/configs/socfpga_socrates_defconfig +++ b/configs/socfpga_socrates_defconfig @@ -28,7 +28,7 @@ CONFIG_CMD_CACHE=y CONFIG_CMD_TIME=y CONFIG_CMD_EXT4_WRITE=y CONFIG_MTDIDS_DEFAULT="nor0=ff705000.spi.0" -CONFIG_MTDPARTS_DEFAULT="mtdparts=ff705000.spi.0:1m(u-boot),256k(env1),256k(env2),14848k(boot),16m(rootfs),-@1536k(UBI)0" +CONFIG_MTDPARTS_DEFAULT="mtdparts=ff705000.spi.0:1m(u-boot),256k(env1),256k(env2),14848k(boot),16m(rootfs),-@1536k(UBI)" CONFIG_CMD_UBI=y # CONFIG_ISO_PARTITION is not set # CONFIG_EFI_PARTITION is not set |