From: Michal Simek Date: Mon, 5 Oct 2015 13:59:38 +0000 (+0200) Subject: ARM64: zynqmp: Differentiate EMMC boot mode X-Git-Tag: KARO-TXSD-2017-03-15~2030^2~20 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=78678feeacc32f4fca9cb9a4aa9168396d8101c6;p=karo-tx-uboot.git ARM64: zynqmp: Differentiate EMMC boot mode Show also EMMC bootmode if selected. There is difference compare to SD bootmode. Use the same bootcommand till better boot command is created. Reported-by: Sai Pavan Boddu Signed-off-by: Michal Simek --- diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c index 9c176d01c4..a1d3fef24e 100644 --- a/board/xilinx/zynqmp/zynqmp.c +++ b/board/xilinx/zynqmp/zynqmp.c @@ -93,8 +93,11 @@ int board_late_init(void) setenv("modeboot", "qspiboot"); puts("QSPI_MODE\n"); break; - case SD_MODE: case EMMC_MODE: + puts("EMMC_MODE\n"); + setenv("modeboot", "sdboot"); + break; + case SD_MODE: puts("SD_MODE\n"); setenv("modeboot", "sdboot"); break;