config/arch/sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 14 21:30:27 2008 +0000 (2008-10-14)
changeset 935 e175e3538310
parent 898 fe3eda71a9d0
child 1269 17e37102a037
permissions -rw-r--r--
Introduce the notion of a 'sample comment'.

- presence of the sample's reported.by file is now mandatory.
- when saving a sample, reporter name & URL are queried, to avoid operator forget about creating the reported.by file.
- when saving a sample, one can store a few-liner comment.
- when recalling a sample, the reporter name, URL and comment (if present) are printed.
- update the powerpc-e500v2-linux-gnuspe sample to include Nate's comment (from his original mail).
- update all samples that were missing the reported.by file.

/trunk/scripts/saveSample.sh | 46 35 11 0 ++++++++++++++++++------
/trunk/scripts/showSamples.sh | 12 6 6 0 +++---
/trunk/samples/powerpc-e500v2-linux-gnuspe/reported.by | 15 15 0 0 ++++++++
/trunk/samples/samples.mk | 22 17 5 0 +++++++++--
4 files changed, 73 insertions(+), 22 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