about summary refs log tree commit diff
path: root/elf/elf.h
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2021-12-02 23:01:29 +0100
committerFlorian Weimer <fweimer@redhat.com>2021-12-02 23:01:51 +0100
commit0656b649c56ea51cceb86e94842d89946cee919b (patch)
tree9de95f0743de2fe177eb086d006f2068bdeba9b9 /elf/elf.h
parentb31bd11454fade731e5158b1aea40b133ae19926 (diff)
downloadglibc-0656b649c56ea51cceb86e94842d89946cee919b.tar.gz
glibc-0656b649c56ea51cceb86e94842d89946cee919b.tar.xz
glibc-0656b649c56ea51cceb86e94842d89946cee919b.zip
elf: add definition for ELF_NOTE_FDO and NT_FDO_PACKAGING_METADATA note
As defined on: https://systemd.io/COREDUMP_PACKAGE_METADATA/
this note will be used starting from Fedora 36.

Signed-off-by: Luca Boccassi <bluca@debian.org>
Diffstat (limited to 'elf/elf.h')
-rw-r--r--elf/elf.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/elf.h b/elf/elf.h
index 50f87baceb..baa6c6693e 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -1259,6 +1259,8 @@ typedef struct
 /* Note entries for GNU systems have this name.  */
 #define ELF_NOTE_GNU		"GNU"
 
+/* Note entries for freedesktop.org have this name.  */
+#define ELF_NOTE_FDO		"FDO"
 
 /* Defined types of notes for Solaris.  */
 
@@ -1302,6 +1304,10 @@ typedef struct
 /* Program property.  */
 #define NT_GNU_PROPERTY_TYPE_0 5
 
+/* Packaging metadata as defined on
+   https://systemd.io/COREDUMP_PACKAGE_METADATA/ */
+#define NT_FDO_PACKAGING_METADATA 0xcafe1a7e
+
 /* Note section name of program property.   */
 #define NOTE_GNU_PROPERTY_SECTION_NAME ".note.gnu.property"