From patchwork Sun Sep 13 15:18:47 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 47157 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8DFJ0vk027141 for ; Sun, 13 Sep 2009 15:19:00 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754586AbZIMPSy (ORCPT ); Sun, 13 Sep 2009 11:18:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754559AbZIMPSy (ORCPT ); Sun, 13 Sep 2009 11:18:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61073 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750947AbZIMPSx (ORCPT ); Sun, 13 Sep 2009 11:18:53 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8DFIvjU002274 for ; Sun, 13 Sep 2009 11:18:57 -0400 Received: from cleopatra.tlv.redhat.com (cleopatra.tlv.redhat.com [10.35.255.11]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8DFIuj3009629; Sun, 13 Sep 2009 11:18:56 -0400 Received: from localhost.localdomain (cleopatra.tlv.redhat.com [10.35.255.11]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id AA32F25004E; Sun, 13 Sep 2009 18:18:55 +0300 (IDT) From: Avi Kivity To: Marcelo Tosatti Cc: kvm@vger.kernel.org Subject: [PATCH 02/10] test: load image immediately after program headers Date: Sun, 13 Sep 2009 18:18:47 +0300 Message-Id: <1252855135-2519-3-git-send-email-avi@redhat.com> In-Reply-To: <1252855135-2519-1-git-send-email-avi@redhat.com> References: <1252855135-2519-1-git-send-email-avi@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Otherwise, ld places the image somewhere where multiboot can't find the multiboot headers. Signed-off-by: Avi Kivity --- kvm/user/flat.lds | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kvm/user/flat.lds b/kvm/user/flat.lds index 61f1057..d61bec3 100644 --- a/kvm/user/flat.lds +++ b/kvm/user/flat.lds @@ -2,7 +2,7 @@ OUTPUT_FORMAT(binary) SECTIONS { - . = 1M; + . = 4M + SIZEOF_HEADERS; stext = .; .text : { *(.init) *(.text) *(.text.*) } . = ALIGN(4K);