config/binutils/elf2flt.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Nov 11 21:43:54 2012 +0100 (2012-11-11)
branch1.17
changeset 3108 f36a98f63749
parent 2469 3b08a7927e55
child 3122 23fbfabd8a0f
permissions -rw-r--r--
1.17: create maintenance branch, update version to 1.17.0

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_CVS_SNAPSHOT
    20     bool
    21     prompt "CVS Snapshot"
    22 
    23 config ELF2FLT_CUSTOM
    24     bool
    25     prompt "Custom elf2flt"
    26     depends on EXPERIMENTAL
    27 
    28 endchoice
    29 
    30 if ELF2FLT_CUSTOM
    31 
    32 config ELF2FLT_CUSTOM_LOCATION
    33     string
    34     prompt "Full path to custom elf2flt source"
    35     default ""
    36     help
    37       Enter the path to the directory (or tarball) of your source for elf2flt,
    38       or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/elf2flt
    39 
    40 endif # ELF2FLT_CUSTOM
    41 if ! ELF2FLT_CUSTOM
    42 
    43 config ELF2FLT_CVS_SNAPSHOT_SPEC
    44     string
    45     depends on ELF2FLT_CVS_SNAPSHOT
    46     default ""
    47     prompt "CVS refspec for elf2flt"
    48     help
    49        What you enter here will be passed verbatim to the cvs checkout command
    50        so be careful!
    51 
    52 endif # ! ELF2FLT_CUSTOM
    53 
    54 config ELF2FLT_VERSION
    55     string
    56     default "cvs" if ELF2FLT_CVSHEAD
    57     default "custom" if ELF2FLT_CUSTOM
    58 # Don't remove next line
    59 # CT_INSERT_VERSION_STRING_BELOW
    60 
    61 config ELF2FLT_EXTRA_CONFIG_ARRAY
    62     string
    63     prompt "elf2flt extra config"
    64     default ""
    65     help
    66       Extra flags passed onto ./configure when configuring
    67       
    68       You can enter multiple arguments here, and arguments can contain spaces
    69       if they are properly quoted (or escaped, but prefer quotes). Eg.:
    70           --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
    71 
    72 endif