Skip to content
Snippets Groups Projects
Commit d99379ee authored by Hanjie Lin's avatar Hanjie Lin Committed by Tellen Yu
Browse files

arm: makefile: change text_offset to 0x108000 [1/1]


PD#SWPL-1505

Problem:
Amlogic arm kernel text_offset is 0x208000,
ko start address to kernel text end address arrange is too big(>32M)
it can cause insmod ko failed.

Solution:
modify text_offset to 0x108000
first 0x100000 is invisibe to kernel.

Verify:
u200

Change-Id: I9684b108b57a15b03e4279146c1dc57667aa5d12
Signed-off-by: default avatarHanjie Lin <hanjie.lin@amlogic.com>
parent 184969c4
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ endif
textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
textofs-$(CONFIG_ARCH_AXXIA) := 0x00308000
textofs-$(CONFIG_ARCH_MESON) := 0x00208000
textofs-$(CONFIG_ARCH_MESON) := 0x00108000
# Machine directory name. This list is sorted alphanumerically
# by CONFIG_* macro name.
......
zreladdr-y += 0x00208000
params_phys-y := 0x00200100
zreladdr-y += 0x00108000
params_phys-y := 0x00100100
initrd_phys-y := 0x00a00000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment