From: <he...@us...> - 2004-10-19 23:37:04
|
Update of /cvsroot/gc-linux/linux/arch/ppc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29422/arch/ppc Modified Files: Kconfig Log Message: - Transformed console.{c,h} into gcn-con.{c,h} Renamed consistenly parts of the code, and rearranged it a little bit. Remember that this is not a fully functional console but a console suitable for early debugging as it is available as soon as the setup arch code is run. - Moved gc-dvdcover.c to gcn-dvdcover.c. Renamed consistenly parts of the code. - Moved gc-rsw.c to gcn-rsw.c. Renamed consistenly parts of the code. - Added copyright headers to files. Index: Kconfig =================================================================== RCS file: /cvsroot/gc-linux/linux/arch/ppc/Kconfig,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Kconfig 19 Oct 2004 09:46:07 -0000 1.18 +++ Kconfig 19 Oct 2004 23:36:53 -0000 1.19 @@ -549,7 +549,7 @@ config GAMECUBE bool "Nintendo-GameCube" help - Select GameCube if configuring for the Nintendo GameCube. + Select GAMECUBE if configuring for the Nintendo GameCube. More information at: <http://gc-linux.sourceforge.net/> config ADIR @@ -623,25 +623,41 @@ depends on ADS8272 default y -config GAMECUBE_RESET_SWITCH - bool "GameCube Reset button" - default n - ---help--- - If you say yes to this option, support will be included for the - reset switch of the GameCube. - - This driver can also be built as a module. If so, the module - will be called gc-rsw. +config GAMECUBE_CONSOLE + bool "Nintendo GameCube debug console" + depends on GAMECUBE + default n + help + This option enables an early minimal console suitable for debugging + purposes. + + If in doubt, say N here. -config GAMECUBE_DVD_COVER - bool "GameCube DVD Cover" - default n - ---help--- - If you say yes to this option, support will be included for the - reset switch of the GameCube. - - This driver can also be built as a module. If so, the module - will be called gc-dvdcover. +config GAMECUBE_RESET + tristate "Nintendo GameCube reset button" + depends on GAMECUBE + default y + help + If you say yes to this option, support will be included for the + reset button of the Nintendo GameCube. + + This driver can also be built as a module. If so, the module + will be called gcn-rsw. + + If in doubt, say Y here. + +config GAMECUBE_DVDCOVER + tristate "Nintendo GameCube DVD cover" + depends on GAMECUBE + default y + help + If you say yes to this option, support will be included for the + DVD cover of the Nintendo GameCube. + + This driver can also be built as a module. If so, the module + will be called gcn-dvdcover. + + If in doubt, say Y here. config TQM8xxL bool @@ -825,12 +841,6 @@ depends on SMP default "4" -config GAMECUBE_CONSOLE - bool "GameCube Minimal Screen Console" - depends on GAMECUBE - ---help--- - ... - config PREEMPT bool "Preemptible Kernel" help |