e80b0fade0
This patch adds another usb-storage subdriver, which supports two fairly old dual-XD/SmartMedia reader-writers (USB1.1 devices). This driver was written by Daniel Drake <dsd@gentoo.org> -- he notes that he wrote this driver without specs, however a vendor-supplied GPL driver for the previous generation of products ("sma03") did prove to be quite useful, as did the sddr09 driver which also has to deal with low-level physical block layout on SmartMedia. The original patch has been reformed by me, as it clashed with the libusual patches. We really need to consolidate some of this common SmartMedia code, and get together with the MTD guys to share it with them as well. Signed-off-by: Daniel Drake <dsd@gentoo.org> Signed-off-by: Matthew Dharm <mdharm-usb@one-eyed-alien.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
30 lines
1.0 KiB
Makefile
30 lines
1.0 KiB
Makefile
#
|
|
# Makefile for the USB Mass Storage device drivers.
|
|
#
|
|
# 15 Aug 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
EXTRA_CFLAGS := -Idrivers/scsi
|
|
|
|
obj-$(CONFIG_USB_STORAGE) += usb-storage.o
|
|
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_USBAT) += shuttle_usbat.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_SDDR09) += sddr09.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_SDDR55) += sddr55.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_FREECOM) += freecom.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DPCM) += dpcm.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ISD200) += isd200.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DATAFAB) += datafab.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += jumpshot.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.o
|
|
|
|
usb-storage-objs := scsiglue.o protocol.o transport.o usb.o \
|
|
initializers.o $(usb-storage-obj-y)
|
|
|
|
ifneq ($(CONFIG_USB_LIBUSUAL),)
|
|
obj-$(CONFIG_USB) += libusual.o
|
|
endif
|