]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/strip
Tor: Bump package version
[ipfire-2.x.git] / lfs / strip
index 237f4d2b3b5a243a007c89b886f6d3a01326a038..404db07273c1be118df95b5b3e39d96ab93be1cf 100644 (file)
--- a/lfs/strip
+++ b/lfs/strip
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -39,16 +39,31 @@ check :
 
 download :
 
-md5 :
+b2 :
 
 ###############################################################################
 # Installation Details
 ###############################################################################
 
 $(TARGET) :
+ifeq "$(TOOLCHAIN)" "1"
+       # Strip everything in the toolchain
+       $(DIR_SRC)/src/stripper $(TOOLS_DIR) \
+               --strip="$(TOOLS_DIR)/$(CROSSTARGET)/bin/strip" \
+               --ignore-errors \
+               --exclude=$(TOOLS_DIR)/$(CROSSTARGET)
+else
        # Don't strip VDR binaries, because they use a weird plugin system
        # which does not work when unneeded symbols get stripped from
        # /usr/sbin/vdr.
-       $(DIR_SRC)/src/stripper $(ROOT) \
-               --exclude=/usr/src --exclude=/tools \
-               --exclude=/usr/sbin/vdr --exclude=/usr/lib/vdr
+       $(DIR_SRC)/src/stripper / \
+               --exclude=$(TOOLS_DIR) \
+               --exclude=$(QEMU_TARGET_HELPER) \
+               --exclude=/lib/firmware/qcom/sc8280xp/LENOVO/21BX \
+               --exclude=/tmp \
+               --exclude=/usr/lib/go \
+               --exclude=/usr/lib/vdr \
+               --exclude=/usr/sbin/vdr \
+               --exclude=/usr/src \
+               --exclude=/var/tmp
+endif