Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/78678feeacc32f4fca9cb9a4aa9168396d8101c6 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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>
master
Michal Simek 10 years ago
parent fb90917c46
commit 78678feeac
  1. 5
      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;

Loading…
Cancel
Save