diff mbox

[qemu] configure, ppc64: Copy skiboot.lid to build directory when configuring

Message ID 1477448283-27350-1-git-send-email-aik@ozlabs.ru
State New
Headers show

Commit Message

Alexey Kardashevskiy Oct. 26, 2016, 2:18 a.m. UTC
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 <aik@ozlabs.ru>
---
 configure | 1 +
 1 file changed, 1 insertion(+)

Comments

David Gibson Oct. 27, 2016, 3:13 a.m. UTC | #1
On Wed, Oct 26, 2016 at 01:18:03PM +1100, Alexey Kardashevskiy wrote:
> 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 <aik@ozlabs.ru>

Applied to ppc-for-2.8, thanks.

> ---
>  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 \
diff mbox

Patch

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 \