Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/9260a56151e9aed923e61994b4c368297690a78e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
17 additions and
2 deletions
CHANGELOG
cpu/mpc83xx/cpu_init.c
include/configs/MPC8349ADS.h
include/configs/TQM834x.h
@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Make System IO Config Registers board configurable on MPC83xx
Patch by Kumar Gala, 11 Jan 2006
* Add support for 28F256J3A flah (=> 64 MB) on PM520 board
* Fix compiler problem with at91rm9200dk board.
@ -63,8 +63,12 @@ void cpu_init_f (volatile immap_t * im)
im - > sysconf . spcr | = SPCR_TBEN ;
/* System General Purpose Register */
im - > sysconf . sicrh = SICRH_TSOBI1 ;
im - > sysconf . sicrl = SICRL_LDP_A ;
# ifdef CFG_SICRH
im - > sysconf . sicrh = CFG_SICRH ;
# endif
# ifdef CFG_SICRL
im - > sysconf . sicrl = CFG_SICRL ;
# endif
/*
* Memory Controller :
@ -506,6 +506,10 @@
HRCWH_TSEC2M_IN_GMII )
# endif
/* System IO Config */
# define CFG_SICRH SICRH_TSOBI1
# define CFG_SICRL SICRL_LDP_A
# define CFG_HID0_INIT 0x000000000
# define CFG_HID0_FINAL CFG_HID0_INIT
@ -417,6 +417,10 @@ extern int tqm834x_num_flash_banks;
HRCWH_TSEC2M_IN_GMII )
# endif
/* System IO Config */
# define CFG_SICRH SICRH_TSOBI1
# define CFG_SICRL SICRL_LDP_A
/* i-cache and d-cache disabled */
# define CFG_HID0_INIT 0x000000000
# define CFG_HID0_FINAL CFG_HID0_INIT