qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Unbreak FreeBSD build after optionrom update.


From: Sean Bruno
Subject: [Qemu-devel] [PATCH] Unbreak FreeBSD build after optionrom update.
Date: Tue, 26 Jul 2016 15:05:33 -0600

Update the build flags appropriately for FreeBSD and add the
correct LD_EMULATION type for the FreeBSD build case.

Fixes FreeBSD build error:
        ld: unrecognised emulation mode: elf_i386
        Supported emulations: elf_x86_64_fbsd elf_i386_fbsd
        gmake[1]: *** [Makefile:51: linuxboot_dma.img] Error 1
        gmake: *** [Makefile:229: romsubdir-optionrom] Error 2

Signed-off-by: Sean Bruno <address@hidden>
---
 pc-bios/optionrom/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile
index d88ce11..8c8d7cd 100644
--- a/pc-bios/optionrom/Makefile
+++ b/pc-bios/optionrom/Makefile
@@ -44,8 +44,12 @@ build-all: multiboot.bin linuxboot.bin linuxboot_dma.bin 
kvmvapic.bin
 ifdef CONFIG_WIN32
 LD_EMULATION = i386pe
 else
+ifdef CONFIG_BSD
+LD_EMULATION = elf_i386_fbsd
+else
 LD_EMULATION = elf_i386
 endif
+endif
 
 %.img: %.o
        $(call quiet-command,$(LD) $(LDFLAGS_NOPIE) -m $(LD_EMULATION) -Ttext 0 
-e _start -s -o $@ $<,"  Building $(TARGET_DIR)$@")
-- 
2.8.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]