mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
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 <saipava@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
fb90917c46
commit
78678feeac
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue