From: Macpaul Lin Date: Wed, 9 Nov 2011 08:24:57 +0000 (+0800) Subject: nds32: fix data section of linker script X-Git-Tag: v2011.12-rc1~223^2^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4f40546649f8f5fb715a80a6c32a47c4872478c;p=kernel%2Fu-boot.git nds32: fix data section of linker script Make linker script handles .data.rel sections. Signed-off-by: Macpaul Lin Tested-by: Macpaul Lin Cc: Mike Frysinger --- diff --git a/arch/nds32/cpu/n1213/u-boot.lds b/arch/nds32/cpu/n1213/u-boot.lds index 45221ee..1903420 100644 --- a/arch/nds32/cpu/n1213/u-boot.lds +++ b/arch/nds32/cpu/n1213/u-boot.lds @@ -41,7 +41,7 @@ SECTIONS .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } . = ALIGN(4); - .data : { *(.data) } + .data : { *(.data*) } . = ALIGN(4);