Yann E. MORIN" 1bb649e776 'sstrip' makes no sense on bare-metal, mark it so.
/trunk/config/tools/sstrip.in |    1     1     0     0 +
 1 file changed, 1 insertion(+)
2008-10-09 19:13:37 +00:00

49 lines
959 B
Plaintext

# Configuration file for sstrip tool facility
menuconfig SSTRIP
bool
prompt "sstrip"
depends on ! BARE_METAL
default n
help
The sstrip utility, to maximise the striping of ELF binaries
(executables and libraries).
if SSTRIP
choice
bool
prompt "Use sstrip from:"
config SSTRIP_ELFKICKERS
bool
prompt "ELFkickers"
help
The original, ageing version, of sstrip from ELFkickers.
Fully functional, but not maintained anymore.
config SSTRIP_BUILDROOT
bool
prompt "buildroot"
help
Buildroot version, forked off the original from ELFkickers. This one
is somewhat maintained by the buildroot guys.
Supports big-endian systems.
endchoice
config SSTRIP_FROM
string
default "ELFkickers" if SSTRIP_ELFKICKERS
default "buildroot" if SSTRIP_BUILDROOT
if SSTRIP_ELFKICKERS
config SSTRIP_ELFKICKERS_VERSION
string
default "2.0a"
endif
endif