elfnote.h 527 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * PowerPC ELF notes.
  4. *
  5. * Copyright 2019, IBM Corporation
  6. */
  7. #ifndef __ASM_POWERPC_ELFNOTE_H__
  8. #define __ASM_POWERPC_ELFNOTE_H__
  9. /*
  10. * These note types should live in a SHT_NOTE segment and have
  11. * "PowerPC" in the name field.
  12. */
  13. /*
  14. * The capabilities supported/required by this kernel (bitmap).
  15. *
  16. * This type uses a bitmap as "desc" field. Each bit is described
  17. * in arch/powerpc/kernel/note.S
  18. */
  19. #define PPC_ELFNOTE_CAPABILITIES 1
  20. #endif /* __ASM_POWERPC_ELFNOTE_H__ */