diff options
author | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-11 14:39:42 +1000 |
---|---|---|
committer | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-11 14:39:42 +1000 |
commit | 33d3919c3e7281ac2ea4b830984d77cf42649d0f (patch) | |
tree | cc7c69da4f6e85af57d7cda0586dde19dc43ea4e /config | |
parent | 2ace8ed697e17859376364d02b88b8539a2bf9af (diff) | |
download | crosstool-ng-33d3919c3e7281ac2ea4b830984d77cf42649d0f.tar.gz crosstool-ng-33d3919c3e7281ac2ea4b830984d77cf42649d0f.tar.bz2 crosstool-ng-33d3919c3e7281ac2ea4b830984d77cf42649d0f.zip |
binutils/elf2flt: Add CUSTOM version, CUSTOM_LOCATION config options, GetCustom
CUSTOM_LOCATION config options only presented in menuconfig if component
CUSTOM version selected.
Change elf2flt CT_ELF2FLT_VERSION from 'head' to 'cvs' if cvs selected in config
Also remove hardcoded 'cvs-' from elf2flt component name, used in CT_Extract,
CT_Patch and as the CT_SRC_DIR location for the configure stage.
Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com>
[yann.morin.1998@free.fr: fix indentation, don't patch custom dir location]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <288db3721a37844defa5.1349931196@localhost.localdomain>
PatchWork-Id: 190789
Diffstat (limited to 'config')
-rw-r--r-- | config/binutils/elf2flt.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/config/binutils/elf2flt.in b/config/binutils/elf2flt.in index fc178a0b..2f8a09fc 100644 --- a/config/binutils/elf2flt.in +++ b/config/binutils/elf2flt.in @@ -20,8 +20,26 @@ config ELF2FLT_CVS_SNAPSHOT bool prompt "CVS Snapshot" +config ELF2FLT_CUSTOM + bool + prompt "Custom elf2flt" + depends on EXPERIMENTAL + endchoice +if ELF2FLT_CUSTOM + +config ELF2FLT_CUSTOM_LOCATION + string + prompt "Full path to custom elf2flt source" + default "" + help + Enter the path to the directory (or tarball) of your source for elf2flt, + or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/elf2flt + +endif # ELF2FLT_CUSTOM +if ! ELF2FLT_CUSTOM + config ELF2FLT_CVS_SNAPSHOT_SPEC string depends on ELF2FLT_CVS_SNAPSHOT @@ -31,9 +49,12 @@ config ELF2FLT_CVS_SNAPSHOT_SPEC What you enter here will be passed verbatim to the cvs checkout command so be careful! +endif # ! ELF2FLT_CUSTOM + config ELF2FLT_VERSION string - default "head" if ELF2FLT_CVSHEAD + default "cvs" if ELF2FLT_CVSHEAD + default "custom" if ELF2FLT_CUSTOM # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW |