arch/sh/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 27 13:58:53 2008 +0000 (2008-06-27)
changeset 628 87802cb25a0f
parent 413 35952da8c80b
child 630 2789bdd1a950
permissions -rw-r--r--
Autogenerate the architecture selection choice menu.
Update architectures definition files accordingly.
Update documentation accordingly.
Use makefile syntax when listing arch/, tools/ and debug/ config files.

/trunk/kconfig/kconfig.mk | 32 29 3 0 +++++++++++++++--
/trunk/docs/overview.txt | 75 67 8 0 +++++++++++++++++++++++++++++++++++----
/trunk/config/target.in | 94 16 78 0 ++++++++-----------------------------------------
/trunk/arch/arm/config.in | 6 5 1 0 +++
/trunk/arch/powerpc/config.in | 2 2 0 0 +
/trunk/arch/ia64/config.in | 4 4 0 0 ++
/trunk/arch/alpha/config.in | 2 1 1 0
/trunk/arch/x86/config.in | 3 3 0 0 ++
/trunk/arch/mips/config.in | 5 5 0 0 +++
/trunk/arch/sh/config.in | 4 3 1 0 ++
/trunk/arch/x86_64/config.in | 3 3 0 0 ++
11 files changed, 138 insertions(+), 92 deletions(-)
     1 # Super-H specific configuration file
     2 
     3 config ARCH_sh
     4     select ARCH_SUPPORTS_BOTH_ENDIAN
     5     select ARCH_DEFAULT_LE
     6 
     7 choice
     8     bool
     9     prompt "Variant"
    10 
    11 config ARCH_SH_SH3
    12     bool
    13     prompt "sh3"
    14 
    15 config ARCH_SH_SH4
    16     bool
    17     prompt "sh4"
    18 
    19 config ARCH_SH_SH4A
    20     bool
    21     prompt "sh4a"
    22 
    23 endchoice
    24 
    25 config ARCH_SH_VARIANT
    26     string
    27     default "sh3"   if ARCH_SH_SH3
    28     default "sh4"   if ARCH_SH_SH4
    29     default "sh4a"  if ARCH_SH_SH4A