Re: [PATCH v2] qemu-kvm: Install built option roms

2009-09-02 Thread Marcelo Tosatti
On Wed, Sep 02, 2009 at 06:27:15PM +0200, Jan Kiszka wrote:
> Based on Avi's version:
> 
> Pick up option roms from the build directory if available. As we do not
> ship a extboot.bin binary, this also fixes the installation of this rom.
> 
> Signed-off-by: Jan Kiszka 
> ---
> v2: Removed forgotten reference to $(SRC_PATH)

Applied this and 0.11-stable version. Thanks.

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2] qemu-kvm: Install built option roms

2009-09-02 Thread Jan Kiszka
Based on Avi's version:

Pick up option roms from the build directory if available. As we do not
ship a extboot.bin binary, this also fixes the installation of this rom.

Signed-off-by: Jan Kiszka 
---
v2: Removed forgotten reference to $(SRC_PATH)


 Makefile |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile
index bfc4b0f..0850241 100644
--- a/Makefile
+++ b/Makefile
@@ -251,6 +251,9 @@ ifneq ($(BLOBS),)
if [ -f $(SRC_PATH)/pc-bios/$$x ];then \
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; 
\
fi \
+   ; if [ -f pc-bios/optionrom/$$x ];then \
+   $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
+   fi \
done
 endif
$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html