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