 74ee1a7590
			
		
	
	
	74ee1a7590
	
	
	
		
			
			This patch adds support for the GD-Rom drive, SEGA's proprietary implementation of an IDE CD Rom for the SEGA Dreamcast. This driver implements Sega's Packet Interface (SPI) - at least partially. It will also read disks in SEGA's propreitary GD format. Unlike previous drivers (which were never in mainline) this uses DMA and not PIO to read disks. It is a new driver, not a refactoring of old drivers. Signed-off by: Adrian McMenamin <adrian@mcmen.demon.co.uk> Acked-by: Jens Axboe <jens.axboe@oracle.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			491 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			491 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Makefile for the kernel cdrom device drivers.
 | |
| #
 | |
| # 30 Jan 1998, Michael Elizabeth Chastain, <mailto:mec@shout.net>
 | |
| # Rewritten to use lists instead of if-statements.
 | |
| 
 | |
| # Each configuration option enables a list of files.
 | |
| 
 | |
| obj-$(CONFIG_BLK_DEV_IDECD)	+=              cdrom.o
 | |
| obj-$(CONFIG_BLK_DEV_SR)	+=              cdrom.o
 | |
| obj-$(CONFIG_PARIDE_PCD)	+=		cdrom.o
 | |
| obj-$(CONFIG_CDROM_PKTCDVD)	+=		cdrom.o
 | |
| 
 | |
| obj-$(CONFIG_VIOCD)		+= viocd.o      cdrom.o
 | |
| obj-$(CONFIG_GDROM)		+= gdrom.o      cdrom.o
 |