]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/strip
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / strip
index b22cfb9a357fc8885397a63d0e6c7e39ad64c845..8fc7218e19fdfffdcb7326afc55d358c2b0bc11b 100644 (file)
--- a/lfs/strip
+++ b/lfs/strip
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2017  IPFire Team  <info@ipfire.org>                     #
+# 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        #
@@ -29,16 +29,6 @@ VER = ipfire
 THISAPP    = strip
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
-ifeq "$(TOOLCHAIN)" "1"
-       SHELL = /bin/bash
-       STRIP = /usr/bin/strip
-       ROOT = $(TOOLS_DIR)
-else
-       SHELL = $(TOOLS_DIR)/bin/bash
-       STRIP = $(TOOLS_DIR)/bin/strip
-       ROOT = /
-endif
-
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -49,16 +39,36 @@ 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.
-       STRIP=$(STRIP) $(SHELL) $(DIR_SRC)/src/stripper $(ROOT) \
-               --exclude=/usr/src --exclude=$(TOOLS_DIR) \
-               --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/bin/cargo \
+               --exclude=/usr/bin/rustdoc \
+               --exclude=/usr/bin/rustc \
+               --exclude=/usr/libexec/rust-analyzer-proc-macro-srv \
+               --exclude=/usr/libexec/cargo-credential-1password \
+               --exclude=/usr/src \
+               --exclude=/var/tmp
+endif