arch/sh/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 01 18:10:40 2008 +0000 (2008-10-01)
changeset 894 c444ce4b51b9
parent 630 2789bdd1a950
permissions -rw-r--r--
Save the toolchain configuration to its own file, as an auto-extracting shell script:
- get rid of the 'extractconfig' action, it was cumbersome to use, and badly documented,
- introduce a skeleton for the config script,
- update auto-completion,
- document the config script.

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