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

microblaze: Disable all cpu features before reset

Fix microblaze soft reset function and disable
all cpu features. Especially disable caches because
IRQs were off by disable_interrupts().

Reported-by: John Williams <john.williams@xilinx.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
master
Michal Simek 13 years ago committed by Michal Simek
parent 783764521e
commit 8848668e13
  1. 3
      board/xilinx/microblaze-generic/microblaze-generic.c

@ -40,7 +40,8 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
#endif
puts ("Reseting board\n");
asm ("bra r0");
__asm__ __volatile__ (" mts rmsr, r0;" \
"bra r0");
return 0;
}

Loading…
Cancel
Save