All of lore.kernel.org
 help / color / mirror / Atom feed
* 2.4.21 - minor config glitch
@ 2003-07-11 11:47 Alan Brady
  2003-07-11 13:57 ` Tomas Szepe
  0 siblings, 1 reply; 3+ messages in thread
From: Alan Brady @ 2003-07-11 11:47 UTC (permalink / raw)
  To: linux-kernel

Not a bug, but some apps choke when trying to parse the missing
condition. 


/usr/src/linux-2.4.21//drivers/char/Config.in, line 161:

	if [ "$CONFIG_PPC64" ] ; then 
                   ^^^

I presume this should get set as
 
	if [ "$CONFIG_PPC64" = "y" ] ; then

Alan

-- 
Alan Brady <Alan.C.Brady@ex.ac.uk>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.4.21 - minor config glitch
  2003-07-11 11:47 2.4.21 - minor config glitch Alan Brady
@ 2003-07-11 13:57 ` Tomas Szepe
  2003-07-11 14:28   ` Alan Brady
  0 siblings, 1 reply; 3+ messages in thread
From: Tomas Szepe @ 2003-07-11 13:57 UTC (permalink / raw)
  To: Alan Brady; +Cc: linux-kernel

> [Alan.C.Brady@exeter.ac.uk]
> 
> Not a bug, but some apps choke when trying to parse the missing
> condition. 
> 
> /usr/src/linux-2.4.21//drivers/char/Config.in, line 161:
> 
> 	if [ "$CONFIG_PPC64" ] ; then 
>                    ^^^
> 
> I presume this should get set as
>  
> 	if [ "$CONFIG_PPC64" = "y" ] ; then

Would you post a -p1 patch, please?
Don't forget to CC the PPC64 maintainer(s).

-- 
Tomas Szepe <szepe@pinerecords.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.4.21 - minor config glitch
  2003-07-11 13:57 ` Tomas Szepe
@ 2003-07-11 14:28   ` Alan Brady
  0 siblings, 0 replies; 3+ messages in thread
From: Alan Brady @ 2003-07-11 14:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: engebret

On Fri, 2003-07-11 at 14:57, Tomas Szepe wrote:
> > [Alan.C.Brady@exeter.ac.uk]
> > 
> > Not a bug, but some apps choke when trying to parse the missing
> > condition. 
> > 
> > /usr/src/linux-2.4.21//drivers/char/Config.in, line 161:
> > 
> > 	if [ "$CONFIG_PPC64" ] ; then 
> >                    ^^^
> > 
> > I presume this should get set as
> >  
> > 	if [ "$CONFIG_PPC64" = "y" ] ; then
> 
> Would you post a -p1 patch, please?
> Don't forget to CC the PPC64 maintainer(s).

PATCH FOLLOWS

--- linux-2.4.21/drivers/char/Config.old        Fri Jun 13 15:51:32 2003
+++ linux-2.4.21/drivers/char/Config.in Fri Jul 11 15:12:21 2003
@@ -158,7 +158,7 @@
    dep_tristate 'Texas Instruments parallel link cable support'
CONFIG_TIPAR $CONFIG_PARPORT
 fi

-if [ "$CONFIG_PPC64" ] ; then
+if [ "$CONFIG_PPC64" = "y" ] ; then
    bool 'pSeries Hypervisor Virtual Console support' CONFIG_HVC_CONSOLE
 fi




-- 
Alan Brady <Alan.C.Brady@ex.ac.uk>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-07-11 14:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-11 11:47 2.4.21 - minor config glitch Alan Brady
2003-07-11 13:57 ` Tomas Szepe
2003-07-11 14:28   ` Alan Brady

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.