From: Nobuhiro Iwamatsu Date: Mon, 7 Mar 2011 07:36:21 +0000 (+0900) Subject: sh: Add KEEP order to start.o section X-Git-Tag: v2011.03-rc2~16^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b52da2aed8c2c388661f369052a97d5b5c9ed00a;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Nobuhiro Iwamatsu --- diff --git a/arch/sh/cpu/sh2/u-boot.lds b/arch/sh/cpu/sh2/u-boot.lds index e4e8b60..7c0a18d 100644 --- a/arch/sh/cpu/sh2/u-boot.lds +++ b/arch/sh/cpu/sh2/u-boot.lds @@ -38,7 +38,7 @@ SECTIONS .text : { - arch/sh/cpu/sh2/start.o (.text) + KEEP(arch/sh/cpu/sh2/start.o (.text)) . = ALIGN(8192); common/env_embedded.o (.ppcenv) . = ALIGN(8192); diff --git a/arch/sh/cpu/sh3/u-boot.lds b/arch/sh/cpu/sh3/u-boot.lds index 8afe160..2716246 100644 --- a/arch/sh/cpu/sh3/u-boot.lds +++ b/arch/sh/cpu/sh3/u-boot.lds @@ -44,7 +44,7 @@ SECTIONS .text : { - arch/sh/cpu/sh3/start.o (.text) + KEEP(arch/sh/cpu/sh3/start.o (.text)) . = ALIGN(8192); common/env_embedded.o (.ppcenv) . = ALIGN(8192); diff --git a/arch/sh/cpu/sh4/u-boot.lds b/arch/sh/cpu/sh4/u-boot.lds index d3719df..0f42325 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);