diff options
author | Markus Armbruster <armbru@redhat.com> | 2009-08-21 10:31:34 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:35:24 -0500 |
commit | 0496713b3a94fb8a0ff4a80b35546e5d0d9888ed (patch) | |
tree | abb82ec81e3f501e46d1104ab8e1af8fdfecd58e /Makefile.target | |
parent | bac9b13036e99e3fd96b9777c79a2944614d6bf7 (diff) | |
download | qemu-0496713b3a94fb8a0ff4a80b35546e5d0d9888ed.tar.gz qemu-0496713b3a94fb8a0ff4a80b35546e5d0d9888ed.tar.bz2 qemu-0496713b3a94fb8a0ff4a80b35546e5d0d9888ed.zip |
qdev: convert watchdogs
-watchdog NAME is now equivalent to -device NAME, except it treats
option argument '?' specially, and supports only one watchdog.
A side effect is that a device created with -watchdog may now receive
a different PCI address.
i6300esb is now available on any machine with a PCI bus, not just PCs.
ib700 is still PC only, but that could be changed easily.
The only remaining use of struct WatchdogTimerModel and
watchdog_add_model() is supporting '-watchdog ?'. Should be replaced
by searching device_info_list for watchdog devices when we can
identify them there.
Also fixes ib700 not to use vm_clock before it is initialized: in
wdt_ib700_init(), called from register_watchdogs(), which runs before
init_timers(). The bug made ib700_write_enable_reg() crash in
qemu_del_timer().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.target b/Makefile.target index 7c5f877530..31dbdd4ad0 100644 --- a/Makefile.target +++ b/Makefile.target @@ -179,15 +179,15 @@ obj-y += pcnet.o obj-y += rtl8139.o obj-y += e1000.o -# Generic watchdog support and some watchdog devices -obj-y += wdt_ib700.o wdt_i6300esb.o +# PCI watchdog devices +obj-y += wdt_i6300esb.o # Hardware support obj-i386-y = ide.o pckbd.o vga.o $(sound-obj-y) dma.o isa-bus.o obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o -obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o +obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o # shared objects obj-ppc-y = ppc.o ide.o vga.o $(sound-obj-y) dma.o isa-bus.o openpic.o |