From: <pal...@us...> - 2005-04-08 14:39:24
|
Update of /cvsroot/gc-linux/linux/drivers/block In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15523/drivers/block Modified Files: Kconfig Makefile Log Message: Addition of DVD driver since some mods replace the DVD interface with something more interesting (IDE,SATA, etc) Index: Kconfig =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/block/Kconfig,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Kconfig 13 Mar 2005 21:53:32 -0000 1.12 +++ Kconfig 8 Apr 2005 14:39:16 -0000 1.13 @@ -61,6 +61,17 @@ To compile this driver as a module, choose M here: the module will be called z2ram. +config GAMECUBE_DVD + tristate "Nintendo Gamecube DVD" + depends on GAMECUBE + help + This enables support for using the mini-DVD drive on the + Nintendo Gamecube. + Say Y if you want to include this driver in the kernel. + + To compile this driver as a module, choose M here: the + module will be called gcn-dvd + config GAMECUBE_ARAM tristate "Nintendo GameCube ARAM" depends on GAMECUBE Index: Makefile =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/block/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Makefile 4 Jan 2005 21:39:29 -0000 1.10 +++ Makefile 8 Apr 2005 14:39:16 -0000 1.11 @@ -31,6 +31,7 @@ obj-$(CONFIG_GAMECUBE_ARAM) += gcn-aram.o obj-$(CONFIG_GAMECUBE_MEMCARD) += gcn-memcard.o obj-$(CONFIG_GAMECUBE_SD) += gcn-sd.o +obj-$(CONFIG_GAMECUBE_DVD) += gcn-dvd/ obj-$(CONFIG_BLK_DEV_RAM) += rd.o obj-$(CONFIG_BLK_DEV_LOOP) += loop.o obj-$(CONFIG_BLK_DEV_PS2) += ps2esdi.o |