qemu: disable vga and avoid annoying warning message
supress warning message about missing rom file qemu-system-i386: pci_add_option_rom: \ failed to find romfile "vgabios-cirrus.bin" Change-Id: I335369cf40b0891cbc96b4ff4d9e5e2f4740ee96 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
a314368aac
commit
301572949a
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ KBUILD_CXXFLAGS += $(cflags-y)
|
||||||
|
|
||||||
QEMU_CPU_TYPE_arm = cortex-m3
|
QEMU_CPU_TYPE_arm = cortex-m3
|
||||||
QEMU_FLAGS_arm = -cpu $(QEMU_CPU_TYPE_arm) \
|
QEMU_FLAGS_arm = -cpu $(QEMU_CPU_TYPE_arm) \
|
||||||
-machine lm3s6965evb -nographic
|
-machine lm3s6965evb -nographic -vga none
|
||||||
QEMU_arm = qemu-system-arm
|
QEMU_arm = qemu-system-arm
|
||||||
|
|
||||||
export QEMU_FLAGS_arm QEMU_arm
|
export QEMU_FLAGS_arm QEMU_arm
|
||||||
|
|
|
@ -40,7 +40,7 @@ QEMU_X86_NO_REBOOT_y =
|
||||||
QEMU_X86_NO_REBOOT_ = -no-reboot
|
QEMU_X86_NO_REBOOT_ = -no-reboot
|
||||||
QEMU_FLAGS_x86 = -m 32 -cpu $(QEMU_CPU_TYPE_x86) \
|
QEMU_FLAGS_x86 = -m 32 -cpu $(QEMU_CPU_TYPE_x86) \
|
||||||
$(QEMU_X86_NO_REBOOT_$(CONFIG_REBOOT)) \
|
$(QEMU_X86_NO_REBOOT_$(CONFIG_REBOOT)) \
|
||||||
-nographic -display none -net none \
|
-nographic -vga none -display none -net none \
|
||||||
-clock dynticks -no-acpi -balloon none \
|
-clock dynticks -no-acpi -balloon none \
|
||||||
-L $(QEMU_BIOS) -bios bios.bin \
|
-L $(QEMU_BIOS) -bios bios.bin \
|
||||||
-machine type=pc-0.14
|
-machine type=pc-0.14
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue