From patchwork Wed Sep 26 11:57:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 187046 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6EF832C0090 for ; Wed, 26 Sep 2012 21:57:59 +1000 (EST) Received: from localhost ([::1]:35552 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGqFY-0003uk-Va for incoming@patchwork.ozlabs.org; Wed, 26 Sep 2012 07:57:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGqFR-0003ue-7N for qemu-devel@nongnu.org; Wed, 26 Sep 2012 07:57:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TGqFQ-00031B-AG for qemu-devel@nongnu.org; Wed, 26 Sep 2012 07:57:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58123) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGqFQ-00030s-22 for qemu-devel@nongnu.org; Wed, 26 Sep 2012 07:57:48 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8QBvkmX026598 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 26 Sep 2012 07:57:46 -0400 Received: from colepc.redhat.com (ovpn-113-51.phx2.redhat.com [10.3.113.51]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q8QBvfML014599; Wed, 26 Sep 2012 07:57:43 -0400 From: Cole Robinson To: kvm@vger.kernel.org Date: Wed, 26 Sep 2012 07:57:13 -0400 Message-Id: X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: qemu-devel@nongnu.org, Cole Robinson Subject: [Qemu-devel] [qemu-kvm PATCH] mips: Fix link error with 'piix4_pm_init' X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org LINK mipsel-softmmu/qemu-system-mipsel hw/mips/../mips_malta.o: In function `mips_malta_init': mips_malta.c:962: undefined reference to `piix4_pm_init' Can reproduce with: ./configure --target-list=mipsel-softmmu --disable-werror make However only on qemu-kvm, not qemu.git or qemu 1.2.0. We are carrying this in Fedora since we build everything from qemu-kvm.git Signed-off-by: Cole Robinson --- hw/mips/Makefile.objs | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/mips/Makefile.objs b/hw/mips/Makefile.objs index 29a5d0d..89af0e9 100644 --- a/hw/mips/Makefile.objs +++ b/hw/mips/Makefile.objs @@ -1,6 +1,7 @@ obj-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o obj-y += mips_addr.o mips_timer.o mips_int.o obj-y += gt64xxx.o mc146818rtc.o +obj-y += acpi.o acpi_piix4.o obj-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o obj-y := $(addprefix ../,$(obj-y))