From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] Add option to keep or remove sections when extracting debuginfo.
Date: Mon, 02 Sep 2019 14:13:11 +0200 [thread overview]
Message-ID: <20190902121311.14373-1-stefan.schantl@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1449 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
| 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
--git a/src/scripts/extract-debuginfo.in b/src/scripts/extract-debuginfo.in
index c258ed1..c43cae4 100644
--- a/src/scripts/extract-debuginfo.in
+++ b/src/scripts/extract-debuginfo.in
@@ -2,6 +2,7 @@
# extract-debuginfo.sh - automagically generate debug info
#
# Usage: extract-debuginfo.sh [--strict-build-id] [-g] [-r]
+# [--keep-section SECTION] [--remove-section SECTION]
# [builddir]
#
# The -g flag says to use strip -g instead of full strip on DSOs.
@@ -25,6 +26,9 @@ strip_r=false
# Barf on missing build IDs.
strict=false
+# keep or remove arguments to eu-strip.
+keep_remove_args=
+
BUILDDIR=.
while [ $# -gt 0 ]; do
case "${1}" in
@@ -43,6 +47,14 @@ while [ $# -gt 0 ]; do
-r)
strip_r=true
;;
+ --keep-section)
+ keep_remove_args="${keep_remove_args} --keep-section $2"
+ shift
+ ;;
+ --remove-section)
+ keep_remove_args="${keep_remove_args} --remove-section $2"
+ shift
+ ;;
*)
BUILDDIR=${1}
shift
@@ -68,7 +80,7 @@ strip_to_debug() {
;;
esac
- eu-strip --remove-comment ${r} ${g} -f "${1}" "${2}" || exit
+ eu-strip --remove-comment ${r} ${g} ${keep_remove_args} -f "${1}" "${2}" || exit
chmod 444 "${1}" || exit
}
--
2.20.1
reply other threads:[~2019-09-02 12:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190902121311.14373-1-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox