summaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2015-12-01 14:55:07 +0100
committerMark Wielaard <mjw@redhat.com>2016-01-06 14:27:10 +0100
commit92acb57eb0468de93c4976eb1de6bf08ede9abd0 (patch)
tree27ba3b9926a47e97bafdcd126f4f6e64ea82453b /src/ChangeLog
parente5f976bcb1b3a27bd89d8d32c0cebb0c14c0e6d2 (diff)
downloadandroid_external_elfutils-92acb57eb0468de93c4976eb1de6bf08ede9abd0.tar.gz
android_external_elfutils-92acb57eb0468de93c4976eb1de6bf08ede9abd0.tar.bz2
android_external_elfutils-92acb57eb0468de93c4976eb1de6bf08ede9abd0.zip
elfcompress: New utility.
Usage: elfcompress [OPTION...] FILE... Compress or decompress sections in an ELF file. -f, --force Force compression of section even if it would become larger -n, --name=SECTION SECTION name to (de)compress, SECTION is an extended wildcard pattern (defaults to '.?(z)debug*') -o, --output=FILE Place (de)compressed output into FILE -p, --permissive Relax a few rules to handle slightly broken ELF files -q, --quiet Be silent when a section cannot be compressed -t, --type=TYPE What type of compression to apply. TYPE can be 'none' (decompress), 'zlib' (ELF ZLIB compression, the default, 'zlib-gabi' is an alias) or 'zlib-gnu' (.zdebug GNU style compression, 'gnu' is an alias) -v, --verbose Print a message for each section being (de)compressed -?, --help Give this help list --usage Give a short usage message -V, --version Print program version Signed-off-by: Mark Wielaard <mjw@redhat.com>
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a6d4a975..ae2129d9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2015-12-16 Mark Wielaard <mjw@redhat.com>
+
+ * elfcompress.c: New file.
+ * Makefile.am (bin_PROGRAMS): Add elfcompress.
+ (elfcompress_LDADD): New variable.
+
2015-12-18 Mark Wielaard <mjw@redhat.com>
* elflint.c (section_flags_string): Add NEWFLAG COMPRESSED.