From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-ve0-x234.google.com ([2607:f8b0:400c:c01::234]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Vl8LG-0006c4-6A for barebox@lists.infradead.org; Tue, 26 Nov 2013 02:25:34 +0000 Received: by mail-ve0-f180.google.com with SMTP id jz11so3644097veb.11 for ; Mon, 25 Nov 2013 18:25:12 -0800 (PST) MIME-Version: 1.0 Date: Tue, 26 Nov 2013 10:25:12 +0800 Message-ID: From: Kevin Du Huanpeng List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH] mips start.S: using marco EXPORT(_start) result _start symbol can not be found in System.map To: barebox@lists.infradead.org the _start symbol is not found in System.map if using EXPORT(_start) . when TEXT_BASE changed, I can't see if the _start linked to the right address in System.map. - - - diff --git a/arch/mips/boot/start.S b/arch/mips/boot/start.S index 7e2ae5e..75d7ac8 100644 --- a/arch/mips/boot/start.S +++ b/arch/mips/boot/start.S @@ -49,9 +49,8 @@ _pc: addiu \rd, ra, \label - _pc # label is assumed to be .text .section ".text_bare_init" .align 4 - -EXPORT(_start) - + .globl _start +_start: b __start nop - - - _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox