From: Simon Glass Date: Sun, 17 Feb 2019 03:24:48 +0000 (-0700) Subject: x86: link: Increase malloc size and decrease code size X-Git-Tag: v2019.04-rc3~13^2~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2cd2bc20c4db41d34e735c29b63a9c0b01f8039e;p=oweals%2Fu-boot.git x86: link: Increase malloc size and decrease code size At present link does not boot since it has outgrown its pre-relocation malloc() size and its assigned code area. Increase the former and drop EFI loader support, which adds about 45KB! Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/configs/chromebook_link_defconfig b/configs/chromebook_link_defconfig index b90aae610b..c402568c17 100644 --- a/configs/chromebook_link_defconfig +++ b/configs/chromebook_link_defconfig @@ -1,6 +1,6 @@ CONFIG_X86=y CONFIG_SYS_TEXT_BASE=0xFFF00000 -CONFIG_SYS_MALLOC_F_LEN=0x2000 +CONFIG_SYS_MALLOC_F_LEN=0x2400 CONFIG_DEBUG_UART_BOARD_INIT=y CONFIG_DEBUG_UART_BASE=0x3f8 CONFIG_DEBUG_UART_CLOCK=1843200 @@ -63,3 +63,4 @@ CONFIG_VIDEO_IVYBRIDGE_IGD=y CONFIG_CONSOLE_SCROLL_LINES=5 CONFIG_CMD_DHRYSTONE=y CONFIG_TPM=y +# CONFIG_EFI_LOADER is not set