From a9fd8519c2452cc77dc00513aaddf54b47eaee33 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 14 Apr 2020 15:01:00 +0000 Subject: [PATCH] toolchain: Do not attempt to strip anything in /dev, /proc, /sys and /tmp Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- lfs/strip | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lfs/strip b/lfs/strip index 63e90fed25..48e698a7cf 100644 --- a/lfs/strip +++ b/lfs/strip @@ -59,7 +59,15 @@ $(TARGET) : # 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 \ + STRIP=$(STRIP) $(SHELL) $(DIR_SRC)/src/stripper \ + $(ROOT) \ + --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 -- 2.39.5