config/binutils/elf2flt.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Mon Nov 19 23:24:49 2012 +0100 (2012-11-19)
changeset 3122 23fbfabd8a0f
parent 3090 a221c86d9b33
permissions -rw-r--r--
binutils/elf2flt: remove use of CVS snapshots

The CVS snapshot options are never used, so get rid of them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # elf2flt options
     2 
     3 if ARCH_BINFMT_FLAT
     4 
     5 comment "elf2flt"
     6 
     7 choice
     8     bool
     9     prompt "elf2flt version"
    10 # Don't remove next line
    11 # CT_INSERT_VERSION_BELOW
    12 
    13 config ELF2FLT_CVSHEAD
    14     bool
    15     prompt "CVS Head"
    16     help
    17       Grab the latest version of elf2flt from the CVS repository
    18 
    19 config ELF2FLT_CUSTOM
    20     bool
    21     prompt "Custom elf2flt"
    22     depends on EXPERIMENTAL
    23 
    24 endchoice
    25 
    26 if ELF2FLT_CUSTOM
    27 
    28 config ELF2FLT_CUSTOM_LOCATION
    29     string
    30     prompt "Full path to custom elf2flt source"
    31     default ""
    32     help
    33       Enter the path to the directory (or tarball) of your source for elf2flt,
    34       or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/elf2flt
    35 
    36 endif # ELF2FLT_CUSTOM
    37 
    38 config ELF2FLT_VERSION
    39     string
    40     default "cvs" if ELF2FLT_CVSHEAD
    41     default "custom" if ELF2FLT_CUSTOM
    42 # Don't remove next line
    43 # CT_INSERT_VERSION_STRING_BELOW
    44 
    45 config ELF2FLT_EXTRA_CONFIG_ARRAY
    46     string
    47     prompt "elf2flt extra config"
    48     default ""
    49     help
    50       Extra flags passed onto ./configure when configuring
    51       
    52       You can enter multiple arguments here, and arguments can contain spaces
    53       if they are properly quoted (or escaped, but prefer quotes). Eg.:
    54           --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
    55 
    56 endif