config/binutils/binutils.in.2
changeset 3123 6a5946fbc728
parent 3122 23fbfabd8a0f
child 3315 464128a8fc3f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/binutils/binutils.in.2	Mon Nov 19 11:21:31 2012 +0100
     1.3 @@ -0,0 +1,56 @@
     1.4 +# elf2flt options
     1.5 +
     1.6 +if ARCH_BINFMT_FLAT
     1.7 +
     1.8 +comment "elf2flt"
     1.9 +
    1.10 +choice
    1.11 +    bool
    1.12 +    prompt "elf2flt version"
    1.13 +# Don't remove next line
    1.14 +# CT_INSERT_VERSION_BELOW
    1.15 +
    1.16 +config ELF2FLT_CVSHEAD
    1.17 +    bool
    1.18 +    prompt "CVS Head"
    1.19 +    help
    1.20 +      Grab the latest version of elf2flt from the CVS repository
    1.21 +
    1.22 +config ELF2FLT_CUSTOM
    1.23 +    bool
    1.24 +    prompt "Custom elf2flt"
    1.25 +    depends on EXPERIMENTAL
    1.26 +
    1.27 +endchoice
    1.28 +
    1.29 +if ELF2FLT_CUSTOM
    1.30 +
    1.31 +config ELF2FLT_CUSTOM_LOCATION
    1.32 +    string
    1.33 +    prompt "Full path to custom elf2flt source"
    1.34 +    default ""
    1.35 +    help
    1.36 +      Enter the path to the directory (or tarball) of your source for elf2flt,
    1.37 +      or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/elf2flt
    1.38 +
    1.39 +endif # ELF2FLT_CUSTOM
    1.40 +
    1.41 +config ELF2FLT_VERSION
    1.42 +    string
    1.43 +    default "cvs" if ELF2FLT_CVSHEAD
    1.44 +    default "custom" if ELF2FLT_CUSTOM
    1.45 +# Don't remove next line
    1.46 +# CT_INSERT_VERSION_STRING_BELOW
    1.47 +
    1.48 +config ELF2FLT_EXTRA_CONFIG_ARRAY
    1.49 +    string
    1.50 +    prompt "elf2flt extra config"
    1.51 +    default ""
    1.52 +    help
    1.53 +      Extra flags passed onto ./configure when configuring
    1.54 +      
    1.55 +      You can enter multiple arguments here, and arguments can contain spaces
    1.56 +      if they are properly quoted (or escaped, but prefer quotes). Eg.:
    1.57 +          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
    1.58 +
    1.59 +endif