summaryrefslogtreecommitdiff
path: root/config/tools
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-06-01 17:00:43 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-06-01 17:00:43 (GMT)
commitd472c9b9514663f0bea963ca137b4230f990afb3 (patch)
treef18b3bb20c8da952ac445960f5e802ce57928131 /config/tools
parent51554bf237037946b12f7aea97708f1a64c091a6 (diff)
Add the first tool facility: sstrip.
Diffstat (limited to 'config/tools')
-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