From patchwork Wed Oct 26 02:18:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Kardashevskiy X-Patchwork-Id: 686850 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3t3Ycd51Q8z9ssP for ; Wed, 26 Oct 2016 13:19:29 +1100 (AEDT) Received: from localhost ([::1]:59185 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzDoN-0007nG-8I for incoming@patchwork.ozlabs.org; Tue, 25 Oct 2016 22:19:27 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzDnf-0007S8-6D for qemu-devel@nongnu.org; Tue, 25 Oct 2016 22:18:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bzDnb-0007g8-7J for qemu-devel@nongnu.org; Tue, 25 Oct 2016 22:18:43 -0400 Received: from ozlabs.ru ([83.169.36.222]:45707) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzDnb-0007fv-1A; Tue, 25 Oct 2016 22:18:39 -0400 Received: from vpl2.ozlabs.ibm.com (localhost [IPv6:::1]) by ozlabs.ru (Postfix) with ESMTP id B1ADC1200F3; Wed, 26 Oct 2016 04:18:05 +0200 (CEST) From: Alexey Kardashevskiy To: qemu-devel@nongnu.org Date: Wed, 26 Oct 2016 13:18:03 +1100 Message-Id: <1477448283-27350-1-git-send-email-aik@ozlabs.ru> X-Mailer: git-send-email 2.5.0.rc3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 83.169.36.222 Subject: [Qemu-devel] [PATCH qemu] 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: Alexey Kardashevskiy , qemu-ppc@nongnu.org, David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" 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 --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index d3dafcb..300b0cb 100755 --- a/configure +++ b/configure @@ -6071,6 +6071,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 \