49 lines
959 B
Plaintext
Raw Normal View History

2007-06-01 17:00:43 +00:00
# Configuration file for sstrip tool facility
menuconfig SSTRIP
bool
prompt "sstrip"
depends on ! BARE_METAL
2007-06-01 17:00:43 +00:00
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.
2007-06-01 17:00:43 +00:00
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.
2007-06-01 17:00:43 +00:00
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