diff options
author | Alexey Kardashevskiy | 2016-10-26 04:18:03 +0200 |
---|---|---|
committer | David Gibson | 2016-10-28 00:38:24 +0200 |
commit | 225a9ab8833e5191d180e23a23b8fb381fbaf9c3 (patch) | |
tree | 050cdaedb9f1bb1ef46045761ae115c25b4d34dc /configure | |
parent | ppc: add skiboot firmware for the pnv platform (diff) | |
download | qemu-225a9ab8833e5191d180e23a23b8fb381fbaf9c3.tar.gz qemu-225a9ab8833e5191d180e23a23b8fb381fbaf9c3.tar.xz qemu-225a9ab8833e5191d180e23a23b8fb381fbaf9c3.zip |
configure, ppc64: Copy skiboot.lid to build directory when configuring
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>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 \ |