diff options
author | Fabien Lehoussel <fabien.lehoussel@medianesysteme.com> | 2020-02-24 16:28:32 +0100 |
---|---|---|
committer | Eugen Hristev <eugen.hristev@microchip.com> | 2020-03-10 11:01:08 +0200 |
commit | 21cb8749b420c3da8f89d53510cf536d052343ae (patch) | |
tree | 18bc2d0672dd1b86238f164f518925bd55968d5d /configs/sama5d3_xplained_nandflash_defconfig | |
parent | 548ce227d3d852455c6395c0cec30af0cda77b09 (diff) |
board: sama5d3_xplained: Fix SPL DTB read from NAND
SPL boot cannot find dtb if CONFIG_SPL_SEPARATE_BSS is disabled :
CONFIG_SPL_SEPARATE_BSS=n
RomBOOT
<debug_uart> Missing DTB
### ERROR ### Please RESET the board ###
RomBOOT
CONFIG_SPL_SEPARATE_BSS=y
RomBOOT
<debug_uart>
U-Boot SPL 2019.04-linux4sam_6.2-icp-dirty (Feb 24 2020 - 15:34:35 +0100)
Trying to boot from NAND
<debug_uart>
Signed-off-by: Fabien Lehoussel <fabien.lehoussel@medianesysteme.com>
Diffstat (limited to 'configs/sama5d3_xplained_nandflash_defconfig')
-rw-r--r-- | configs/sama5d3_xplained_nandflash_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/sama5d3_xplained_nandflash_defconfig b/configs/sama5d3_xplained_nandflash_defconfig index 9ad05f5ffd..bfc639975d 100644 --- a/configs/sama5d3_xplained_nandflash_defconfig +++ b/configs/sama5d3_xplained_nandflash_defconfig @@ -24,6 +24,7 @@ CONFIG_BOOTDELAY=3 CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,768k(uboot)ro,256K(env_redundant),256k(env),512k(dtb),6M(kernel)ro,-(rootfs) rootfstype=ubifs ubi.mtd=6 root=ubi0:rootfs" # CONFIG_DISPLAY_BOARDINFO is not set +CONFIG_SPL_SEPARATE_BSS=y CONFIG_SPL_NAND_SUPPORT=y CONFIG_HUSH_PARSER=y CONFIG_CMD_BOOTZ=y |