From: <aot...@us...> - 2005-07-06 18:28:17
|
Update of /cvsroot/gc-linux/linux/drivers/exi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25896/drivers/exi Modified Files: Makefile Added Files: Kconfig Log Message: - Rename CONFIG_EXI to CONFIG_GAMECUBE_EXI - Add drivers/exi/Kconfig - Relocate CONFIG_GAMECUBE_RTC to drivers/exi/Kconfig - Update default config accordingly --- NEW FILE: Kconfig --- # # Nintendo GameCube Expansion Interface (EXI) support. # menu "Expansion Interface (EXI) support" config GAMECUBE_EXI bool "Expansion Interface (EXI) support (EXPERIMENTAL)" depends on GAMECUBE && 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. Say Y. config GAMECUBE_RTC bool "Real Time Clock and SRAM support" depends on GAMECUBE && 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 Index: Makefile =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/exi/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 13 Mar 2005 21:49:16 -0000 1.4 +++ Makefile 6 Jul 2005 18:28:07 -0000 1.5 @@ -2,4 +2,4 @@ # Makefile for the EXI bus core. # -obj-$(CONFIG_EXI) += exi-driver.o exi-hw.o +obj-$(CONFIG_GAMECUBE_EXI) += exi-driver.o exi-hw.o |