diff options
author | Nobuhiro Iwamatsu | 2011-03-07 16:36:21 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu | 2011-03-16 10:16:34 +0900 |
commit | b52da2aed8c2c388661f369052a97d5b5c9ed00a (patch) | |
tree | 8a6156175bec07481ff90c90ca8643c820aa2433 /arch/sh/cpu/sh4 | |
parent | 40c477082f9c31fa7922fb734859ca9fcca63646 (diff) |
sh: Add KEEP order to start.o section
The start.o section is changed by --gc-section option of ld.
Of this using KEEP order, therefore, evade this problem.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/sh/cpu/sh4')
-rw-r--r-- | arch/sh/cpu/sh4/u-boot.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/cpu/sh4/u-boot.lds b/arch/sh/cpu/sh4/u-boot.lds index d3719df543c..0f42325afff 100644 --- a/arch/sh/cpu/sh4/u-boot.lds +++ b/arch/sh/cpu/sh4/u-boot.lds @@ -41,7 +41,7 @@ SECTIONS .text : { - arch/sh/cpu/sh4/start.o (.text) + KEEP(arch/sh/cpu/sh4/start.o (.text)) . = ALIGN(8192); common/env_embedded.o (.ppcenv) . = ALIGN(8192); |