From bc38ca3b00c284ea7ccea8d55d8524f27a768e2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20M=C3=BCller?= Date: Sat, 17 Sep 2022 09:15:57 +0000 Subject: [PATCH] strip: Exclude /lib/firmware/qcom/sc8280xp/LENOVO/21BX for stage 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit For some reason, stripper crashes processing this directory: strip: error: the input file '/lib/firmware/qcom/sc8280xp/LENOVO/21BX/qccdsp8280.mbn' has no sections Signed-off-by: Peter Müller --- lfs/strip | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lfs/strip b/lfs/strip index c369ac3f18..404db07273 100644 --- a/lfs/strip +++ b/lfs/strip @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2022 IPFire Team # # # # 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 # @@ -59,10 +59,11 @@ else $(DIR_SRC)/src/stripper / \ --exclude=$(TOOLS_DIR) \ --exclude=$(QEMU_TARGET_HELPER) \ + --exclude=/lib/firmware/qcom/sc8280xp/LENOVO/21BX \ --exclude=/tmp \ - --exclude=/usr/src \ + --exclude=/usr/lib/go \ --exclude=/usr/lib/vdr \ --exclude=/usr/sbin/vdr \ - --exclude=/var/tmp \ - --exclude=/usr/lib/go + --exclude=/usr/src \ + --exclude=/var/tmp endif -- 2.39.5