We will remove BR2_DEPRECATED, so remove this deprecated package.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
###############################################################################
comment "Legacy options removed in 2016.11"
+config BR2_PACKAGE_SSTRIP
+ bool "sstrip removed"
+ select BR2_LEGACY
+ help
+ sstrip is unmaintained and potentially harmful. It doesn't
+ save so much compared to normal binutils strip, and there is
+ a big risk of binaries that don't work. Use normal strip
+ instead.
+
config BR2_KERNEL_HEADERS_4_3
bool "kernel headers version 4.3.x are no longer supported"
select BR2_KERNEL_HEADERS_4_1
source "package/patch/Config.in"
source "package/pkgconf/Config.in"
source "package/sed/Config.in"
- source "package/sstrip/Config.in"
source "package/subversion/Config.in"
source "package/tree/Config.in"
source "package/yasm/Config.in"
+++ /dev/null
-config BR2_PACKAGE_SSTRIP
- bool "sstrip"
- depends on BR2_DEPRECATED_SINCE_2016_08
- help
- Small utility that removes a few bytes from an executable that
- strip leaves behind.
-
- http://www.muppetlabs.com/~breadbox/software/elfkickers.html
+++ /dev/null
-################################################################################
-#
-# sstrip
-#
-################################################################################
-
-SSTRIP_SITE = svn://svn.openwrt.org/openwrt/trunk/tools/sstrip
-SSTRIP_VERSION = 20154
-
-define SSTRIP_BUILD_CMDS
- cd $(@D) ; \
- $(TARGET_CC) $(TARGET_CFLAGS) -include endian.h -include byteswap.h \
- -o sstrip src/sstrip.c
-endef
-
-define SSTRIP_INSTALL_TARGET_CMDS
- $(INSTALL) -D $(@D)/sstrip $(TARGET_DIR)/usr/bin/sstrip
-endef
-
-$(eval $(generic-package))