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

x86: Dont clobber %eax after getting memory size

By using another register, reduce code size by one instruction
master
Graeme Russ 15 years ago
parent 5f2679055d
commit 5a3876d2ac
  1. 5
      arch/i386/cpu/start.S

@ -114,8 +114,8 @@ mem_ok:
/* Test the stack */
pushl $0
popl %eax
cmpl $0, %eax
popl %ecx
cmpl $0, %ecx
jne die
push $0x55aa55aa
popl %ecx
@ -125,7 +125,6 @@ mem_ok:
wbinvd
/* Set the upper memory limit parameter */
movl %esp, %eax
subl $CONFIG_SYS_STACK_SIZE, %eax
call board_init_f /* Enter, U-boot! */

Loading…
Cancel
Save