config/tools/sstrip.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 149 39d8baac9c69
child 913 194c03ec22c3
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@149
     1
# Configuration file for sstrip tool facility
yann@149
     2
yann@149
     3
menuconfig SSTRIP
yann@149
     4
    bool
yann@149
     5
    prompt "sstrip"
yann@149
     6
    default n
yann@149
     7
    help
yann@149
     8
      The sstrip utility, to maximise the striping of ELF binaries
yann@149
     9
      (executables and libraries).
yann@149
    10
yann@149
    11
if SSTRIP
yann@149
    12
yann@149
    13
choice
yann@149
    14
    bool
yann@149
    15
    prompt "Use sstrip from:"
yann@149
    16
yann@149
    17
config SSTRIP_ELFKICKERS
yann@149
    18
    bool
yann@149
    19
    prompt "ELFkickers"
yann@149
    20
    help
yann@875
    21
      The original, ageing version, of sstrip from ELFkickers.
yann@875
    22
      Fully functional, but not maintained anymore.
yann@149
    23
yann@149
    24
config SSTRIP_BUILDROOT
yann@149
    25
    bool
yann@149
    26
    prompt "buildroot"
yann@149
    27
    help
yann@875
    28
      Buildroot version, forked off the original from ELFkickers.  This one
yann@875
    29
      is somewhat maintained by the buildroot guys.   
yann@875
    30
      Supports big-endian systems.
yann@149
    31
yann@149
    32
endchoice
yann@149
    33
yann@149
    34
config SSTRIP_FROM
yann@149
    35
    string
yann@149
    36
    default "ELFkickers"    if SSTRIP_ELFKICKERS
yann@149
    37
    default "buildroot"     if SSTRIP_BUILDROOT
yann@149
    38
yann@149
    39
if SSTRIP_ELFKICKERS
yann@149
    40
yann@149
    41
config SSTRIP_ELFKICKERS_VERSION
yann@149
    42
    string
yann@149
    43
    default "2.0a"
yann@149
    44
yann@149
    45
endif
yann@149
    46
yann@149
    47
endif