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