diff options
| author | Arnout Vandecappelle <arnout@mind.be> | 2016-10-15 16:51:02 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2016-10-15 23:14:45 +0200 |
| commit | 290166f25bfa347c80deb77ab2175a65cff5733b (patch) | |
| tree | 3efe220da73e8c5d121f732e7ca87c49fd6a70c3 | |
| parent | 133466f5f23a6550fd136170d841c58c6581a63c (diff) | |
| download | buildroot-290166f25bfa347c80deb77ab2175a65cff5733b.tar.gz buildroot-290166f25bfa347c80deb77ab2175a65cff5733b.zip | |
sstrip: remove deprecated package
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>
| -rw-r--r-- | Config.in.legacy | 9 | ||||
| -rw-r--r-- | package/Config.in | 1 | ||||
| -rw-r--r-- | package/sstrip/Config.in | 8 | ||||
| -rw-r--r-- | package/sstrip/sstrip.mk | 20 |
4 files changed, 9 insertions, 29 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 76365e6f72..1fcedfe91f 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -145,6 +145,15 @@ endif ############################################################################### 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 diff --git a/package/Config.in b/package/Config.in index 0257685ccb..47c08015bc 100644 --- a/package/Config.in +++ b/package/Config.in @@ -143,7 +143,6 @@ menu "Development tools" 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" diff --git a/package/sstrip/Config.in b/package/sstrip/Config.in deleted file mode 100644 index c458f8eab1..0000000000 --- a/package/sstrip/Config.in +++ /dev/null @@ -1,8 +0,0 @@ -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 diff --git a/package/sstrip/sstrip.mk b/package/sstrip/sstrip.mk deleted file mode 100644 index 685ea09fbd..0000000000 --- a/package/sstrip/sstrip.mk +++ /dev/null @@ -1,20 +0,0 @@ -################################################################################ -# -# 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)) |

