From: James S. <jsi...@us...> - 2002-06-03 22:44:59
|
Update of /cvsroot/linuxconsole/ruby/linux/arch/ppc In directory usw-pr-cvs1:/tmp/cvs-serv23928/linux/arch/ppc Modified Files: Config.help config.in Log Message: Synced to 2.5.19 Index: Config.help =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ppc/Config.help,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Config.help 16 May 2002 18:01:37 -0000 1.5 +++ Config.help 3 Jun 2002 22:44:56 -0000 1.6 @@ -299,8 +299,15 @@ other useful pieces of information. Sometimes this information is not present or incorrect. - Unless you expect to boot on a PReP system, there is not need to + Unless you expect to boot on a PReP system, there is no need to select Y. + +PReP residual data available in /proc/residual +CONFIG_PROC_PREPRESIDUAL + Enabling this option will create a /proc/residual file which allows + you to get at the residual data on PReP systems. You will need a tool + (lsresidual) to parse it. If you aren't on a PReP system, you don't + want this. CONFIG_ADB Apple Desktop Bus (ADB) support is for support of devices which Index: config.in =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ppc/config.in,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- config.in 16 May 2002 18:01:37 -0000 1.32 +++ config.in 3 Jun 2002 22:44:56 -0000 1.33 @@ -18,11 +18,15 @@ define_bool CONFIG_PPC32 y choice 'Processor Type' \ "6xx/7xx/74xx/8260 CONFIG_6xx \ - 4xx CONFIG_4xx \ + 40x CONFIG_40x \ POWER3 CONFIG_POWER3 \ 8xx CONFIG_8xx \ iSeries CONFIG_PPC_ISERIES" 6xx +if [ "$CONFIG_40x" = "y" ]; then + define_bool CONFIG_4xx y +fi + if [ "$CONFIG_6xx" = "y" ]; then bool 'MPC8260 CPM Support' CONFIG_8260 fi @@ -52,17 +56,21 @@ Willow CONFIG_WILLOW" Willow fi -if [ "$CONFIG_4xx" = "y" ]; then +if [ "$CONFIG_40x" = "y" ]; then choice 'Machine Type' \ "Ash CONFIG_ASH \ Ceder CONFIG_CEDER \ CPCI405 CONFIG_CPCI405 \ - EP405 CONFIG_EP405 \ + EP405/EP405PC CONFIG_EP405 \ Oak CONFIG_OAK \ Redwood-4 CONFIG_REDWOOD_4 \ Redwood-5 CONFIG_REDWOOD_5 \ Tivo CONFIG_TIVO \ Walnut CONFIG_WALNUT" Walnut + + if [ "$CONFIG_EP405" = "y" ]; then + bool 'EP405PC Support' CONFIG_EP405PC + fi fi if [ "$CONFIG_8xx" = "y" ]; then @@ -182,7 +190,7 @@ bool 'Math emulation' CONFIG_MATH_EMULATION fi -if [ "$CONFIG_4xx" = "y" ]; then +if [ "$CONFIG_40x" = "y" ]; then # It's often necessary to know the specific 4xx processor type. # Fortunately, it is impled (so far) from the board type, so we # don't need to ask more redundant questions. @@ -238,11 +246,9 @@ bool 'Blue Logic DMA' CONFIG_405_DMA dep_bool 'Power Management support (experimental)' CONFIG_PM $CONFIG_EXPERIMENTAL - if [ "$CONFIG_4xx" = "y" ]; then - choice 'TTYS0 device and default console' \ + choice 'TTYS0 device and default console' \ "UART0 CONFIG_UART0_TTYS0 \ UART1 CONFIG_UART0_TTYS1" UART0 - fi define_bool CONFIG_IBM405_ERR51 y define_bool CONFIG_NOT_COHERENT_CACHE y @@ -282,7 +288,7 @@ if [ "$CONFIG_8xx" = "y" ]; then bool "Pinned Kernel TLBs (860 ONLY)" CONFIG_PIN_TLB fi - if [ "$CONFIG_4xx" = "y" ]; then + if [ "$CONFIG_40x" = "y" ]; then bool "Pinned Kernel TLBs" CONFIG_PIN_TLB fi if [ "$CONFIG_ALL_PPC" != "y" ]; then @@ -362,6 +368,7 @@ bool 'Support for Open Firmware device tree in /proc' CONFIG_PROC_DEVICETREE bool 'Support for RTAS (RunTime Abstraction Services) in /proc' CONFIG_PPC_RTAS bool 'Support for PReP Residual Data' CONFIG_PREP_RESIDUAL + dep_bool ' Support for reading of PReP Residual Data in /proc' CONFIG_PROC_PREPRESIDUAL $CONFIG_PREP_RESIDUAL fi bool 'Default bootloader kernel arguments' CONFIG_CMDLINE_BOOL @@ -564,15 +571,15 @@ source arch/ppc/8260_io/Config.in fi -if [ "$CONFIG_4xx" = "y"]; then +if [ "$CONFIG_40x" = "y" ]; then mainmenu_option next_comment - comment 'IBM 4xx options' + comment 'IBM 40x options' if [ "$CONFIG_STB03xxx" = "y" ]; then bool 'STB IR Keyboard' CONFIG_STB_KB bool 'SICC Serial port' CONFIG_SERIAL_SICC if [ "$CONFIG_SERIAL_SICC" = "y" -a "$CONFIG_UART0_TTYS1" = "y" ]; then - define_bool CONFIG_UART1_DFLT_CONSOLE y - define_bool CONFIG_SERIAL_SICC_CONSOLE y + define_bool CONFIG_UART1_DFLT_CONSOLE y + define_bool CONFIG_SERIAL_SICC_CONSOLE y fi fi endmenu @@ -611,8 +618,8 @@ fi if [ "$CONFIG_4xx" = "y" -o "$CONFIG_GT64260" = "y" \ -o "$CONFIG_LOPEC" = "y" -o "$CONFIG_MCPN765" = "y" \ - -o "$CONFIG_PRPMC800" = "y" -o "$CONFIG_SANDPOINT" = "y" \ - -o "$CONFIG_ZX4500" = "y" ]; then + -o "$CONFIG_PPLUS" = "y" -o "$CONFIG_PRPMC800" = "y" \ + -o "$CONFIG_SANDPOINT" = "y" -o "$CONFIG_ZX4500" = "y" ]; then bool 'Support for early boot texts over serial port' CONFIG_SERIAL_TEXT_DEBUG fi endmenu |