diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-12 14:29:28 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-15 09:20:47 -0600 |
commit | a10f07a7d0827eeef920c16b500b50030b7ff651 (patch) | |
tree | a44dcb4da7c63ea80b9866b7f1b87aa86263d34d /Makefile.objs | |
parent | a5296ca9df745d8af319282ab5d85439c211bb10 (diff) | |
download | qemu-a10f07a7d0827eeef920c16b500b50030b7ff651.tar.gz qemu-a10f07a7d0827eeef920c16b500b50030b7ff651.tar.bz2 qemu-a10f07a7d0827eeef920c16b500b50030b7ff651.zip |
qom: introduce root device
This is based on Jan's suggestion for how to do unique naming. The root device
is the root of composition. All devices are reachable via child<> links from
this device.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index 281b698c3c..f753d838ff 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -278,7 +278,7 @@ hw-obj-$(CONFIG_LSI_SCSI_PCI) += lsi53c895a.o hw-obj-$(CONFIG_ESP) += esp.o hw-obj-y += dma-helpers.o sysbus.o isa-bus.o -hw-obj-y += qdev-addr.o +hw-obj-y += qdev-addr.o container.o # VGA hw-obj-$(CONFIG_VGA_PCI) += vga-pci.o |