diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-02-05 12:27:44 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-08 18:13:13 +0200 |
commit | a100107d5612ba568c817f22c628b2c9eeb431bf (patch) | |
tree | 316743c0e842d28dbe547175ecee915e56e4fc88 /hw | |
parent | ddf2bcfc63e7c73cc37f870599ee61f9204bde66 (diff) |
hw: move watchdogs to hw/watchdog, configure via default-configs/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/watchdog/Makefile.objs | 3 | ||||
-rw-r--r-- | hw/watchdog/wdt_ib700.c (renamed from hw/wdt_ib700.c) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index c813b1ef78..5559a8ba5c 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -2,7 +2,6 @@ obj-y += mc146818rtc.o obj-y += apic_common.o apic.o obj-y += sga.o ioapic_common.o ioapic.o piix_pci.o obj-y += vmport.o -obj-y += wdt_ib700.o obj-y += debugcon.o debugexit.o obj-y += pc_sysfw.o obj-y += lpc_ich9.o q35.o diff --git a/hw/watchdog/Makefile.objs b/hw/watchdog/Makefile.objs index f57133b729..4b0374a555 100644 --- a/hw/watchdog/Makefile.objs +++ b/hw/watchdog/Makefile.objs @@ -1,2 +1,3 @@ common-obj-y += watchdog.o -common-obj-$(CONFIG_PCI) += wdt_i6300esb.o +common-obj-$(CONFIG_WDT_IB6300ESB) += wdt_i6300esb.o +common-obj-$(CONFIG_WDT_IB700) += wdt_ib700.o diff --git a/hw/wdt_ib700.c b/hw/watchdog/wdt_ib700.c index b8c4be85ff..b8c4be85ff 100644 --- a/hw/wdt_ib700.c +++ b/hw/watchdog/wdt_ib700.c |