diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-25 23:58:51 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-25 23:58:51 +0000 |
commit | 2e5d83bbef5a539f22970c2bccd19b125d82aab0 (patch) | |
tree | f733c22c2f4d19bd0a00f373b919e2e3ada86241 /Makefile.target | |
parent | e6f3e5e016cc7473bc008f341d8e22bd989e03cb (diff) | |
download | qemu-2e5d83bbef5a539f22970c2bccd19b125d82aab0.zip |
Rearrange SCSI disk emulation code.
Add USB mass storage device emulation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1940 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 2b346172e0..4bf558fef9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -306,8 +306,11 @@ ifdef CONFIG_ADLIB SOUND_HW += fmopl.o adlib.o endif +# SCSI layer +VL_OBJS+= scsi-disk.o cdrom.o + # USB layer -VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o +VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o usb-msd.o # PCI network cards VL_OBJS+= ne2000.o rtl8139.o |