Re: 2.4.21 - minor config glitch

Alan Brady (Alan.C.Brady@exeter.ac.uk)
11 Jul 2003 15:28:16 +0100


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>

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/