03e947f9c2
The target-specific code in nmi.c has been removed with this commit:
commit f7e981f295
nmi: remove x86 specific nmi handling
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
24 lines
847 B
Makefile
24 lines
847 B
Makefile
# core qdev-related obj files, also used by *-user:
|
|
common-obj-y += qdev.o qdev-properties.o
|
|
common-obj-y += bus.o reset.o
|
|
common-obj-y += fw-path-provider.o
|
|
# irq.o needed for qdev GPIO handling:
|
|
common-obj-y += irq.o
|
|
common-obj-y += hotplug.o
|
|
common-obj-y += nmi.o
|
|
|
|
common-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o
|
|
common-obj-$(CONFIG_XILINX_AXI) += stream.o
|
|
common-obj-$(CONFIG_PTIMER) += ptimer.o
|
|
common-obj-$(CONFIG_SOFTMMU) += sysbus.o
|
|
common-obj-$(CONFIG_SOFTMMU) += machine.o
|
|
common-obj-$(CONFIG_SOFTMMU) += loader.o
|
|
common-obj-$(CONFIG_FITLOADER) += loader-fit.o
|
|
common-obj-$(CONFIG_SOFTMMU) += qdev-properties-system.o
|
|
common-obj-$(CONFIG_SOFTMMU) += register.o
|
|
common-obj-$(CONFIG_SOFTMMU) += or-irq.o
|
|
common-obj-$(CONFIG_PLATFORM_BUS) += platform-bus.o
|
|
|
|
obj-$(CONFIG_SOFTMMU) += generic-loader.o
|
|
obj-$(CONFIG_SOFTMMU) += null-machine.o
|