From: Albert H. <he...@us...> - 2008-03-26 20:02:58
|
Update of /cvsroot/gc-linux/linux/drivers/exi In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15088/drivers/exi Modified Files: Kconfig Log Message: Use CONFIG_GAMECUBE_COMMON to denote common code between gamecube and wii. Use CONFIG_GAMECUBE for the gamecube platform. Use CONFIG_WII for the wii platform. Index: Kconfig =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/exi/Kconfig,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Kconfig 15 Aug 2005 20:35:40 -0000 1.2 +++ Kconfig 26 Mar 2008 20:02:28 -0000 1.3 @@ -2,30 +2,19 @@ # Nintendo GameCube EXI (Expansion Interface) support. # -if GAMECUBE +if GAMECUBE_COMMON -menu "EXI (Expansion Interface) support" +menu "EXI support" config GAMECUBE_EXI - bool "EXI (Expansion Interface) support (EXPERIMENTAL)" - depends on EXPERIMENTAL + bool "Nintendo GameCube/Wii External Interface (EXI)" default y help - On the Expansion Interface sit the memory card slots, + On the External Interface sit the memory card slots, serial ports I & II, the Mask ROM, RTC, SRAM and UART. If in doubt, say Y here. -config GAMECUBE_RTC - bool "Real Time Clock and SRAM support" - depends on GAMECUBE_EXI - default y - help - If you say yes to this option, support will be included for the - Real Time Clock and SRAM of the Nintendo GameCube. - - If in doubt, say Y here. - endmenu endif |