Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/9e737d8476e7d6a596d16caaf6a3853a9a1190a2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
3 deletions
board/freescale/m5329evb/mii.c
drivers/net/mcffec.c
include/common.h
@ -203,7 +203,9 @@ int mii_discover_phy(struct eth_device *dev)
}
# endif /* CFG_DISCOVER_PHY */
void mii_init ( void )
int mii_init ( void ) __attribute__ ( ( weak , alias ( " __mii_init " ) ) ) ;
void __mii_init ( void )
{
volatile fec_t * fecp ;
struct fec_info_s * info ;
@ -101,7 +101,7 @@ void fec_reset(struct eth_device *dev);
extern int fecpin_setclear ( struct eth_device * dev , int setclear ) ;
# ifdef CFG_DISCOVER_PHY
extern void mii_init ( void ) ;
extern void __ mii_init( void ) ;
extern uint mii_send ( uint mii_cmd ) ;
extern int mii_discover_phy ( struct eth_device * dev ) ;
extern int mcffec_miiphy_read ( char * devname , unsigned char addr ,
@ -539,7 +539,7 @@ ulong bootcount_load (void);
# define BOOTCOUNT_MAGIC 0xB001C041
/* $(CPU)/.../<eth> */
void mii_init ( void ) ;
/*void mii_init (void);*/
/* $(CPU)/.../lcd.c */
ulong lcd_setmem ( ulong ) ;