From patchwork Fri Oct 28 01:37:24 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 688030 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)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3t4nNy2BzCz9svs for ; Fri, 28 Oct 2016 13:13:38 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.b=Qdfo/irF; dkim-atps=neutral Received: from localhost ([::1]:45680 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzwfo-0006CI-2t for incoming@patchwork.ozlabs.org; Thu, 27 Oct 2016 22:13:36 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60684) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzw96-0002bi-VR for qemu-devel@nongnu.org; Thu, 27 Oct 2016 21:39:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bzw95-0003JF-EQ for qemu-devel@nongnu.org; Thu, 27 Oct 2016 21:39:48 -0400 Received: from ozlabs.org ([103.22.144.67]:53745) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bzw95-0003Hr-3k; Thu, 27 Oct 2016 21:39:47 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 3t4mcQ3F2Pz9vDc; Fri, 28 Oct 2016 12:38:29 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1477618710; bh=mXbAm3TSRfN9HCtgN4YqDlWBsQn2JTbCI+6DNxjgcqQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Qdfo/irFYVfP/EOaJQNnUoRKK8bUNXSo+xTo/kx8oWpViBdYx91Jih2P/7f91/ZIQ rY73YzlPFtj2kRKpQWGEOrO2NZzkIqPePEwUj+Jr3szfUagQceNf+eTQ9PImT+qy56 AVRufb/fMMyA6MzDPcyNkNeMrIqHsD9IEJ8qR1EY= From: David Gibson To: peter.maydell@linaro.org Date: Fri, 28 Oct 2016 12:37:24 +1100 Message-Id: <1477618694-21019-24-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1477618694-21019-1-git-send-email-david@gibson.dropbear.id.au> References: <1477618694-21019-1-git-send-email-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 103.22.144.67 Subject: [Qemu-devel] [PULL 23/73] configure, ppc64: Copy skiboot.lid to build directory when configuring X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: lvivier@redhat.com, thuth@redhat.com, qemu-devel@nongnu.org, aik@ozlabs.ru, mark.cave-ayland@ilande.co.uk, agraf@suse.de, mdroth@linux.vnet.ibm.com, qemu-ppc@nongnu.org, clg@kaod.org, bharata@linux.vnet.ibm.com, David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Alexey Kardashevskiy When configured to compile out of tree, the configure script copies BIOS blobs to the build directory. However since the PPC64 powernv machine ROM has .lid extension, it is ignored and "make check" fails when trying the powernv machine. This adds *.lid to the list of copied blobs. Signed-off-by: Alexey Kardashevskiy Signed-off-by: David Gibson --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 8e10059..7b8e77f 100755 --- a/configure +++ b/configure @@ -6131,6 +6131,7 @@ FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" FILES="$FILES pc-bios/qemu-icon.bmp" for bios_file in \ $source_path/pc-bios/*.bin \ + $source_path/pc-bios/*.lid \ $source_path/pc-bios/*.aml \ $source_path/pc-bios/*.rom \ $source_path/pc-bios/*.dtb \