From: <aot...@us...> - 2005-08-15 20:35:47
|
Update of /cvsroot/gc-linux/linux/drivers/exi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv396/drivers/exi Modified Files: Kconfig Log Message: - Make CONFIG_GAMECUBE_EXI menu visible only when CONFIG_GAMECUBE=y - Cleanup descriptions a bit while we're at it. - Update defconfig. Index: Kconfig =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/exi/Kconfig,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Kconfig 6 Jul 2005 18:28:07 -0000 1.1 +++ Kconfig 15 Aug 2005 20:35:40 -0000 1.2 @@ -1,24 +1,24 @@ # -# Nintendo GameCube Expansion Interface (EXI) support. +# Nintendo GameCube EXI (Expansion Interface) support. # -menu "Expansion Interface (EXI) support" +if GAMECUBE + +menu "EXI (Expansion Interface) support" config GAMECUBE_EXI - bool "Expansion Interface (EXI) support (EXPERIMENTAL)" - depends on GAMECUBE && EXPERIMENTAL + bool "EXI (Expansion Interface) support (EXPERIMENTAL)" + depends on EXPERIMENTAL default y help - This adds support for the Expansion Interface as found in - the Nintendo GameCube. On the Expansion Interface sit the - memory card slots, serial ports I & II, the Mask ROM, RTC, - SRAM and UART. + On the Expansion Interface sit the memory card slots, + serial ports I & II, the Mask ROM, RTC, SRAM and UART. - Say Y. + If in doubt, say Y here. config GAMECUBE_RTC bool "Real Time Clock and SRAM support" - depends on GAMECUBE && GAMECUBE_EXI + depends on GAMECUBE_EXI default y help If you say yes to this option, support will be included for the @@ -27,3 +27,5 @@ If in doubt, say Y here. endmenu + +endif |