]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/build-salt.h
Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-eoan-kernel.git] / include / linux / build-salt.h
CommitLineData
9afb719e
LA
1#ifndef __BUILD_SALT_H
2#define __BUILD_SALT_H
3
4#include <linux/elfnote.h>
5
6#define LINUX_ELFNOTE_BUILD_SALT 0x100
7
8#ifdef __ASSEMBLER__
9
10#define BUILD_SALT \
11 ELFNOTE(Linux, LINUX_ELFNOTE_BUILD_SALT, .asciz CONFIG_BUILD_SALT)
12
13#else
14
15#define BUILD_SALT \
16 ELFNOTE32("Linux", LINUX_ELFNOTE_BUILD_SALT, CONFIG_BUILD_SALT)
17
18#endif
19
20#endif /* __BUILD_SALT_H */