Update of /cvsroot/gc-linux/linux/drivers/block
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24281
Modified Files:
Makefile Kconfig
Log Message:
Memorycard block device added
Index: Makefile
===================================================================
RCS file: /cvsroot/gc-linux/linux/drivers/block/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile 24 Apr 2004 18:31:44 -0000 1.3
+++ Makefile 8 May 2004 09:51:54 -0000 1.4
@@ -28,6 +28,7 @@
obj-$(CONFIG_ATARI_SLM) += acsi_slm.o
obj-$(CONFIG_AMIGA_Z2RAM) += z2ram.o
obj-$(CONFIG_GAMECUBE_ARAM) += gc_aram.o
+obj-$(CONFIG_GAMECUBE_MEMCARD) += gc_memcard.o
obj-$(CONFIG_BLK_DEV_RAM) += rd.o
obj-$(CONFIG_BLK_DEV_LOOP) += loop.o
obj-$(CONFIG_BLK_DEV_PS2) += ps2esdi.o
Index: Kconfig
===================================================================
RCS file: /cvsroot/gc-linux/linux/drivers/block/Kconfig,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Kconfig 24 Apr 2004 18:31:44 -0000 1.3
+++ Kconfig 8 May 2004 09:51:54 -0000 1.4
@@ -72,6 +72,13 @@
To compile this driver as a module, choose M here: the
module will be called gc_aram.
+config GAMECUBE_MEMCARD
+ bool "GameCube memory card support"
+ depends on GAMECUBE
+ help
+ This enables support for using the GameCube's memory cards.
+ Say Y if you want to include this driver in the kernel.
+
config ATARI_ACSI
tristate "Atari ACSI support"
depends on ATARI && BROKEN
|