mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 19:23:24 +02:00
make.sh: Refactor stripper
This should *actually* exclude everything we want to exclude and *actually* strip everything to the maximum. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Peter Müller
parent
f35f213850
commit
19054331c5
21
lfs/strip
21
lfs/strip
@@ -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
|
||||
###############################################################################
|
||||
@@ -56,18 +46,19 @@ md5 :
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) :
|
||||
ifeq "$(TOOLCHAIN)" "1"
|
||||
# Strip everything in the toolchain
|
||||
$(DIR_SRC)/src/stripper $(TOOLS_DIR)
|
||||
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) \
|
||||
$(DIR_SRC)/src/stripper / \
|
||||
--exclude=$(TOOLS_DIR) \
|
||||
--exclude=/dev \
|
||||
--exclude=/proc \
|
||||
--exclude=/sys \
|
||||
--exclude=/tmp \
|
||||
--exclude=/usr/src \
|
||||
--exclude=/usr/lib/vdr \
|
||||
--exclude=/usr/sbin/vdr \
|
||||
--exclude=/var/tmp \
|
||||
--exclude=/usr/lib/go
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user