diff options
author | Simon Glass <sjg@chromium.org> | 2016-03-14 01:07:29 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-22 16:16:09 (GMT) |
commit | c1352119fd09a31ddb77710a0c3839d1af21fc65 (patch) | |
tree | 4d430612ca0d20b65a9c3f8d26263ec96cbc9e66 /arch/arm/cpu | |
parent | 302a64875080d24932f1e4a8e2221e600b86629f (diff) | |
download | u-boot-c1352119fd09a31ddb77710a0c3839d1af21fc65.tar.xz |
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/arm/cpu')
-rw-r--r-- | arch/arm/cpu/u-boot.lds | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds index 13aa4fa..cfab8b0 100644 --- a/arch/arm/cpu/u-boot.lds +++ b/arch/arm/cpu/u-boot.lds @@ -14,6 +14,9 @@ OUTPUT_ARCH(arm) ENTRY(_start) SECTIONS { +#ifndef CONFIG_CMDLINE + /DISCARD/ : { *(.u_boot_list_2_cmd_*) } +#endif #if defined(CONFIG_ARMV7_SECURE_BASE) && defined(CONFIG_ARMV7_NONSEC) /* * If CONFIG_ARMV7_SECURE_BASE is true, secure code will not |