config/arch/sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 23 13:45:48 2008 +0000 (2008-10-23)
changeset 965 45ddf096def1
parent 898 fe3eda71a9d0
child 1269 17e37102a037
permissions -rw-r--r--
Push the calculation of the tuple's kernel part down to kernel's build scripts:
- update the kernel script's API with the function CT_DiKernelTupleValues
- update doc accordingly (also with the architecture change, missing in the previous commit)
- small clean-up in the main script, remove useless test

/trunk/scripts/build/kernel/bare-metal.sh | 5 5 0 0 +++++
/trunk/scripts/build/kernel/linux.sh | 5 5 0 0 +++++
/trunk/scripts/crosstool.sh | 31 13 18 0 +++++++++++++------------------
/trunk/scripts/functions | 15 8 7 0 ++++++++-------
/trunk/docs/overview.txt | 13 9 4 0 +++++++++----
5 files changed, 40 insertions(+), 29 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