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

cmd_bootm.c: Only say XIP image when load is image_start

We say we have an XIP (in this case, image loaded at desired execution
address) when the image header has been offset in the load.  It's
possible that in some cases executing the header is non-fatal but that's
not true in many other cases.

Signed-off-by: Tom Rini <trini@ti.com>
master
Tom Rini 11 years ago
parent cd834a053b
commit 717ccc1d7f
  1. 2
      common/cmd_bootm.c

@ -388,7 +388,7 @@ static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
image_buf = map_sysmem(image_start, image_len);
switch (comp) {
case IH_COMP_NONE:
if (load == blob_start || load == image_start) {
if (load == image_start) {
printf(" XIP %s ... ", type_name);
no_overlap = 1;
} else {

Loading…
Cancel
Save