summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/tools/sstrip.in46
1 files changed, 46 insertions, 0 deletions
diff --git a/config/tools/sstrip.in b/config/tools/sstrip.in
new file mode 100644
index 0000000..ed5a584
--- /dev/null
+++ b/config/tools/sstrip.in
@@ -0,0 +1,46 @@
+# Configuration file for sstrip tool facility
+
+menuconfig SSTRIP
+ bool
+ prompt "sstrip"
+ 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
+ Use the original, ageing version of sstrip from ELFkickers.
+ It seems to be fully functional, but not maintained.
+
+config SSTRIP_BUILDROOT
+ bool
+ prompt "buildroot"
+ help
+ Use the version from buildroot. It comes from the original
+ ELFkickers, but is somewhat maintained by the buildroot guys.
+
+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