aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/block/Makefile
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/block/Makefile')
-rw-r--r--drivers/block/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/drivers/block/Makefile b/drivers/block/Makefile
new file mode 100644
index 000000000000..1cf09a1c065b
--- /dev/null
+++ b/drivers/block/Makefile
@@ -0,0 +1,47 @@
1#
2# Makefile for the kernel block device drivers.
3#
4# 12 June 2000, Christoph Hellwig <hch@infradead.org>
5# Rewritten to use lists instead of if-statements.
6#
7# Note : at this point, these files are compiled on all systems.
8# In the future, some of these should be built conditionally.
9#
10
11#
12# NOTE that ll_rw_blk.c must come early in linkage order - it starts the
13# kblockd threads
14#
15
16obj-y := elevator.o ll_rw_blk.o ioctl.o genhd.o scsi_ioctl.o
17
18obj-$(CONFIG_IOSCHED_NOOP) += noop-iosched.o
19obj-$(CONFIG_IOSCHED_AS) += as-iosched.o
20obj-$(CONFIG_IOSCHED_DEADLINE) += deadline-iosched.o
21obj-$(CONFIG_IOSCHED_CFQ) += cfq-iosched.o
22obj-$(CONFIG_MAC_FLOPPY) += swim3.o
23obj-$(CONFIG_BLK_DEV_FD) += floppy.o
24obj-$(CONFIG_BLK_DEV_FD98) += floppy98.o
25obj-$(CONFIG_AMIGA_FLOPPY) += amiflop.o
26obj-$(CONFIG_ATARI_FLOPPY) += ataflop.o
27obj-$(CONFIG_BLK_DEV_SWIM_IOP) += swim_iop.o
28obj-$(CONFIG_ATARI_ACSI) += acsi.o
29obj-$(CONFIG_ATARI_SLM) += acsi_slm.o
30obj-$(CONFIG_AMIGA_Z2RAM) += z2ram.o
31obj-$(CONFIG_BLK_DEV_RAM) += rd.o
32obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
33obj-$(CONFIG_BLK_DEV_PS2) += ps2esdi.o
34obj-$(CONFIG_BLK_DEV_XD) += xd.o
35obj-$(CONFIG_BLK_CPQ_DA) += cpqarray.o
36obj-$(CONFIG_BLK_CPQ_CISS_DA) += cciss.o
37obj-$(CONFIG_BLK_DEV_DAC960) += DAC960.o
38obj-$(CONFIG_CDROM_PKTCDVD) += pktcdvd.o
39
40obj-$(CONFIG_BLK_DEV_UMEM) += umem.o
41obj-$(CONFIG_BLK_DEV_NBD) += nbd.o
42obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
43
44obj-$(CONFIG_VIODASD) += viodasd.o
45obj-$(CONFIG_BLK_DEV_SX8) += sx8.o
46obj-$(CONFIG_BLK_DEV_UB) += ub.o
47