config/debug/strace.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 850 ef8549b58b6f
child 951 fc4f1b630dd2
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@239
     1
# strace
yann@239
     2
yann@916
     3
config DEBUG_strace
yann@239
     4
yann@239
     5
choice
yann@239
     6
    bool
yann@239
     7
    prompt "strace version"
yann@239
     8
yann@239
     9
config STRACE_V_4_5
yann@239
    10
    bool
yann@330
    11
    prompt "4.5 (OBSOLETE)"
yann@239
    12
    depends on OBSOLETE
yann@239
    13
yann@239
    14
config STRACE_V_4_5_14
yann@239
    15
    bool
yann@330
    16
    prompt "4.5.14 (OBSOLETE)"
yann@239
    17
    depends on OBSOLETE
yann@239
    18
yann@239
    19
config STRACE_V_4_5_15
yann@239
    20
    bool
yann@239
    21
    prompt "4.5.15"
yann@239
    22
yann@428
    23
config STRACE_V_4_5_16
yann@428
    24
    bool
yann@428
    25
    prompt "4.5.16"
yann@428
    26
yann@239
    27
# CT_INSERT_VERSION_ABOVE
yann@239
    28
# Don't remove above line!
yann@239
    29
endchoice
yann@239
    30
yann@239
    31
config STRACE_VERSION
yann@239
    32
    string
yann@239
    33
    default "4.5" if STRACE_V_4_5
yann@239
    34
    default "4.5.14" if STRACE_V_4_5_14
yann@239
    35
    default "4.5.15" if STRACE_V_4_5_15
yann@428
    36
    default "4.5.16" if STRACE_V_4_5_16
yann@239
    37
# CT_INSERT_VERSION_STRING_ABOVE
yann@239
    38
# # Don't remove above line!