Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/e15633888a058aacb31a62d2cf1278e1e4c236ab
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
3 additions and
2 deletions
cpu/mpc5xxx/config.mk
cpu/mpc5xxx/u-boot-customlayout.lds
cpu/mpc5xxx/u-boot.lds
include/common.h
@ -21,7 +21,7 @@
# MA 02111-1307 USA
#
PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_MPC5xxx -ffixed-r2 -ffixed-r29 \
-mstring -mcpu= 603e -mmultiple
@ -66,6 +66,7 @@ SECTIONS
common/environment.o (.ppcenv)
*(.text)
*(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc5xxx/start.o (.text)
*(.text)
*(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
@ -66,7 +66,6 @@ typedef volatile unsigned char vu_char;
# define CONFIG_RELOC_FIXUP_WORKS
# elif defined(CONFIG_MPC5xxx)
# include <mpc5xxx.h>
# define CONFIG_RELOC_FIXUP_WORKS
# elif defined(CONFIG_MPC512X)
# include <mpc512x.h>
# include <asm/immap_512x.h>