>From kufel!ankry Tue Apr 10 01:04:13 2001
Return-Path: <kufel!ankry>
Received: from kufel.UUCP (uucp@localhost)
by green.mif.pg.gda.pl (8.9.3/8.9.3) with UUCP id BAA01672
for green.mif.pg.gda.pl!ankry; Tue, 10 Apr 2001 01:04:13 +0200
Received: (from ankry@localhost)
by kufel.dom (8.9.3/8.9.3) id BAA03695
for [EMAIL PROTECTED]; Tue, 10 Apr 2001 01:04:06 +0200
From: Andrzej Krzysztofowicz <kufel!ankry>
Message-Id: <[EMAIL PROTECTED]>
Subject: Re: PROBLEM: make oldconfig can change Alpha system type on 2.2.19
To: kufel!green.mif.pg.gda.pl!ankry
Date: Tue, 10 Apr 2001 01:04:06 +0200 (CEST)
In-Reply-To: <[EMAIL PROTECTED]> from "Andrzej Krzysztofowicz"
at kwi 05, 2001 03:00:40
X-Mailer: ELM [version 2.5 PL0pre8]
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
"Brian Campbell wrote:"
> To: [EMAIL PROTECTED]
> From: Brian Campbell <[EMAIL PROTECTED]>
> [1.] One line summary of the problem:
> make oldconfig can change Alpha system type on 2.2.19
>
> [2.] Full description of the problem/report:
> With the system type set to `Cabriolet' (CONFIG_ALPHA_CABRIOLET)
> running make oldconfig causes it to change to `EB64+' (CONFIG_ALPHA_EB64P)
> without asking.
As I see the same problem appears also with the following Alpha architecture
settings:
Alpha-XL (-> Avanti)
AlphaBook1 (-> Noname)
As it is quite easy to avoid this mis-setting in Configure (make
config/oldconfig) by the following hack:
if [ "$CONFIG_ALPHA_CABRIOLET" = "y" ]; then
unset CONFIG_ALPHA_EB64P
fi
if [ "$CONFIG_ALPHA_XL" = "y" ]; then
unset CONFIG_ALPHA_AVANTI
fi
if [ "$CONFIG_ALPHA_BOOK1" = "y" ]; then
unset CONFIG_ALPHA_NONAME
fi
choice 'Alpha system type' ...
it can't help with xconfig. And (IMHO) it is just a hack, not a proper
solution.
The proper solution is probably to move three of the above "system type"
settings outside the main menu. Does anybody know differences between the
mentioned above three pairs of system types and how to do it?
Same problem appears in the 2.4 series.
Andrzej
--
=======================================================================
Andrzej M. Krzysztofowicz [EMAIL PROTECTED]
tel. (0-58) 347 14 61
Wydz.Fizyki Technicznej i Matematyki Stosowanej Politechniki Gdanskiej
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/