From patchwork Tue Jun 7 19:41:15 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cyrill Gorcunov X-Patchwork-Id: 859322 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p57Jg5Rx006464 for ; Tue, 7 Jun 2011 19:42:05 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758452Ab1FGTmA (ORCPT ); Tue, 7 Jun 2011 15:42:00 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:41987 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754938Ab1FGTl6 (ORCPT ); Tue, 7 Jun 2011 15:41:58 -0400 Received: by bwz15 with SMTP id 15so50489bwz.19 for ; Tue, 07 Jun 2011 12:41:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:user-agent:date:from:to:cc:subject :references:content-disposition; bh=/V/vR3qLYfHVNjt0K2xB/nUZKu+DTE++yciprFiw3H8=; b=keIhk67dBTAETglmcNqrE4px5roppAAYYBX2waIVfW/wQjtCJDpaAVQqVnUMQ8bxra nLfK3QFvyIc+l1RE2lIjNpSukYXbZ9x9BwmFifiyVlZke6l2gQSC2ZkHrBTWpTRueaxD 3BzVWErnc4pg+wnX/XGxyT8pP/IejsCWH9ST4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:user-agent:date:from:to:cc:subject:references :content-disposition; b=Ck+Yh2fzfo2OIrC+nn6uG+loQgNDsavm8qef5YOhXxBE6HV6fwVdehjweh3/aTxq1n 1Bk/DWXbokryLwjTTdz8+R2aEMJuGVuT0sbqdC9LWhiArdOx4HCFl2Et/N1q7qo11XjC n0vTRbkQDeXDd8aNBB4JK2MPCq6nbiB85uy4o= Received: by 10.204.143.4 with SMTP id s4mr656340bku.98.1307475717157; Tue, 07 Jun 2011 12:41:57 -0700 (PDT) Received: from sun.localdomain (95-26-151-198.broadband.corbina.ru [95.26.151.198]) by mx.google.com with ESMTPS id x6sm4482591bkv.0.2011.06.07.12.41.55 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 07 Jun 2011 12:41:56 -0700 (PDT) Received: by sun.localdomain (Postfix, from userid 500) id 740AB6092C; Tue, 7 Jun 2011 23:41:54 +0400 (MSD) Message-Id: <20110607194154.268842061@gmail.com> User-Agent: quilt/0.48-1 Date: Tue, 07 Jun 2011 23:41:15 +0400 From: Cyrill Gorcunov To: penberg@kernel.org Cc: asias.hejun@gmail.com, mingo@elte.hu, levinsasha928@gmail.com, prasadjoshi124@gmail.com, kvm@vger.kernel.org, Cyrill Gorcunov Subject: [patch 4/5] kvm tools: Get rid of spaces in ld script References: <20110607194111.025052224@gmail.com> Content-Disposition: inline; filename=kvm-tools-del-spaces Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 07 Jun 2011 19:42:05 +0000 (UTC) Signed-off-by: Cyrill Gorcunov --- tools/kvm/bios/rom.ld.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-2.6.git/tools/kvm/bios/rom.ld.S =================================================================== --- linux-2.6.git.orig/tools/kvm/bios/rom.ld.S +++ linux-2.6.git/tools/kvm/bios/rom.ld.S @@ -11,7 +11,7 @@ PHDRS { } SECTIONS { - . = 0; - .text : { *(.text) } :text = 0x9090 + . = 0; + .text : { *(.text) } :text = 0x9090 }