From: Jan Kiszka <[email protected]> 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 <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]> 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-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
