Skip to content
Snippets Groups Projects
Commit 72c4e67d authored by Baruch Siach's avatar Baruch Siach Committed by Stefan Roese
Browse files

mvebu: support UART boot image


The kwboot utility can use the generated image to boot mvebu SoCs from
UART.

Signed-off-by: default avatarBaruch Siach <baruch@tkos.co.il>
Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent ca1a4c86
No related branches found
No related tags found
No related merge requests found
...@@ -193,6 +193,9 @@ config MVEBU_SPL_BOOT_DEVICE_MMC ...@@ -193,6 +193,9 @@ config MVEBU_SPL_BOOT_DEVICE_MMC
bool "SDIO/MMC card" bool "SDIO/MMC card"
select SPL_LIBDISK_SUPPORT select SPL_LIBDISK_SUPPORT
config MVEBU_SPL_BOOT_DEVICE_UART
bool "UART"
endchoice endchoice
config MVEBU_EFUSE config MVEBU_EFUSE
......
...@@ -35,6 +35,9 @@ endif ...@@ -35,6 +35,9 @@ endif
ifneq ($(CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC),) ifneq ($(CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC),)
KWB_CFG_BOOT_FROM=sdio KWB_CFG_BOOT_FROM=sdio
endif endif
ifneq ($(CONFIG_MVEBU_SPL_BOOT_DEVICE_UART),)
KWB_CFG_BOOT_FROM=uart
endif
ifneq ($(CONFIG_SECURED_MODE_IMAGE),) ifneq ($(CONFIG_SECURED_MODE_IMAGE),)
KWB_REPLACE += CSK_INDEX KWB_REPLACE += CSK_INDEX
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment