mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 07:44:21 +08:00
ec1d8c8afc
commit d13bc4d84a
upstream.
This driver is for fairly obscure hardware, and has only seen random
drive-by changes after the maintainer stopped working on it in 2005
(about a year and a half after it was introduced). It has some
"interesting" block layer interactions, so let's just drop it unless
anyone complains.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220721064102.1715460-1-hch@lst.de
[axboe: fix date typo, it was in 2005, not 2015]
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel block device drivers.
|
|
#
|
|
# 12 June 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
obj-$(CONFIG_MAC_FLOPPY) += swim3.o
|
|
obj-$(CONFIG_BLK_DEV_SWIM) += swim_mod.o
|
|
obj-$(CONFIG_BLK_DEV_FD) += floppy.o
|
|
obj-$(CONFIG_AMIGA_FLOPPY) += amiflop.o
|
|
obj-$(CONFIG_PS3_DISK) += ps3disk.o
|
|
obj-$(CONFIG_PS3_VRAM) += ps3vram.o
|
|
obj-$(CONFIG_ATARI_FLOPPY) += ataflop.o
|
|
obj-$(CONFIG_AMIGA_Z2RAM) += z2ram.o
|
|
obj-$(CONFIG_BLK_DEV_RAM) += brd.o
|
|
obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
|
|
obj-$(CONFIG_BLK_DEV_DAC960) += DAC960.o
|
|
obj-$(CONFIG_XILINX_SYSACE) += xsysace.o
|
|
obj-$(CONFIG_CDROM_PKTCDVD) += pktcdvd.o
|
|
obj-$(CONFIG_SUNVDC) += sunvdc.o
|
|
obj-$(CONFIG_BLK_DEV_SKD) += skd.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_UMEM) += umem.o
|
|
obj-$(CONFIG_BLK_DEV_NBD) += nbd.o
|
|
obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
|
|
obj-$(CONFIG_VIRTIO_BLK) += virtio_blk.o
|
|
|
|
obj-$(CONFIG_XEN_BLKDEV_FRONTEND) += xen-blkfront.o
|
|
obj-$(CONFIG_XEN_BLKDEV_BACKEND) += xen-blkback/
|
|
obj-$(CONFIG_BLK_DEV_DRBD) += drbd/
|
|
obj-$(CONFIG_BLK_DEV_RBD) += rbd.o
|
|
obj-$(CONFIG_BLK_DEV_PCIESSD_MTIP32XX) += mtip32xx/
|
|
|
|
obj-$(CONFIG_BLK_DEV_RSXX) += rsxx/
|
|
obj-$(CONFIG_BLK_DEV_NULL_BLK) += null_blk.o
|
|
obj-$(CONFIG_ZRAM) += zram/
|
|
|
|
skd-y := skd_main.o
|
|
swim_mod-y := swim.o swim_asm.o
|