summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-03-13 19:07:29 -0600
committerTom Rini <trini@konsulko.com>2016-03-22 12:16:09 -0400
commitc1352119fd09a31ddb77710a0c3839d1af21fc65 (patch)
tree4d430612ca0d20b65a9c3f8d26263ec96cbc9e66 /arch/x86
parent302a64875080d24932f1e4a8e2221e600b86629f (diff)
downloadtalos-obmc-uboot-c1352119fd09a31ddb77710a0c3839d1af21fc65.tar.gz
talos-obmc-uboot-c1352119fd09a31ddb77710a0c3839d1af21fc65.zip
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 <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/cpu/u-boot.lds4
1 files changed, 4 insertions, 0 deletions
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*); }
OpenPOWER on IntegriCloud