Re: The end of embedded Linux?

Adrian Bunk (bunk@fs.tum.de)
Wed, 9 Oct 2002 13:38:45 +0200 (CEST)


On Tue, 8 Oct 2002, Rob Landley wrote:

>...
> Go into make menuconfig in 2.4.19. Switch off "scsi support". Back to the
> main menu, try to descend into "fusion mpt device support". The menu still
> shows up (at the top level, I might add), but you can't go into it.
>
> That's been broken for over a year now. It's in the top level of menuconfig.
> I first reported it back around 2.4.6 or so. It just doesn't get in
> anybody's way, and that area of code is a mess, and not fixing it isn't
> embarassing anybody specific.
>...

I assume the patch below fixes this for i386 (similar patches are needed
for at most four other architectures)?

> Rob

cu
Adrian

--- l/arch/i386/config.in.old 2002-10-09 13:28:59.000000000 +0200
+++ l/arch/i386/config.in 2002-10-09 13:31:44.000000000 +0200
@@ -357,7 +357,11 @@
fi
endmenu

-source drivers/message/fusion/Config.in
+if [ "$CONFIG_SCSI" != "n" ]; then
+ if [ "$CONFIG_BLK_DEV_SD" != "n" ]; then
+ source drivers/message/fusion/Config.in
+ fi
+fi

source drivers/ieee1394/Config.in

-
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/