diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-11-03 20:01:13 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-04-19 12:50:04 +0200 |
commit | ed16466966447b95d402376035217633ee5098ad (patch) | |
tree | 332cfd3526692de0441db0729600edaceaf26c32 /arch/mips | |
parent | 8b3f2eb7d8912204bda2d914b8a9a1ce1c31bb5c (diff) |
mips: malta: set MIPS_RELOCATION_TABLE_SIZE=0xc000
MIPS_RELOCATION_TABLE_SIZE=0x8000 is too small to enable UNIT_TEST.
Increase it by 50 % (16 KiB).
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 7ea439e857c..d7065a80e23 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -322,6 +322,7 @@ config MIPS_CACHE_DISABLE config MIPS_RELOCATION_TABLE_SIZE hex "Relocation table size" range 0x100 0x10000 + default "0xc000" if TARGET_MALTA default "0x8000" ---help--- A table of relocation data will be appended to the U-Boot binary |