From: Michal Simek Date: Mon, 5 Oct 2015 13:59:38 +0000 (+0200) Subject: ARM64: zynqmp: Differentiate EMMC boot mode X-Git-Tag: v2016.03-rc1~46^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78678feeacc32f4fca9cb9a4aa9168396d8101c6;p=platform%2Fkernel%2Fu-boot.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 9c176d0..a1d3fef 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;