2009-05-13 20:55:15 +00:00
|
|
|
# elf2flt options
|
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
if ARCH_BINFMT_FLAT
|
|
|
|
|
2017-02-04 01:49:45 +00:00
|
|
|
config ELF2FLT_REQUIRES_ZLIB
|
|
|
|
def_bool y
|
|
|
|
select ZLIB
|
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
comment "elf2flt"
|
2009-05-13 20:55:15 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "elf2flt version"
|
|
|
|
|
2014-05-11 13:43:28 +00:00
|
|
|
config ELF2FLT_GIT
|
2009-05-13 20:55:15 +00:00
|
|
|
bool
|
2014-05-11 13:43:28 +00:00
|
|
|
prompt "git"
|
2017-01-24 02:25:15 +00:00
|
|
|
depends on CONFIGURE_has_git
|
2009-05-13 20:55:15 +00:00
|
|
|
help
|
|
|
|
Grab the latest version of elf2flt from the CVS repository
|
|
|
|
|
2012-10-11 04:39:42 +00:00
|
|
|
config ELF2FLT_CUSTOM
|
|
|
|
bool
|
|
|
|
prompt "Custom elf2flt"
|
2017-01-24 02:25:15 +00:00
|
|
|
depends on EXPERIMENTAL || !CONFIGURE_has_git
|
2015-11-26 13:07:37 +00:00
|
|
|
help
|
|
|
|
The choosen elf2flt version shall be not downloaded. Instead use
|
|
|
|
a custom location to get the source.
|
2012-10-11 04:39:42 +00:00
|
|
|
|
2009-05-13 20:55:15 +00:00
|
|
|
endchoice
|
|
|
|
|
2014-05-11 13:43:28 +00:00
|
|
|
if ELF2FLT_GIT
|
|
|
|
|
|
|
|
config ELF2FLT_GIT_CSET
|
|
|
|
string
|
|
|
|
prompt "git cset"
|
2017-02-06 20:09:54 +00:00
|
|
|
default "4820f0dbb77cd6564d5fa0817218fe2a1fb99f32"
|
2014-05-11 13:43:28 +00:00
|
|
|
help
|
|
|
|
Enter the git changeset to use.
|
|
|
|
|
|
|
|
The default currently points to the HEAD of the git tree.
|
|
|
|
|
|
|
|
endif # ELF2FLT_GIT
|
|
|
|
|
|
|
|
config ELF2FLT_VERSION
|
2015-11-26 13:07:37 +00:00
|
|
|
string
|
|
|
|
default ELF2FLT_GIT_CSET if ELF2FLT_GIT
|
|
|
|
default ELF2FLT_CUSTOM_VERSION if ELF2FLT_CUSTOM
|
|
|
|
|
|
|
|
if ELF2FLT_CUSTOM
|
2014-05-11 13:43:28 +00:00
|
|
|
|
2012-10-11 04:39:42 +00:00
|
|
|
config ELF2FLT_CUSTOM_LOCATION
|
|
|
|
string
|
|
|
|
prompt "Full path to custom elf2flt source"
|
|
|
|
help
|
2015-11-26 13:07:37 +00:00
|
|
|
Enter the path to the directory or tarball of your source for elf2flt.
|
|
|
|
|
|
|
|
If the path is a tarball, it should extract to: <name>-<version>/
|
|
|
|
where the name is this component, elf2flt, and the version is set
|
|
|
|
below in the custom version string.
|
|
|
|
|
|
|
|
config ELF2FLT_CUSTOM_VERSION
|
|
|
|
string
|
|
|
|
prompt "elf2flt custom version number"
|
|
|
|
help
|
|
|
|
Enter the version number for your custom elf2flt.
|
2012-10-11 04:39:42 +00:00
|
|
|
|
|
|
|
endif # ELF2FLT_CUSTOM
|
|
|
|
|
2011-05-18 21:00:46 +00:00
|
|
|
config ELF2FLT_EXTRA_CONFIG_ARRAY
|
2009-05-13 20:55:15 +00:00
|
|
|
string
|
|
|
|
prompt "elf2flt extra config"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Extra flags passed onto ./configure when configuring
|
2011-05-18 21:42:57 +00:00
|
|
|
|
|
|
|
You can enter multiple arguments here, and arguments can contain spaces
|
|
|
|
if they are properly quoted (or escaped, but prefer quotes). Eg.:
|
|
|
|
--with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
|
2009-05-13 20:55:15 +00:00
|
|
|
|
2015-11-26 13:07:37 +00:00
|
|
|
endif # ARCH_BINFMT_FLAT
|