arch/sh/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Sep 29 20:51:16 2008 +0000 (2008-09-29)
changeset 891 4d770d1f65a0
parent 630 2789bdd1a950
permissions -rw-r--r--
Rework the way EXPERIMENTAL architecture are marked as such, the same way kernels are handeld.
Fix marking EXPERIMENTAL kernel when using --prefix.

/trunk/kconfig/kconfig.mk | 44 22 22 0 ++++++++++++++++++++++----------------------
/trunk/arch/ia64/config.in | 1 1 0 0 +
/trunk/arch/sh/config.in | 1 1 0 0 +
3 files changed, 24 insertions(+), 22 deletions(-)
     1 # Super-H specific configuration file
     2 # EXPERIMENTAL
     3 
     4 config ARCH_sh
     5     select ARCH_SUPPORTS_BOTH_ENDIAN
     6     select ARCH_DEFAULT_LE
     7     help
     8       The Super-H architecture, as defined by:
     9         http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
    10 
    11 choice
    12     bool
    13     prompt "Variant"
    14 
    15 config ARCH_SH_SH3
    16     bool
    17     prompt "sh3"
    18 
    19 config ARCH_SH_SH4
    20     bool
    21     prompt "sh4"
    22 
    23 config ARCH_SH_SH4A
    24     bool
    25     prompt "sh4a"
    26 
    27 endchoice
    28 
    29 config ARCH_SH_VARIANT
    30     string
    31     default "sh3"   if ARCH_SH_SH3
    32     default "sh4"   if ARCH_SH_SH4
    33     default "sh4a"  if ARCH_SH_SH4A