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@149: Use the original, ageing version of sstrip from ELFkickers. yann@149: It seems to be fully functional, but not maintained. yann@149: yann@149: config SSTRIP_BUILDROOT yann@149: bool yann@149: prompt "buildroot" yann@149: help yann@149: Use the version from buildroot. It comes from the original yann@149: ELFkickers, but is somewhat maintained by the buildroot guys. 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