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

ppc/8xxx: relocate cpu pointer in global data

Now that we have a pointer to the cpu struct we need to relocate it once
we get into ram.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
master
Kumar Gala 16 years ago committed by Tom Rix
parent ae3565aac5
commit 58157d7ad9
  1. 4
      lib_ppc/board.c

@ -655,6 +655,10 @@ void board_init_r (gd_t *id, ulong dest_addr)
TOTAL_MALLOC_LEN;
#endif
#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
gd->cpu += gd->reloc_off;
#endif
#ifdef CONFIG_SERIAL_MULTI
serial_initialize();
#endif

Loading…
Cancel
Save