From c1352119fd09a31ddb77710a0c3839d1af21fc65 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 13 Mar 2016 19:07:29 -0600 Subject: arm: x86: Drop command-line code when CONFIG_CMDLINE is disabled Update the link script to drop this code when not needed. This is only done for two architectures at present. Signed-off-by: Simon Glass Reviewed-by: Tom Rini --- arch/x86/cpu/u-boot.lds | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch/x86') diff --git a/arch/x86/cpu/u-boot.lds b/arch/x86/cpu/u-boot.lds index b0d8531a60..36f59ea96d 100644 --- a/arch/x86/cpu/u-boot.lds +++ b/arch/x86/cpu/u-boot.lds @@ -12,6 +12,10 @@ ENTRY(_start) SECTIONS { +#ifndef CONFIG_CMDLINE + /DISCARD/ : { *(.u_boot_list_2_cmd_*) } +#endif + . = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */ __text_start = .; .text : { *(.text*); } -- cgit v1.2.1