From e629a53a14aab6dd3afe7c3f6d76289deff64e5d Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 7 Dec 2011 13:05:22 +0100 Subject: fix underscore count in bss_start/bss_stop As done in the Linux Kernel Signed-off-by: Sascha Hauer --- arch/blackfin/boards/ipe337/barebox.lds.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/blackfin/boards') diff --git a/arch/blackfin/boards/ipe337/barebox.lds.S b/arch/blackfin/boards/ipe337/barebox.lds.S index 25ca988815..9e2b0342d5 100644 --- a/arch/blackfin/boards/ipe337/barebox.lds.S +++ b/arch/blackfin/boards/ipe337/barebox.lds.S @@ -84,9 +84,9 @@ SECTIONS ___usymtab_end = .; . = ALIGN(4); - __bss_start = .; + ___bss_start = .; .bss : { *(.bss) } - __bss_stop = .; + ___bss_stop = .; _end = .; } -- cgit v1.2.3