Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/9710504d200599a6e7e7ac0046adca43cfccaf0f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
21 additions and
6 deletions
arch/arm/config.mk
arch/arm/cpu/arm926ejs/start.S
board/karo/tx25/config.mk
include/configs/tx25.h
nand_spl/board/karo/tx25/u-boot.lds
@ -70,5 +70,7 @@ LDSCRIPT := $(SRCTREE)/$(CPUDIR)/u-boot.lds
i f n d e f C O N F I G _ S Y S _ A R M _ W I T H O U T _ R E L O C
# needed for relocation
i f n d e f C O N F I G _ N A N D _ S P L
PLATFORM_LDFLAGS += -pie
e n d i f
e n d i f
@ -279,10 +279,10 @@ clbss_l:str r2, [r0] /* clear loop... */
* /
# ifdef C O N F I G _ N A N D _ S P L
ldr r0 , _ n a n d _ b o o t _ o f s
adr r1 , _ s t a r t
add p c , r0 , r1
_ nand_ b o o t _ o f s
: .word nand_boot - _ start
mov p c , r0
_nand_boot_ofs :
.word nand_boot
# else
ldr r0 , _ b o a r d _ i n i t _ r _ o f s
adr r1 , _ s t a r t
@ -1,5 +1,5 @@
i f d e f C O N F I G _ N A N D _ S P L
TEXT_BASE = 0x810c0000
e l s e
TEXT_BASE = 0x81fc 0000
TEXT_BASE = 0x8120 0000
e n d i f
@ -41,7 +41,7 @@
# define CONFIG_SYS_NAND_U_BOOT_OFFS 0x800
# define CONFIG_SYS_NAND_U_BOOT_SIZE 0x30000
# define CONFIG_SYS_NAND_U_BOOT_DST (0x81fc 0000)
# define CONFIG_SYS_NAND_U_BOOT_DST (0x8120 0000)
# define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_NAND_U_BOOT_DST
# define CONFIG_SYS_NAND_PAGE_SIZE 2048
@ -53,6 +53,11 @@ SECTIONS
*(.data.rel.ro)
}
. = ALIGN(4);
__rel_dyn_start = .;
__rel_dyn_end = .;
__dynsym_start = .;
__got_start = .;
. = ALIGN(4);
.got : { *(.got) }
@ -67,4 +72,12 @@ SECTIONS
__bss_start = .;
.bss : { *(.bss) }
_end = .;
/DISCARD/ : { *(.bss*) }
/DISCARD/ : { *(.dynstr*) }
/DISCARD/ : { *(.dynsym*) }
/DISCARD/ : { *(.dynamic*) }
/DISCARD/ : { *(.hash*) }
/DISCARD/ : { *(.plt*) }
/DISCARD/ : { *(.interp*) }
/DISCARD/ : { *(.gnu*) }
}