realtek: Migrate to upstream generic MIPS addresses

Upstream generic MIPS uses 0x80100000 and 0x80100400 for the LOADADDR
and ENTRY addresses. As we do not want to diverge from upstream and
patch upstream when not needed, adjust our addresses as well to be
future proof.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Tested-by: Jan Hoffmann <jan@3e8.eu> # HPE 1920-8G, HPE 1920-48G
This commit is contained in:
Olliver Schinagl 2023-01-04 14:53:54 +01:00 committed by Sander Vanheule
parent 87b9825521
commit 44e0785285
3 changed files with 4 additions and 4 deletions

View File

@ -2,4 +2,4 @@
# Realtek RTL838x SoCs
#
cflags-$(CONFIG_RTL83XX) += -I$(srctree)/arch/mips/include/asm/mach-rtl838x/
load-$(CONFIG_RTL83XX) += 0xffffffff80000000
load-$(CONFIG_RTL83XX) += 0xffffffff80100000

View File

@ -2,4 +2,4 @@
# Realtek RTL838x SoCs
#
cflags-$(CONFIG_RTL83XX) += -I$(srctree)/arch/mips/include/asm/mach-rtl838x/
load-$(CONFIG_RTL83XX) += 0xffffffff80000000
load-$(CONFIG_RTL83XX) += 0xffffffff80100000

View File

@ -3,8 +3,8 @@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
KERNEL_LOADADDR = 0x80000000
KERNEL_ENTRY = 0x80000400
KERNEL_LOADADDR = 0x80100000
KERNEL_ENTRY = 0x80100400
DEVICE_VARS += \
CAMEO_BOARD_VERSION \