Re: PROBLEM: make oldconfig can change Alpha system type on 2.2.19

From: Andrzej Krzysztofowicz (kufel!ankry)
Date: Mon Apr 09 2001 - 18:04:06 EST


"Brian Campbell wrote:"
> To: linux-kernel@vger.kernel.org
> From: Brian Campbell <bacam@tardis.ed.ac.uk>

> [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               ankry@mif.pg.gda.pl
  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 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/



This archive was generated by hypermail 2b29 : Sun Apr 15 2001 - 21:00:12 EST