Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759425Ab2HJJ75 (ORCPT ); Fri, 10 Aug 2012 05:59:57 -0400 Received: from cantor2.suse.de ([195.135.220.15]:57295 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753234Ab2HJJ74 (ORCPT ); Fri, 10 Aug 2012 05:59:56 -0400 Date: Fri, 10 Aug 2012 11:59:53 +0200 From: Michal Marek To: Jan Engelhardt Cc: Linus Torvalds , Sam Ravnborg , Arnaud Lacombe , Nick Bowler , Jan Beulich , Linux Kernel Mailing List Subject: Re: "Inconsistent kallsyms data" error Message-ID: <20120810095953.GA18851@sepie.suse.cz> References: <20120707214033.GA5303@pobox.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1776 Lines: 48 On Fri, Aug 10, 2012 at 02:02:33AM +0200, Jan Engelhardt wrote: > > On Saturday 2012-07-07 23:40, Michal Marek wrote: > >index cd9c6c6..4629038 100644 > >--- a/scripts/link-vmlinux.sh > >+++ b/scripts/link-vmlinux.sh > >@@ -210,8 +210,8 @@ if [ -n "${CONFIG_KALLSYMS}" ]; then > > mksysmap ${kallsyms_vmlinux} .tmp_System.map > > > > if ! cmp -s System.map .tmp_System.map; then > >- echo Inconsistent kallsyms data > >- echo echo Try "make KALLSYMS_EXTRA_PASS=1" as a workaround > >+ echo >&2 Inconsistent kallsyms data > >+ echo >&2 echo Try "make KALLSYMS_EXTRA_PASS=1" as a workaround > > Hm why is there echo twice in that one line? Seems like an oversight.. Good catch. >From 367e43c50d7f7c3b0cec17f4d855a96f47f5e17b Mon Sep 17 00:00:00 2001 From: Michal Marek Date: Fri, 10 Aug 2012 11:55:11 +0200 Subject: [PATCH] link-vmlinux.sh: Fix stray "echo" in error message Reported-by: Jan Engelhardt Signed-off-by: Michal Marek --- scripts/link-vmlinux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index 4629038..4235a63 100644 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh @@ -211,7 +211,7 @@ if [ -n "${CONFIG_KALLSYMS}" ]; then if ! cmp -s System.map .tmp_System.map; then echo >&2 Inconsistent kallsyms data - echo >&2 echo Try "make KALLSYMS_EXTRA_PASS=1" as a workaround + echo >&2 Try "make KALLSYMS_EXTRA_PASS=1" as a workaround cleanup exit 1 fi -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/