diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2026-06-10 13:21:06 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2026-06-10 15:45:34 +0000 |
| commit | 6365c45d951dd50ca411160b03c3a0427bd54449 (patch) | |
| tree | e9c47c9db1f4d2ef5aa9f6b31136960f4c9e0bf9 | |
| parent | 0881f6cf3f44883b03c21dc7e5ab2140275b5afd (diff) | |
elf_common: Add FDO package metadata note type
Reviewed by: fuz
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57525
| -rw-r--r-- | sys/sys/elf_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index e17b2bfb3afa..32621041cb44 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -866,6 +866,9 @@ typedef struct { #define NT_ARM_SVE 0x405 /* ARM SVE registers */ #define NT_ARM_ADDR_MASK 0x406 /* arm64 address mask (e.g. for TBI) */ +/* FDO (freedesktop.org) note types. */ +#define NT_FDO_PACKAGING_METADATA 0xcafe1a7e + /* GNU note types. */ #define NT_GNU_ABI_TAG 1 #define NT_GNU_HWCAP 2 |
