diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /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/Makefile | 47 |
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 | |||
16 | obj-y := elevator.o ll_rw_blk.o ioctl.o genhd.o scsi_ioctl.o | ||
17 | |||
18 | obj-$(CONFIG_IOSCHED_NOOP) += noop-iosched.o | ||
19 | obj-$(CONFIG_IOSCHED_AS) += as-iosched.o | ||
20 | obj-$(CONFIG_IOSCHED_DEADLINE) += deadline-iosched.o | ||
21 | obj-$(CONFIG_IOSCHED_CFQ) += cfq-iosched.o | ||
22 | obj-$(CONFIG_MAC_FLOPPY) += swim3.o | ||
23 | obj-$(CONFIG_BLK_DEV_FD) += floppy.o | ||
24 | obj-$(CONFIG_BLK_DEV_FD98) += floppy98.o | ||
25 | obj-$(CONFIG_AMIGA_FLOPPY) += amiflop.o | ||
26 | obj-$(CONFIG_ATARI_FLOPPY) += ataflop.o | ||
27 | obj-$(CONFIG_BLK_DEV_SWIM_IOP) += swim_iop.o | ||
28 | obj-$(CONFIG_ATARI_ACSI) += acsi.o | ||
29 | obj-$(CONFIG_ATARI_SLM) += acsi_slm.o | ||
30 | obj-$(CONFIG_AMIGA_Z2RAM) += z2ram.o | ||
31 | obj-$(CONFIG_BLK_DEV_RAM) += rd.o | ||
32 | obj-$(CONFIG_BLK_DEV_LOOP) += loop.o | ||
33 | obj-$(CONFIG_BLK_DEV_PS2) += ps2esdi.o | ||
34 | obj-$(CONFIG_BLK_DEV_XD) += xd.o | ||
35 | obj-$(CONFIG_BLK_CPQ_DA) += cpqarray.o | ||
36 | obj-$(CONFIG_BLK_CPQ_CISS_DA) += cciss.o | ||
37 | obj-$(CONFIG_BLK_DEV_DAC960) += DAC960.o | ||
38 | obj-$(CONFIG_CDROM_PKTCDVD) += pktcdvd.o | ||
39 | |||
40 | obj-$(CONFIG_BLK_DEV_UMEM) += umem.o | ||
41 | obj-$(CONFIG_BLK_DEV_NBD) += nbd.o | ||
42 | obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o | ||
43 | |||
44 | obj-$(CONFIG_VIODASD) += viodasd.o | ||
45 | obj-$(CONFIG_BLK_DEV_SX8) += sx8.o | ||
46 | obj-$(CONFIG_BLK_DEV_UB) += ub.o | ||
47 | |||