Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/66f30bf983bdc82a799d019401a88bfc720a5a05
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
24 deletions
arch/arm/config.mk
arch/arm/cpu/arm1176/start.S
arch/arm/lib/crt0.S
@ -87,9 +87,7 @@ endif
e n d i f
# needed for relocation
i f n d e f C O N F I G _ N A N D _ S P L
LDFLAGS_u-boot += -pie
e n d i f
#
# FIXME: binutils versions < 2.22 have a bug in the assembler where
@ -51,7 +51,7 @@
.globl _start
_start : b r e s e t
# ifndef C O N F I G _ N A N D _ S P L
# ifndef C O N F I G _ S P L _ B U I L D
ldr p c , _ u n d e f i n e d _ i n s t r u c t i o n
ldr p c , _ s o f t w a r e _ i n t e r r u p t
ldr p c , _ p r e f e t c h _ a b o r t
@ -98,15 +98,11 @@ _end_vect:
.globl _TEXT_BASE
_TEXT_BASE :
# ifdef C O N F I G _ N A N D _ S P L / * d e p r e c a t e d , u s e i n s t e a d C O N F I G _ S P L _ B U I L D * /
.word CONFIG_SYS_TEXT_BASE
# else
# if d e f i n e d ( C O N F I G _ S P L _ B U I L D ) & & d e f i n e d ( C O N F I G _ S P L _ T E X T _ B A S E )
.word CONFIG_SPL_TEXT_BASE
# else
.word CONFIG_SYS_TEXT_BASE
# endif
# endif
/ *
* Below v a r i a b l e i s v e r y i m p o r t a n t b e c a u s e w e u s e M M U i n U - B o o t .
@ -176,7 +172,7 @@ cpu_init_crit:
* When b o o t i n g f r o m N A N D - i t h a s d e f i n i t e l y b e e n a r e s e t , s o , n o n e e d
* to f l u s h c a c h e s a n d d i s a b l e t h e M M U
* /
# ifndef C O N F I G _ N A N D _ S P L
# ifndef C O N F I G _ S P L _ B U I L D
/ *
* flush v4 I / D c a c h e s
* /
@ -361,7 +357,7 @@ c_runtime_cpu_setup:
mov p c , l r
# ifndef C O N F I G _ N A N D _ S P L
# ifndef C O N F I G _ S P L _ B U I L D
/ *
* we a s s u m e t h a t c a c h e o p e r a t i o n i s d o n e b e f o r e . ( e g . c l e a n u p _ b e f o r e _ l i n u x ( ) )
* actually, w e d o n ' t n e e d t o d o a n y t h i n g a b o u t c a c h e i f n o t u s e d - c a c h e i n
@ -539,4 +535,4 @@ fiq:
get_ b a d _ s t a c k
bad_ s a v e _ u s e r _ r e g s
bl d o _ f i q
# endif / * C O N F I G _ N A N D _ S P L * /
# endif / * C O N F I G _ S P L _ B U I L D * /
@ -64,7 +64,7 @@
* have s o m e w o r k l e f t t o d o a t t h i s p o i n t r e g a r d i n g m e m o r y , s o
* call c _ r u n t i m e _ c p u _ s e t u p .
*
* 6 . Branch t o e i t h e r n a n d _ b o o t ( ) o r b o a r d _ i n i t _ r ( ) .
* 6 . Branch t o b o a r d _ i n i t _ r ( ) .
* /
/ *
@ -77,10 +77,7 @@ ENTRY(_main)
* Set u p i n i t i a l C r u n t i m e e n v i r o n m e n t a n d c a l l b o a r d _ i n i t _ f ( 0 ) .
* /
# if d e f i n e d ( C O N F I G _ N A N D _ S P L )
/* deprecated, use instead CONFIG_SPL_BUILD */
ldr s p , = ( C O N F I G _ S Y S _ I N I T _ S P _ A D D R )
# elif d e f i n e d ( C O N F I G _ S P L _ B U I L D ) & & d e f i n e d ( C O N F I G _ S P L _ S T A C K )
# if d e f i n e d ( C O N F I G _ S P L _ B U I L D ) & & d e f i n e d ( C O N F I G _ S P L _ S T A C K )
ldr s p , = ( C O N F I G _ S P L _ S T A C K )
# else
ldr s p , = ( C O N F I G _ S Y S _ I N I T _ S P _ A D D R )
@ -129,21 +126,12 @@ clbss_l:cmp r0, r1 /* while not at end of BSS */
bl c o l o u r e d _ L E D _ i n i t
bl r e d _ l e d _ o n
# if d e f i n e d ( C O N F I G _ N A N D _ S P L )
/* call _nand_boot() */
ldr p c , =nand_boot
# else
/* call board_init_r(gd_t *id, ulong dest_addr) */
mov r0 , r8 / * g d _ t * /
ldr r1 , [ r8 , #G D _ R E L O C A D D R ] / * d e s t _ a d d r * /
/* call board_init_r */
ldr p c , =board_init_r / * t h i s i s a u t o - r e l o c a t e d ! * /
# endif
/* we should not return here. */
# endif